diff --git a/corpus/declarations.txt b/corpus/declarations.txt index 55fa032b..a1c9034a 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -970,6 +970,31 @@ unsafe impl Foo { (source_file (impl_item (type_identifier) (declaration_list))) +=========================================== +Trait impl signature +=========================================== + +impl Debug for OccupiedError; +impl Display for OccupiedError; + +--- + +(source_file + (impl_item + (type_parameters + (constrained_type_parameter + (type_identifier) + (trait_bounds (type_identifier) (type_identifier)))) + (type_identifier) + (generic_type (type_identifier) (type_arguments (type_identifier)))) + (impl_item + (type_parameters + (constrained_type_parameter + (type_identifier) + (trait_bounds (type_identifier) (type_identifier)))) + (type_identifier) + (generic_type (type_identifier) (type_arguments (type_identifier))))) + =========================================== Impls with default functions =========================================== diff --git a/grammar.js b/grammar.js index 5185aae1..65909d9d 100644 --- a/grammar.js +++ b/grammar.js @@ -464,7 +464,7 @@ module.exports = grammar({ )), field('type', $._type), optional($.where_clause), - field('body', $.declaration_list) + choice(field('body', $.declaration_list), ';') ), trait_item: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index 46a8f410..348a527b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2602,12 +2602,21 @@ ] }, { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "declaration_list" - } + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "declaration_list" + } + }, + { + "type": "STRING", + "value": ";" + } + ] } ] }, diff --git a/src/node-types.json b/src/node-types.json index 913207f4..fc6e1a0c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2113,7 +2113,7 @@ "fields": { "body": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "declaration_list", diff --git a/src/parser.c b/src/parser.c index 7f286794..5e282af9 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2480 -#define LARGE_STATE_COUNT 594 +#define STATE_COUNT 2525 +#define LARGE_STATE_COUNT 618 #define SYMBOL_COUNT 313 #define ALIAS_COUNT 3 #define TOKEN_COUNT 138 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 232 +#define PRODUCTION_ID_COUNT 241 enum { sym_identifier = 1, @@ -2367,172 +2367,181 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [62] = {.index = 66, .length = 2}, [63] = {.index = 66, .length = 2}, [64] = {.index = 68, .length = 1}, - [65] = {.index = 69, .length = 3}, - [66] = {.index = 72, .length = 2}, + [65] = {.index = 69, .length = 2}, + [66] = {.index = 71, .length = 3}, [67] = {.index = 74, .length = 2}, - [68] = {.index = 74, .length = 2}, - [69] = {.index = 76, .length = 1}, - [70] = {.index = 77, .length = 2}, - [71] = {.index = 79, .length = 3}, - [72] = {.index = 82, .length = 2}, + [68] = {.index = 76, .length = 2}, + [69] = {.index = 76, .length = 2}, + [70] = {.index = 78, .length = 1}, + [71] = {.index = 79, .length = 2}, + [72] = {.index = 81, .length = 3}, [73] = {.index = 84, .length = 2}, [74] = {.index = 86, .length = 2}, [75] = {.index = 88, .length = 2}, [76] = {.index = 90, .length = 2}, - [77] = {.index = 88, .length = 2}, + [77] = {.index = 92, .length = 2}, [78] = {.index = 90, .length = 2}, - [79] = {.index = 92, .length = 1}, - [80] = {.index = 92, .length = 1}, - [81] = {.index = 93, .length = 1}, - [82] = {.index = 94, .length = 2}, + [79] = {.index = 92, .length = 2}, + [80] = {.index = 94, .length = 1}, + [81] = {.index = 94, .length = 1}, + [82] = {.index = 95, .length = 1}, [83] = {.index = 96, .length = 2}, - [84] = {.index = 96, .length = 2}, - [85] = {.index = 86, .length = 2}, - [86] = {.index = 93, .length = 1}, - [87] = {.index = 98, .length = 1}, - [88] = {.index = 99, .length = 3}, - [89] = {.index = 102, .length = 1}, - [90] = {.index = 103, .length = 1}, - [91] = {.index = 104, .length = 2}, - [92] = {.index = 106, .length = 3}, - [93] = {.index = 109, .length = 3}, - [94] = {.index = 112, .length = 4}, - [95] = {.index = 116, .length = 3}, - [96] = {.index = 1, .length = 1}, - [97] = {.index = 119, .length = 3}, - [98] = {.index = 122, .length = 2}, + [84] = {.index = 98, .length = 2}, + [85] = {.index = 98, .length = 2}, + [86] = {.index = 88, .length = 2}, + [87] = {.index = 95, .length = 1}, + [88] = {.index = 100, .length = 1}, + [89] = {.index = 101, .length = 3}, + [90] = {.index = 104, .length = 1}, + [91] = {.index = 105, .length = 1}, + [92] = {.index = 106, .length = 2}, + [93] = {.index = 108, .length = 3}, + [94] = {.index = 111, .length = 3}, + [95] = {.index = 114, .length = 4}, + [96] = {.index = 118, .length = 3}, + [97] = {.index = 1, .length = 1}, + [98] = {.index = 121, .length = 3}, [99] = {.index = 124, .length = 2}, - [100] = {.index = 124, .length = 2}, - [101] = {.index = 126, .length = 1}, - [102] = {.index = 127, .length = 3}, - [103] = {.index = 130, .length = 3}, - [104] = {.index = 133, .length = 3}, - [105] = {.index = 136, .length = 1}, - [106] = {.index = 127, .length = 3}, - [107] = {.index = 130, .length = 3}, - [108] = {.index = 137, .length = 2}, - [109] = {.index = 139, .length = 2}, - [111] = {.index = 141, .length = 3}, - [112] = {.index = 144, .length = 4}, - [113] = {.index = 104, .length = 2}, - [114] = {.index = 148, .length = 3}, - [115] = {.index = 151, .length = 2}, - [116] = {.index = 153, .length = 2}, - [117] = {.index = 155, .length = 3}, - [118] = {.index = 158, .length = 3}, - [119] = {.index = 32, .length = 1}, - [120] = {.index = 137, .length = 2}, + [100] = {.index = 126, .length = 2}, + [101] = {.index = 126, .length = 2}, + [102] = {.index = 128, .length = 1}, + [103] = {.index = 129, .length = 2}, + [104] = {.index = 131, .length = 3}, + [105] = {.index = 134, .length = 3}, + [106] = {.index = 137, .length = 3}, + [107] = {.index = 140, .length = 1}, + [108] = {.index = 129, .length = 2}, + [109] = {.index = 131, .length = 3}, + [110] = {.index = 134, .length = 3}, + [111] = {.index = 141, .length = 2}, + [112] = {.index = 143, .length = 2}, + [114] = {.index = 145, .length = 3}, + [115] = {.index = 148, .length = 4}, + [116] = {.index = 106, .length = 2}, + [117] = {.index = 152, .length = 2}, + [118] = {.index = 154, .length = 3}, + [119] = {.index = 157, .length = 2}, + [120] = {.index = 159, .length = 2}, [121] = {.index = 161, .length = 3}, - [122] = {.index = 164, .length = 2}, - [123] = {.index = 166, .length = 2}, - [124] = {.index = 168, .length = 3}, - [125] = {.index = 171, .length = 2}, - [126] = {.index = 173, .length = 2}, - [127] = {.index = 175, .length = 1}, - [128] = {.index = 176, .length = 2}, - [129] = {.index = 178, .length = 1}, - [130] = {.index = 164, .length = 2}, - [131] = {.index = 179, .length = 2}, - [132] = {.index = 181, .length = 4}, - [133] = {.index = 185, .length = 3}, - [134] = {.index = 188, .length = 4}, - [135] = {.index = 93, .length = 1}, - [136] = {.index = 192, .length = 2}, - [137] = {.index = 194, .length = 2}, - [138] = {.index = 196, .length = 3}, - [139] = {.index = 199, .length = 2}, - [140] = {.index = 201, .length = 3}, - [141] = {.index = 204, .length = 2}, - [142] = {.index = 206, .length = 4}, - [143] = {.index = 206, .length = 4}, - [144] = {.index = 210, .length = 3}, + [122] = {.index = 164, .length = 3}, + [123] = {.index = 32, .length = 1}, + [124] = {.index = 141, .length = 2}, + [125] = {.index = 167, .length = 3}, + [126] = {.index = 170, .length = 2}, + [127] = {.index = 172, .length = 2}, + [128] = {.index = 174, .length = 3}, + [129] = {.index = 177, .length = 2}, + [130] = {.index = 179, .length = 2}, + [131] = {.index = 181, .length = 1}, + [132] = {.index = 182, .length = 2}, + [133] = {.index = 184, .length = 1}, + [134] = {.index = 170, .length = 2}, + [135] = {.index = 185, .length = 4}, + [136] = {.index = 189, .length = 3}, + [137] = {.index = 192, .length = 4}, + [138] = {.index = 95, .length = 1}, + [139] = {.index = 196, .length = 2}, + [140] = {.index = 198, .length = 2}, + [141] = {.index = 200, .length = 3}, + [142] = {.index = 203, .length = 2}, + [143] = {.index = 205, .length = 3}, + [144] = {.index = 208, .length = 2}, [145] = {.index = 210, .length = 3}, - [146] = {.index = 201, .length = 3}, - [147] = {.index = 213, .length = 2}, - [148] = {.index = 215, .length = 2}, - [149] = {.index = 217, .length = 2}, - [150] = {.index = 219, .length = 1}, - [151] = {.index = 220, .length = 2}, - [152] = {.index = 222, .length = 2}, - [153] = {.index = 224, .length = 2}, - [154] = {.index = 194, .length = 2}, - [155] = {.index = 226, .length = 4}, - [156] = {.index = 230, .length = 3}, - [157] = {.index = 233, .length = 3}, - [158] = {.index = 236, .length = 3}, - [159] = {.index = 233, .length = 3}, - [160] = {.index = 239, .length = 3}, - [161] = {.index = 242, .length = 3}, - [162] = {.index = 245, .length = 4}, - [163] = {.index = 249, .length = 3}, - [164] = {.index = 252, .length = 2}, - [165] = {.index = 254, .length = 2}, - [166] = {.index = 256, .length = 3}, - [167] = {.index = 259, .length = 4}, - [168] = {.index = 263, .length = 3}, - [169] = {.index = 220, .length = 2}, - [170] = {.index = 266, .length = 2}, - [171] = {.index = 268, .length = 3}, - [172] = {.index = 271, .length = 3}, - [173] = {.index = 274, .length = 2}, - [174] = {.index = 276, .length = 3}, - [175] = {.index = 194, .length = 2}, - [176] = {.index = 279, .length = 3}, - [177] = {.index = 282, .length = 3}, - [178] = {.index = 254, .length = 2}, - [179] = {.index = 285, .length = 4}, - [180] = {.index = 289, .length = 5}, - [181] = {.index = 294, .length = 4}, - [182] = {.index = 298, .length = 2}, - [183] = {.index = 300, .length = 4}, - [184] = {.index = 304, .length = 4}, - [185] = {.index = 304, .length = 4}, - [186] = {.index = 308, .length = 2}, - [187] = {.index = 310, .length = 3}, - [188] = {.index = 313, .length = 2}, - [189] = {.index = 315, .length = 2}, - [190] = {.index = 104, .length = 2}, - [191] = {.index = 317, .length = 3}, - [192] = {.index = 320, .length = 4}, - [193] = {.index = 320, .length = 4}, - [194] = {.index = 317, .length = 3}, - [195] = {.index = 324, .length = 4}, - [196] = {.index = 328, .length = 4}, - [197] = {.index = 332, .length = 3}, - [198] = {.index = 335, .length = 4}, - [199] = {.index = 339, .length = 3}, - [200] = {.index = 342, .length = 3}, - [201] = {.index = 345, .length = 3}, - [202] = {.index = 348, .length = 4}, - [203] = {.index = 352, .length = 2}, - [204] = {.index = 354, .length = 3}, - [205] = {.index = 357, .length = 4}, - [206] = {.index = 361, .length = 3}, - [207] = {.index = 364, .length = 3}, - [208] = {.index = 367, .length = 3}, - [209] = {.index = 370, .length = 5}, - [210] = {.index = 375, .length = 2}, - [211] = {.index = 377, .length = 3}, - [212] = {.index = 380, .length = 3}, - [213] = {.index = 383, .length = 2}, - [214] = {.index = 385, .length = 4}, - [215] = {.index = 385, .length = 4}, - [216] = {.index = 389, .length = 4}, - [217] = {.index = 393, .length = 5}, - [218] = {.index = 398, .length = 4}, - [219] = {.index = 402, .length = 2}, - [220] = {.index = 404, .length = 4}, - [221] = {.index = 408, .length = 4}, - [222] = {.index = 412, .length = 3}, - [223] = {.index = 415, .length = 4}, - [224] = {.index = 419, .length = 3}, - [225] = {.index = 422, .length = 3}, - [226] = {.index = 425, .length = 5}, - [227] = {.index = 430, .length = 4}, - [228] = {.index = 434, .length = 5}, - [229] = {.index = 439, .length = 4}, - [230] = {.index = 443, .length = 3}, - [231] = {.index = 446, .length = 5}, + [146] = {.index = 213, .length = 4}, + [147] = {.index = 210, .length = 3}, + [148] = {.index = 213, .length = 4}, + [149] = {.index = 217, .length = 3}, + [150] = {.index = 217, .length = 3}, + [151] = {.index = 205, .length = 3}, + [152] = {.index = 220, .length = 2}, + [153] = {.index = 222, .length = 2}, + [154] = {.index = 224, .length = 2}, + [155] = {.index = 226, .length = 1}, + [156] = {.index = 227, .length = 2}, + [157] = {.index = 229, .length = 2}, + [158] = {.index = 198, .length = 2}, + [159] = {.index = 231, .length = 4}, + [160] = {.index = 235, .length = 3}, + [161] = {.index = 238, .length = 2}, + [162] = {.index = 240, .length = 3}, + [163] = {.index = 243, .length = 3}, + [164] = {.index = 238, .length = 2}, + [165] = {.index = 240, .length = 3}, + [166] = {.index = 246, .length = 3}, + [167] = {.index = 249, .length = 3}, + [168] = {.index = 252, .length = 4}, + [169] = {.index = 256, .length = 3}, + [170] = {.index = 259, .length = 2}, + [171] = {.index = 261, .length = 2}, + [172] = {.index = 263, .length = 3}, + [173] = {.index = 266, .length = 4}, + [174] = {.index = 270, .length = 3}, + [175] = {.index = 227, .length = 2}, + [176] = {.index = 273, .length = 2}, + [177] = {.index = 275, .length = 3}, + [178] = {.index = 278, .length = 3}, + [179] = {.index = 281, .length = 2}, + [180] = {.index = 283, .length = 3}, + [181] = {.index = 198, .length = 2}, + [182] = {.index = 286, .length = 3}, + [183] = {.index = 289, .length = 3}, + [184] = {.index = 261, .length = 2}, + [185] = {.index = 292, .length = 4}, + [186] = {.index = 296, .length = 5}, + [187] = {.index = 301, .length = 4}, + [188] = {.index = 305, .length = 2}, + [189] = {.index = 307, .length = 4}, + [190] = {.index = 311, .length = 4}, + [191] = {.index = 311, .length = 4}, + [192] = {.index = 315, .length = 2}, + [193] = {.index = 317, .length = 3}, + [194] = {.index = 320, .length = 2}, + [195] = {.index = 322, .length = 2}, + [196] = {.index = 106, .length = 2}, + [197] = {.index = 324, .length = 3}, + [198] = {.index = 327, .length = 3}, + [199] = {.index = 330, .length = 4}, + [200] = {.index = 327, .length = 3}, + [201] = {.index = 330, .length = 4}, + [202] = {.index = 324, .length = 3}, + [203] = {.index = 334, .length = 4}, + [204] = {.index = 338, .length = 4}, + [205] = {.index = 342, .length = 3}, + [206] = {.index = 345, .length = 4}, + [207] = {.index = 349, .length = 3}, + [208] = {.index = 352, .length = 3}, + [209] = {.index = 355, .length = 3}, + [210] = {.index = 358, .length = 4}, + [211] = {.index = 362, .length = 2}, + [212] = {.index = 364, .length = 3}, + [213] = {.index = 367, .length = 4}, + [214] = {.index = 371, .length = 3}, + [215] = {.index = 374, .length = 3}, + [216] = {.index = 377, .length = 3}, + [217] = {.index = 380, .length = 5}, + [218] = {.index = 385, .length = 2}, + [219] = {.index = 387, .length = 3}, + [220] = {.index = 390, .length = 3}, + [221] = {.index = 393, .length = 2}, + [222] = {.index = 395, .length = 4}, + [223] = {.index = 395, .length = 4}, + [224] = {.index = 399, .length = 4}, + [225] = {.index = 403, .length = 5}, + [226] = {.index = 408, .length = 4}, + [227] = {.index = 412, .length = 2}, + [228] = {.index = 414, .length = 4}, + [229] = {.index = 418, .length = 4}, + [230] = {.index = 422, .length = 3}, + [231] = {.index = 425, .length = 4}, + [232] = {.index = 429, .length = 3}, + [233] = {.index = 432, .length = 3}, + [234] = {.index = 435, .length = 2}, + [235] = {.index = 437, .length = 5}, + [236] = {.index = 442, .length = 4}, + [237] = {.index = 446, .length = 5}, + [238] = {.index = 451, .length = 4}, + [239] = {.index = 455, .length = 3}, + [240] = {.index = 458, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2647,519 +2656,536 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [68] = {field_parameters, 2}, [69] = + {field_type, 2}, + {field_type_parameters, 1}, + [71] = {field_body, 3}, {field_type, 2}, {field_type_parameters, 1}, - [72] = + [74] = {field_body, 3}, {field_type, 1}, - [74] = + [76] = {field_parameters, 2}, {field_trait, 1}, - [76] = + [78] = {field_pattern, 2}, - [77] = + [79] = {field_name, 1}, {field_type_parameters, 2}, - [79] = + [81] = {field_body, 3}, {field_bounds, 2}, {field_name, 1}, - [82] = + [84] = {field_bounds, 2}, {field_name, 1}, - [84] = + [86] = {field_body, 3}, {field_type, 2}, - [86] = + [88] = {field_body, 3}, {field_name, 2}, - [88] = + [90] = {field_alias, 2}, {field_path, 0}, - [90] = + [92] = {field_list, 2}, {field_path, 0}, - [92] = + [94] = {field_arguments, 1}, - [93] = + [95] = {field_name, 2}, - [94] = + [96] = {field_alias, 2}, {field_type, 0}, - [96] = + [98] = {field_pattern, 0}, {field_type, 2}, - [98] = + [100] = {field_argument, 2}, - [99] = + [101] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [102] = + [104] = {field_body, 3}, - [103] = + [105] = {field_length, 3}, - [104] = + [106] = {field_name, 1}, {field_type, 3}, - [106] = + [108] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [109] = + [111] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [112] = + [114] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [116] = + [118] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [119] = + [121] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [122] = + [124] = {field_parameters, 1}, {field_return_type, 3}, - [124] = + [126] = {field_default_type, 2}, {field_name, 0}, - [126] = + [128] = {field_type, 3}, - [127] = + [129] = + {field_trait, 1}, + {field_type, 3}, + [131] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [130] = + [134] = {field_parameters, 1}, {field_return_type, 3}, {field_trait, 0}, - [133] = + [137] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [136] = + [140] = {field_parameters, 3}, - [137] = + [141] = {field_pattern, 1}, {field_type, 3}, - [139] = + [143] = {field_pattern, 1}, {field_value, 3}, - [141] = + [145] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [144] = + [148] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [148] = + [152] = + {field_type, 3}, + {field_type_parameters, 2}, + [154] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [151] = + [157] = {field_body, 4}, {field_type, 2}, - [153] = + [159] = {field_body, 4}, {field_name, 2}, - [155] = + [161] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [158] = + [164] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [161] = + [167] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [164] = + [170] = {field_name, 0}, {field_value, 2}, - [166] = + [172] = {field_name, 2}, {field_parameters, 3}, - [168] = + [174] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [171] = + [177] = {field_name, 2}, {field_type_parameters, 3}, - [173] = + [179] = {field_body, 4}, {field_name, 3}, - [175] = + [181] = {field_name, 3}, - [176] = + [182] = {field_body, 4}, {field_condition, 3}, - [178] = + [184] = {field_length, 4}, - [179] = - {field_type, 2}, - {field_type_parameters, 1}, - [181] = + [185] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [185] = + [189] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [188] = + [192] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [192] = + [196] = {field_name, 0}, {field_pattern, 2}, - [194] = + [198] = {field_name, 0}, {field_type, 2}, - [196] = + [200] = {field_consequence, 5}, {field_pattern, 2}, {field_value, 4}, - [199] = + [203] = {field_element, 1}, {field_length, 3}, - [201] = + [205] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [204] = + [208] = {field_parameters, 2}, {field_return_type, 4}, - [206] = + [210] = + {field_trait, 2}, + {field_type, 4}, + {field_type_parameters, 1}, + [213] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [210] = + [217] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [213] = + [220] = {field_pattern, 2}, {field_type, 4}, - [215] = + [222] = {field_pattern, 2}, {field_value, 4}, - [217] = + [224] = {field_pattern, 0}, {field_value, 2}, - [219] = + [226] = {field_condition, 2}, - [220] = + [227] = {field_name, 2}, {field_type, 4}, - [222] = - {field_type, 1}, - {field_type, 2, .inherited = true}, - [224] = + [229] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [226] = + [231] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [230] = + [235] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [233] = + [238] = + {field_trait, 2}, + {field_type, 4}, + [240] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [236] = + [243] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [239] = + [246] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [242] = + [249] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [245] = + [252] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [249] = + [256] = {field_body, 5}, {field_pattern, 2}, {field_value, 4}, - [252] = + [259] = {field_alias, 4}, {field_name, 2}, - [254] = + [261] = {field_name, 1}, {field_value, 3}, - [256] = + [263] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [259] = + [266] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [263] = + [270] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [266] = + [273] = {field_body, 5}, {field_name, 3}, - [268] = + [275] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [271] = + [278] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [274] = + [281] = {field_name, 3}, {field_parameters, 4}, - [276] = + [283] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [279] = + [286] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [282] = + [289] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [285] = + [292] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [289] = + [296] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [294] = + [301] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [298] = + [305] = {field_name, 1}, {field_pattern, 3}, - [300] = + [307] = {field_alternative, 6}, {field_consequence, 5}, {field_pattern, 2}, {field_value, 4}, - [304] = + [311] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [308] = + [315] = {field_parameters, 3}, {field_return_type, 5}, - [310] = + [317] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [313] = + [320] = {field_name, 3}, {field_type, 5}, - [315] = - {field_type, 2}, - {field_type, 3, .inherited = true}, - [317] = + [322] = + {field_type, 1}, + {field_type, 2, .inherited = true}, + [324] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [320] = + [327] = + {field_trait, 3}, + {field_type, 5}, + {field_type_parameters, 2}, + [330] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [324] = + [334] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [328] = + [338] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [332] = + [342] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [335] = + [345] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [339] = + [349] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [342] = + [352] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [345] = + [355] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [348] = + [358] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [352] = + [362] = {field_alias, 5}, {field_name, 3}, - [354] = + [364] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [357] = + [367] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [361] = + [371] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [364] = + [374] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [367] = + [377] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [370] = + [380] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [375] = + [385] = {field_name, 2}, {field_pattern, 4}, - [377] = + [387] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [380] = + [390] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [383] = - {field_type, 3}, - {field_type, 4, .inherited = true}, - [385] = + [393] = + {field_type, 2}, + {field_type, 3, .inherited = true}, + [395] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [389] = + [399] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [393] = + [403] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [398] = + [408] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [402] = + [412] = {field_name, 4}, {field_type, 6}, - [404] = + [414] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [408] = + [418] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [412] = + [422] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [415] = + [425] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [419] = + [429] = {field_body, 7}, {field_pattern, 4}, {field_value, 6}, - [422] = + [432] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [425] = + [435] = + {field_type, 3}, + {field_type, 4, .inherited = true}, + [437] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [430] = + [442] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [434] = + [446] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [439] = + [451] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [443] = + [455] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [446] = + [458] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3247,10 +3273,7 @@ static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGT [62] = { [0] = alias_sym_type_identifier, }, - [67] = { - [1] = alias_sym_type_identifier, - }, - [70] = { + [68] = { [1] = alias_sym_type_identifier, }, [71] = { @@ -3259,166 +3282,181 @@ static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGT [72] = { [1] = alias_sym_type_identifier, }, - [74] = { - [2] = alias_sym_type_identifier, + [73] = { + [1] = alias_sym_type_identifier, }, [75] = { - [0] = sym_identifier, + [2] = alias_sym_type_identifier, }, [76] = { [0] = sym_identifier, }, - [79] = { + [77] = { [0] = sym_identifier, }, - [83] = { + [80] = { [0] = sym_identifier, }, - [86] = { + [84] = { + [0] = sym_identifier, + }, + [87] = { [2] = alias_sym_type_identifier, }, - [92] = { + [93] = { [1] = alias_sym_type_identifier, }, - [96] = { + [97] = { [1] = alias_sym_shorthand_field_identifier, }, - [99] = { + [100] = { [0] = alias_sym_type_identifier, }, - [102] = { + [103] = { [1] = alias_sym_type_identifier, }, - [103] = { + [104] = { + [1] = alias_sym_type_identifier, + }, + [105] = { [0] = alias_sym_type_identifier, }, - [110] = { + [113] = { [3] = sym_identifier, }, - [111] = { + [114] = { [1] = alias_sym_type_identifier, }, - [112] = { + [115] = { [1] = alias_sym_type_identifier, }, - [113] = { + [116] = { [1] = alias_sym_type_identifier, }, - [116] = { + [120] = { [2] = alias_sym_type_identifier, }, - [117] = { + [121] = { [2] = alias_sym_type_identifier, }, - [118] = { + [122] = { [2] = alias_sym_type_identifier, }, - [119] = { + [123] = { [0] = sym_identifier, }, - [120] = { + [124] = { [1] = sym_identifier, }, - [122] = { + [126] = { [0] = alias_sym_field_identifier, }, - [125] = { + [129] = { [2] = alias_sym_type_identifier, }, - [126] = { + [130] = { [3] = alias_sym_type_identifier, }, - [135] = { + [138] = { [2] = alias_sym_shorthand_field_identifier, }, - [136] = { + [139] = { [0] = alias_sym_field_identifier, }, - [137] = { + [140] = { [0] = alias_sym_type_identifier, }, - [140] = { + [143] = { [1] = alias_sym_type_identifier, }, - [142] = { + [145] = { [2] = alias_sym_type_identifier, }, - [144] = { + [146] = { + [2] = alias_sym_type_identifier, + }, + [149] = { [1] = alias_sym_type_identifier, }, - [154] = { + [158] = { [0] = alias_sym_field_identifier, }, - [155] = { + [159] = { [1] = alias_sym_type_identifier, }, - [156] = { + [160] = { [1] = alias_sym_type_identifier, }, - [157] = { + [161] = { [2] = alias_sym_type_identifier, }, - [160] = { + [162] = { [2] = alias_sym_type_identifier, }, - [161] = { + [166] = { [2] = alias_sym_type_identifier, }, - [162] = { + [167] = { [2] = alias_sym_type_identifier, }, - [165] = { + [168] = { + [2] = alias_sym_type_identifier, + }, + [171] = { [1] = alias_sym_field_identifier, }, - [169] = { + [175] = { [2] = alias_sym_type_identifier, }, - [170] = { + [176] = { [3] = alias_sym_type_identifier, }, - [171] = { + [177] = { [3] = alias_sym_type_identifier, }, - [172] = { + [178] = { [3] = alias_sym_type_identifier, }, - [182] = { + [188] = { [1] = alias_sym_field_identifier, }, - [184] = { + [190] = { [2] = alias_sym_type_identifier, }, - [190] = { + [196] = { [1] = alias_sym_field_identifier, }, - [191] = { + [197] = { [2] = alias_sym_type_identifier, }, - [192] = { + [198] = { [3] = alias_sym_type_identifier, }, - [195] = { + [199] = { + [3] = alias_sym_type_identifier, + }, + [203] = { [2] = alias_sym_type_identifier, }, - [199] = { + [207] = { [2] = alias_sym_type_identifier, }, - [200] = { + [208] = { [3] = alias_sym_type_identifier, }, - [201] = { + [209] = { [3] = alias_sym_type_identifier, }, - [202] = { + [210] = { [3] = alias_sym_type_identifier, }, - [210] = { + [218] = { [2] = alias_sym_field_identifier, }, - [214] = { + [222] = { [3] = alias_sym_type_identifier, }, - [220] = { + [228] = { [3] = alias_sym_type_identifier, }, }; @@ -3430,757 +3468,7 @@ static uint16_t ts_non_terminal_alias_map[] = { 0, }; -static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 43020 - ? (c < 4096 - ? (c < 2693 - ? (c < 1969 - ? (c < 910 - ? (c < 736 - ? (c < 186 - ? (c < 170 - ? (c < 'a' - ? (c >= 'A' && c <= '_') - : c <= 'z') - : (c <= 170 || c == 181)) - : (c <= 186 || (c < 248 - ? (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))))) - : (c <= 740 || (c < 891 - ? (c < 880 - ? (c < 750 - ? c == 748 - : c <= 750) - : (c <= 884 || (c >= 886 && c <= 887))) - : (c <= 893 || (c < 904 - ? (c < 902 - ? c == 895 - : c <= 902) - : (c <= 906 || c == 908)))))) - : (c <= 929 || (c < 1646 - ? (c < 1369 - ? (c < 1162 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1327 || (c >= 1329 && c <= 1366))) - : (c <= 1369 || (c < 1519 - ? (c < 1488 - ? (c >= 1376 && c <= 1416) - : c <= 1514) - : (c <= 1522 || (c >= 1568 && c <= 1610))))) - : (c <= 1647 || (c < 1786 - ? (c < 1765 - ? (c < 1749 - ? (c >= 1649 && c <= 1747) - : c <= 1749) - : (c <= 1766 || (c >= 1774 && c <= 1775))) - : (c <= 1788 || (c < 1810 - ? (c < 1808 - ? c == 1791 - : c <= 1808) - : (c <= 1839 || (c >= 1869 && c <= 1957))))))))) - : (c <= 1969 || (c < 2474 - ? (c < 2208 - ? (c < 2074 - ? (c < 2042 - ? (c < 2036 - ? (c >= 1994 && c <= 2026) - : c <= 2037) - : (c <= 2042 || (c >= 2048 && c <= 2069))) - : (c <= 2074 || (c < 2112 - ? (c < 2088 - ? c == 2084 - : c <= 2088) - : (c <= 2136 || (c >= 2144 && c <= 2154))))) - : (c <= 2228 || (c < 2392 - ? (c < 2365 - ? (c < 2308 - ? (c >= 2230 && c <= 2247) - : c <= 2361) - : (c <= 2365 || c == 2384)) - : (c <= 2401 || (c < 2447 - ? (c < 2437 - ? (c >= 2417 && c <= 2432) - : c <= 2444) - : (c <= 2448 || (c >= 2451 && c <= 2472))))))) - : (c <= 2480 || (c < 2575 - ? (c < 2524 - ? (c < 2493 - ? (c < 2486 - ? c == 2482 - : c <= 2489) - : (c <= 2493 || c == 2510)) - : (c <= 2525 || (c < 2556 - ? (c < 2544 - ? (c >= 2527 && c <= 2529) - : c <= 2545) - : (c <= 2556 || (c >= 2565 && c <= 2570))))) - : (c <= 2576 || (c < 2616 - ? (c < 2610 - ? (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608) - : (c <= 2611 || (c >= 2613 && c <= 2614))) - : (c <= 2617 || (c < 2654 - ? (c >= 2649 && c <= 2652) - : (c <= 2654 || (c >= 2674 && c <= 2676))))))))))) - : (c <= 2701 || (c < 3214 - ? (c < 2947 - ? (c < 2821 - ? (c < 2741 - ? (c < 2730 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : c <= 2728) - : (c <= 2736 || (c >= 2738 && c <= 2739))) - : (c <= 2745 || (c < 2784 - ? (c < 2768 - ? c == 2749 - : c <= 2768) - : (c <= 2785 || c == 2809)))) - : (c <= 2828 || (c < 2869 - ? (c < 2858 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856) - : (c <= 2864 || (c >= 2866 && c <= 2867))) - : (c <= 2873 || (c < 2911 - ? (c < 2908 - ? c == 2877 - : c <= 2909) - : (c <= 2913 || c == 2929)))))) - : (c <= 2947 || (c < 3024 - ? (c < 2972 - ? (c < 2962 - ? (c < 2958 - ? (c >= 2949 && c <= 2954) - : c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))) - : (c <= 2972 || (c < 2984 - ? (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980) - : (c <= 2986 || (c >= 2990 && c <= 3001))))) - : (c <= 3024 || (c < 3133 - ? (c < 3090 - ? (c < 3086 - ? (c >= 3077 && c <= 3084) - : c <= 3088) - : (c <= 3112 || (c >= 3114 && c <= 3129))) - : (c <= 3133 || (c < 3200 - ? (c < 3168 - ? (c >= 3160 && c <= 3162) - : c <= 3169) - : (c <= 3200 || (c >= 3205 && c <= 3212))))))))) - : (c <= 3216 || (c < 3520 - ? (c < 3346 - ? (c < 3294 - ? (c < 3253 - ? (c < 3242 - ? (c >= 3218 && c <= 3240) - : c <= 3251) - : (c <= 3257 || c == 3261)) - : (c <= 3294 || (c < 3332 - ? (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314) - : (c <= 3340 || (c >= 3342 && c <= 3344))))) - : (c <= 3386 || (c < 3450 - ? (c < 3412 - ? (c < 3406 - ? c == 3389 - : c <= 3406) - : (c <= 3414 || (c >= 3423 && c <= 3425))) - : (c <= 3455 || (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || c == 3517)))))) - : (c <= 3526 || (c < 3762 - ? (c < 3716 - ? (c < 3648 - ? (c < 3634 - ? (c >= 3585 && c <= 3632) - : c <= 3634) - : (c <= 3654 || (c >= 3713 && c <= 3714))) - : (c <= 3716 || (c < 3749 - ? (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747) - : (c <= 3749 || (c >= 3751 && c <= 3760))))) - : (c <= 3762 || (c < 3840 - ? (c < 3782 - ? (c < 3776 - ? c == 3773 - : c <= 3780) - : (c <= 3782 || (c >= 3804 && c <= 3807))) - : (c <= 3840 || (c < 3913 - ? (c >= 3904 && c <= 3911) - : (c <= 3948 || (c >= 3976 && c <= 3980))))))))))))) - : (c <= 4138 || (c < 8025 - ? (c < 5952 - ? (c < 4752 - ? (c < 4295 - ? (c < 4197 - ? (c < 4186 - ? (c < 4176 - ? c == 4159 - : c <= 4181) - : (c <= 4189 || c == 4193)) - : (c <= 4198 || (c < 4238 - ? (c < 4213 - ? (c >= 4206 && c <= 4208) - : c <= 4225) - : (c <= 4238 || (c >= 4256 && c <= 4293))))) - : (c <= 4295 || (c < 4688 - ? (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))) - : (c <= 4694 || (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))))))) - : (c <= 4784 || (c < 5024 - ? (c < 4808 - ? (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))) - : (c <= 4822 || (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))))) - : (c <= 5109 || (c < 5792 - ? (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))) - : (c <= 5866 || (c < 5902 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5900) - : (c <= 5905 || (c >= 5920 && c <= 5937))))))))) - : (c <= 5969 || (c < 7043 - ? (c < 6400 - ? (c < 6108 - ? (c < 6016 - ? (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000) - : (c <= 6067 || c == 6103)) - : (c <= 6108 || (c < 6314 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6312) - : (c <= 6314 || (c >= 6320 && c <= 6389))))) - : (c <= 6430 || (c < 6656 - ? (c < 6528 - ? (c < 6512 - ? (c >= 6480 && c <= 6509) - : c <= 6516) - : (c <= 6571 || (c >= 6576 && c <= 6601))) - : (c <= 6678 || (c < 6917 - ? (c < 6823 - ? (c >= 6688 && c <= 6740) - : c <= 6823) - : (c <= 6963 || (c >= 6981 && c <= 6987))))))) - : (c <= 7072 || (c < 7406 - ? (c < 7258 - ? (c < 7168 - ? (c < 7098 - ? (c >= 7086 && c <= 7087) - : c <= 7141) - : (c <= 7203 || (c >= 7245 && c <= 7247))) - : (c <= 7293 || (c < 7357 - ? (c < 7312 - ? (c >= 7296 && c <= 7304) - : c <= 7354) - : (c <= 7359 || (c >= 7401 && c <= 7404))))) - : (c <= 7411 || (c < 7960 - ? (c < 7424 - ? (c < 7418 - ? (c >= 7413 && c <= 7414) - : c <= 7418) - : (c <= 7615 || (c >= 7680 && c <= 7957))) - : (c <= 7965 || (c < 8008 - ? (c >= 7968 && c <= 8005) - : (c <= 8013 || (c >= 8016 && c <= 8023))))))))))) - : (c <= 8025 || (c < 11631 - ? (c < 8469 - ? (c < 8150 - ? (c < 8118 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c >= 8064 && c <= 8116))) - : (c <= 8124 || (c < 8134 - ? (c < 8130 - ? c == 8126 - : c <= 8132) - : (c <= 8140 || (c >= 8144 && c <= 8147))))) - : (c <= 8155 || (c < 8319 - ? (c < 8182 - ? (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180) - : (c <= 8188 || c == 8305)) - : (c <= 8319 || (c < 8455 - ? (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450) - : (c <= 8455 || (c >= 8458 && c <= 8467))))))) - : (c <= 8469 || (c < 11264 - ? (c < 8490 - ? (c < 8486 - ? (c < 8484 - ? (c >= 8472 && c <= 8477) - : c <= 8484) - : (c <= 8486 || c == 8488)) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c >= 8544 && c <= 8584))))) - : (c <= 11310 || (c < 11520 - ? (c < 11499 - ? (c < 11360 - ? (c >= 11312 && c <= 11358) - : c <= 11492) - : (c <= 11502 || (c >= 11506 && c <= 11507))) - : (c <= 11557 || (c < 11565 - ? c == 11559 - : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) - : (c <= 11631 || (c < 12704 - ? (c < 12293 - ? (c < 11704 - ? (c < 11688 - ? (c < 11680 - ? (c >= 11648 && c <= 11670) - : c <= 11686) - : (c <= 11694 || (c >= 11696 && c <= 11702))) - : (c <= 11710 || (c < 11728 - ? (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c >= 11736 && c <= 11742))))) - : (c <= 12295 || (c < 12445 - ? (c < 12344 - ? (c < 12337 - ? (c >= 12321 && c <= 12329) - : c <= 12341) - : (c <= 12348 || (c >= 12353 && c <= 12438))) - : (c <= 12447 || (c < 12549 - ? (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543) - : (c <= 12591 || (c >= 12593 && c <= 12686))))))) - : (c <= 12735 || (c < 42623 - ? (c < 42192 - ? (c < 19968 - ? (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903) - : (c <= 40956 || (c >= 40960 && c <= 42124))) - : (c <= 42237 || (c < 42538 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42527) - : (c <= 42539 || (c >= 42560 && c <= 42606))))) - : (c <= 42653 || (c < 42946 - ? (c < 42786 - ? (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42943))) - : (c <= 42954 || (c < 43011 - ? (c >= 42997 && c <= 43009) - : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) - : (c <= 43042 || (c < 70453 - ? (c < 66176 - ? (c < 64112 - ? (c < 43697 - ? (c < 43471 - ? (c < 43261 - ? (c < 43250 - ? (c < 43138 - ? (c >= 43072 && c <= 43123) - : c <= 43187) - : (c <= 43255 || c == 43259)) - : (c <= 43262 || (c < 43360 - ? (c < 43312 - ? (c >= 43274 && c <= 43301) - : c <= 43334) - : (c <= 43388 || (c >= 43396 && c <= 43442))))) - : (c <= 43471 || (c < 43584 - ? (c < 43514 - ? (c < 43494 - ? (c >= 43488 && c <= 43492) - : c <= 43503) - : (c <= 43518 || (c >= 43520 && c <= 43560))) - : (c <= 43586 || (c < 43642 - ? (c < 43616 - ? (c >= 43588 && c <= 43595) - : c <= 43638) - : (c <= 43642 || (c >= 43646 && c <= 43695))))))) - : (c <= 43697 || (c < 43793 - ? (c < 43739 - ? (c < 43712 - ? (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709) - : (c <= 43712 || c == 43714)) - : (c <= 43741 || (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c >= 43785 && c <= 43790))))) - : (c <= 43798 || (c < 43888 - ? (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 55243 - ? (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) - : (c <= 64217 || (c < 65147 - ? (c < 64326 - ? (c < 64298 - ? (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64285 || (c >= 64287 && c <= 64296))) - : (c <= 64310 || (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65017 || (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || c == 65145)))))) - : (c <= 65147 || (c < 65498 - ? (c < 65382 - ? (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))) - : (c <= 65437 || (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))))) - : (c <= 65500 || (c < 65599 - ? (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) - : (c <= 66204 || (c < 68416 - ? (c < 67639 - ? (c < 66736 - ? (c < 66432 - ? (c < 66349 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : c <= 66335) - : (c <= 66378 || (c >= 66384 && c <= 66421))) - : (c <= 66461 || (c < 66513 - ? (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511) - : (c <= 66517 || (c >= 66560 && c <= 66717))))) - : (c <= 66771 || (c < 67392 - ? (c < 66864 - ? (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855) - : (c <= 66915 || (c >= 67072 && c <= 67382))) - : (c <= 67413 || (c < 67592 - ? (c < 67584 - ? (c >= 67424 && c <= 67431) - : c <= 67589) - : (c <= 67592 || (c >= 67594 && c <= 67637))))))) - : (c <= 67640 || (c < 68030 - ? (c < 67808 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c >= 67712 && c <= 67742))) - : (c <= 67826 || (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c >= 67968 && c <= 68023))))) - : (c <= 68031 || (c < 68192 - ? (c < 68117 - ? (c < 68112 - ? c == 68096 - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) - : (c <= 68437 || (c < 69968 - ? (c < 69415 - ? (c < 68800 - ? (c < 68608 - ? (c < 68480 - ? (c >= 68448 && c <= 68466) - : c <= 68497) - : (c <= 68680 || (c >= 68736 && c <= 68786))) - : (c <= 68850 || (c < 69296 - ? (c < 69248 - ? (c >= 68864 && c <= 68899) - : c <= 69289) - : (c <= 69297 || (c >= 69376 && c <= 69404))))) - : (c <= 69415 || (c < 69763 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69424 && c <= 69445) - : c <= 69572) - : (c <= 69622 || (c >= 69635 && c <= 69687))) - : (c <= 69807 || (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || c == 69959)))))) - : (c <= 70002 || (c < 70282 - ? (c < 70108 - ? (c < 70081 - ? (c < 70019 - ? c == 70006 - : c <= 70066) - : (c <= 70084 || c == 70106)) - : (c <= 70108 || (c < 70272 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187) - : (c <= 70278 || c == 70280)))) - : (c <= 70285 || (c < 70415 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70366 || (c >= 70405 && c <= 70412))) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) - : (c <= 70457 || (c < 113808 - ? (c < 72818 - ? (c < 71945 - ? (c < 71040 - ? (c < 70727 - ? (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))) - : (c <= 70730 || (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || c == 70855)))) - : (c <= 71086 || (c < 71352 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71131) - : c <= 71215) - : (c <= 71236 || (c >= 71296 && c <= 71338))) - : (c <= 71352 || (c < 71840 - ? (c < 71680 - ? (c >= 71424 && c <= 71450) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))))))) - : (c <= 71945 || (c < 72192 - ? (c < 72001 - ? (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)) - : (c <= 72001 || (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)))) - : (c <= 72192 || (c < 72349 - ? (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))) - : (c <= 72349 || (c < 72714 - ? (c < 72704 - ? (c >= 72384 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)))))))) - : (c <= 72847 || (c < 92992 - ? (c < 73648 - ? (c < 73056 - ? (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)) - : (c <= 73061 || (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c >= 73440 && c <= 73458))))) - : (c <= 73648 || (c < 82944 - ? (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c >= 77824 && c <= 78894))) - : (c <= 83526 || (c < 92880 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92909 || (c >= 92928 && c <= 92975))))))) - : (c <= 92995 || (c < 100352 - ? (c < 94032 - ? (c < 93760 - ? (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071) - : (c <= 93823 || (c >= 93952 && c <= 94026))) - : (c <= 94032 || (c < 94179 - ? (c < 94176 - ? (c >= 94099 && c <= 94111) - : c <= 94177) - : (c <= 94179 || (c >= 94208 && c <= 100343))))) - : (c <= 101589 || (c < 110960 - ? (c < 110928 - ? (c < 110592 - ? (c >= 101632 && c <= 101640) - : c <= 110878) - : (c <= 110930 || (c >= 110948 && c <= 110951))) - : (c <= 111355 || (c < 113776 - ? (c >= 113664 && c <= 113770) - : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) - : (c <= 113817 || (c < 126469 - ? (c < 120488 - ? (c < 120005 - ? (c < 119973 - ? (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)) - : (c <= 119974 || (c < 119995 - ? (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c >= 119997 && c <= 120003))))) - : (c <= 120069 || (c < 120123 - ? (c < 120086 - ? (c < 120077 - ? (c >= 120071 && c <= 120074) - : c <= 120084) - : (c <= 120092 || (c >= 120094 && c <= 120121))) - : (c <= 120126 || (c < 120138 - ? (c < 120134 - ? (c >= 120128 && c <= 120132) - : c <= 120134) - : (c <= 120144 || (c >= 120146 && c <= 120485))))))) - : (c <= 120512 || (c < 120772 - ? (c < 120630 - ? (c < 120572 - ? (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))) - : (c <= 120654 || (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c >= 120746 && c <= 120770))))) - : (c <= 120779 || (c < 124928 - ? (c < 123214 - ? (c < 123191 - ? (c >= 123136 && c <= 123180) - : c <= 123197) - : (c <= 123214 || (c >= 123584 && c <= 123627))) - : (c <= 125124 || (c < 125259 - ? (c >= 125184 && c <= 125251) - : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) - : (c <= 126495 || (c < 126561 - ? (c < 126537 - ? (c < 126516 - ? (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c >= 126505 && c <= 126514))) - : (c <= 126519 || (c < 126530 - ? (c < 126523 - ? c == 126521 - : c <= 126523) - : (c <= 126530 || c == 126535)))) - : (c <= 126537 || (c < 126551 - ? (c < 126545 - ? (c < 126541 - ? c == 126539 - : c <= 126543) - : (c <= 126546 || c == 126548)) - : (c <= 126551 || (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || c == 126559)))))) - : (c <= 126562 || (c < 126629 - ? (c < 126585 - ? (c < 126572 - ? (c < 126567 - ? c == 126564 - : c <= 126570) - : (c <= 126578 || (c >= 126580 && c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 173824 - ? (c < 131072 - ? (c >= 126635 && c <= 126651) - : c <= 173789) - : (c <= 177972 || (c >= 177984 && c <= 178205))) - : (c <= 183969 || (c < 194560 - ? (c >= 183984 && c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} - -static inline bool sym_identifier_character_set_2(int32_t c) { +static inline bool sym_identifier_character_set_2(int32_t c) { return (c < 43020 ? (c < 3976 ? (c < 2674 @@ -5682,2899 +4970,7 @@ static inline bool sym_identifier_character_set_3(int32_t c) { : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 43072 - ? (c < 3724 - ? (c < 2738 - ? (c < 2045 - ? (c < 1155 - ? (c < 748 - ? (c < 186 - ? (c < 170 - ? (c < 'a' - ? (c >= '0' && c <= 'Z') - : c <= 'z') - : (c <= 170 || (c < 183 - ? c == 181 - : c <= 183))) - : (c <= 186 || (c < 248 - ? (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246) - : (c <= 705 || (c < 736 - ? (c >= 710 && c <= 721) - : c <= 740))))) - : (c <= 748 || (c < 902 - ? (c < 886 - ? (c < 768 - ? c == 750 - : c <= 884) - : (c <= 887 || (c < 895 - ? (c >= 891 && c <= 893) - : c <= 895))) - : (c <= 906 || (c < 931 - ? (c < 910 - ? c == 908 - : c <= 929) - : (c <= 1013 || (c >= 1015 && c <= 1153))))))) - : (c <= 1159 || (c < 1552 - ? (c < 1471 - ? (c < 1369 - ? (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366) - : (c <= 1369 || (c < 1425 - ? (c >= 1376 && c <= 1416) - : c <= 1469))) - : (c <= 1471 || (c < 1479 - ? (c < 1476 - ? (c >= 1473 && c <= 1474) - : c <= 1477) - : (c <= 1479 || (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522))))) - : (c <= 1562 || (c < 1791 - ? (c < 1749 - ? (c < 1646 - ? (c >= 1568 && c <= 1641) - : c <= 1747) - : (c <= 1756 || (c < 1770 - ? (c >= 1759 && c <= 1768) - : c <= 1788))) - : (c <= 1791 || (c < 1984 - ? (c < 1869 - ? (c >= 1808 && c <= 1866) - : c <= 1969) - : (c <= 2037 || c == 2042)))))))) - : (c <= 2045 || (c < 2556 - ? (c < 2451 - ? (c < 2259 - ? (c < 2144 - ? (c < 2112 - ? (c >= 2048 && c <= 2093) - : c <= 2139) - : (c <= 2154 || (c < 2230 - ? (c >= 2208 && c <= 2228) - : c <= 2247))) - : (c <= 2273 || (c < 2417 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : c <= 2415) - : (c <= 2435 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))))) - : (c <= 2472 || (c < 2507 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || (c < 2503 - ? (c >= 2492 && c <= 2500) - : c <= 2504))) - : (c <= 2510 || (c < 2527 - ? (c < 2524 - ? c == 2519 - : c <= 2525) - : (c <= 2531 || (c >= 2534 && c <= 2545))))))) - : (c <= 2556 || (c < 2631 - ? (c < 2602 - ? (c < 2565 - ? (c < 2561 - ? c == 2558 - : c <= 2563) - : (c <= 2570 || (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600))) - : (c <= 2608 || (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c < 2622 - ? c == 2620 - : c <= 2626))))) - : (c <= 2632 || (c < 2689 - ? (c < 2649 - ? (c < 2641 - ? (c >= 2635 && c <= 2637) - : c <= 2641) - : (c <= 2652 || (c < 2662 - ? c == 2654 - : c <= 2677))) - : (c <= 2691 || (c < 2707 - ? (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) - : (c <= 2739 || (c < 3146 - ? (c < 2929 - ? (c < 2835 - ? (c < 2784 - ? (c < 2759 - ? (c < 2748 - ? (c >= 2741 && c <= 2745) - : c <= 2757) - : (c <= 2761 || (c < 2768 - ? (c >= 2763 && c <= 2765) - : c <= 2768))) - : (c <= 2787 || (c < 2817 - ? (c < 2809 - ? (c >= 2790 && c <= 2799) - : c <= 2815) - : (c <= 2819 || (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832))))) - : (c <= 2856 || (c < 2891 - ? (c < 2869 - ? (c < 2866 - ? (c >= 2858 && c <= 2864) - : c <= 2867) - : (c <= 2873 || (c < 2887 - ? (c >= 2876 && c <= 2884) - : c <= 2888))) - : (c <= 2893 || (c < 2911 - ? (c < 2908 - ? (c >= 2901 && c <= 2903) - : c <= 2909) - : (c <= 2915 || (c >= 2918 && c <= 2927))))))) - : (c <= 2929 || (c < 3014 - ? (c < 2972 - ? (c < 2958 - ? (c < 2949 - ? (c >= 2946 && c <= 2947) - : c <= 2954) - : (c <= 2960 || (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970))) - : (c <= 2972 || (c < 2984 - ? (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980) - : (c <= 2986 || (c < 3006 - ? (c >= 2990 && c <= 3001) - : c <= 3010))))) - : (c <= 3016 || (c < 3086 - ? (c < 3031 - ? (c < 3024 - ? (c >= 3018 && c <= 3021) - : c <= 3024) - : (c <= 3031 || (c < 3072 - ? (c >= 3046 && c <= 3055) - : c <= 3084))) - : (c <= 3088 || (c < 3133 - ? (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129) - : (c <= 3140 || (c >= 3142 && c <= 3144))))))))) - : (c <= 3149 || (c < 3402 - ? (c < 3270 - ? (c < 3205 - ? (c < 3168 - ? (c < 3160 - ? (c >= 3157 && c <= 3158) - : c <= 3162) - : (c <= 3171 || (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203))) - : (c <= 3212 || (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c < 3260 - ? (c >= 3253 && c <= 3257) - : c <= 3268))))) - : (c <= 3272 || (c < 3313 - ? (c < 3294 - ? (c < 3285 - ? (c >= 3274 && c <= 3277) - : c <= 3286) - : (c <= 3294 || (c < 3302 - ? (c >= 3296 && c <= 3299) - : c <= 3311))) - : (c <= 3314 || (c < 3346 - ? (c < 3342 - ? (c >= 3328 && c <= 3340) - : c <= 3344) - : (c <= 3396 || (c >= 3398 && c <= 3400))))))) - : (c <= 3406 || (c < 3535 - ? (c < 3461 - ? (c < 3430 - ? (c < 3423 - ? (c >= 3412 && c <= 3415) - : c <= 3427) - : (c <= 3439 || (c < 3457 - ? (c >= 3450 && c <= 3455) - : c <= 3459))) - : (c <= 3478 || (c < 3517 - ? (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515) - : (c <= 3517 || (c < 3530 - ? (c >= 3520 && c <= 3526) - : c <= 3530))))) - : (c <= 3540 || (c < 3648 - ? (c < 3558 - ? (c < 3544 - ? c == 3542 - : c <= 3551) - : (c <= 3567 || (c < 3585 - ? (c >= 3570 && c <= 3571) - : c <= 3642))) - : (c <= 3662 || (c < 3716 - ? (c < 3713 - ? (c >= 3664 && c <= 3673) - : c <= 3714) - : (c <= 3716 || (c >= 3718 && c <= 3722))))))))))))) - : (c <= 3747 || (c < 7312 - ? (c < 5112 - ? (c < 4295 - ? (c < 3895 - ? (c < 3792 - ? (c < 3776 - ? (c < 3751 - ? c == 3749 - : c <= 3773) - : (c <= 3780 || (c < 3784 - ? c == 3782 - : c <= 3789))) - : (c <= 3801 || (c < 3864 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3865 || (c < 3893 - ? (c >= 3872 && c <= 3881) - : c <= 3893))))) - : (c <= 3895 || (c < 3993 - ? (c < 3913 - ? (c < 3902 - ? c == 3897 - : c <= 3911) - : (c <= 3948 || (c < 3974 - ? (c >= 3953 && c <= 3972) - : c <= 3991))) - : (c <= 4028 || (c < 4176 - ? (c < 4096 - ? c == 4038 - : c <= 4169) - : (c <= 4253 || (c >= 4256 && c <= 4293))))))) - : (c <= 4295 || (c < 4792 - ? (c < 4696 - ? (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c < 4688 - ? (c >= 4682 && c <= 4685) - : c <= 4694))) - : (c <= 4696 || (c < 4746 - ? (c < 4704 - ? (c >= 4698 && c <= 4701) - : c <= 4744) - : (c <= 4749 || (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789))))) - : (c <= 4798 || (c < 4888 - ? (c < 4808 - ? (c < 4802 - ? c == 4800 - : c <= 4805) - : (c <= 4822 || (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885))) - : (c <= 4954 || (c < 4992 - ? (c < 4969 - ? (c >= 4957 && c <= 4959) - : c <= 4977) - : (c <= 5007 || (c >= 5024 && c <= 5109))))))))) - : (c <= 5117 || (c < 6432 - ? (c < 6002 - ? (c < 5888 - ? (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))) - : (c <= 5900 || (c < 5952 - ? (c < 5920 - ? (c >= 5902 && c <= 5908) - : c <= 5940) - : (c <= 5971 || (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000))))) - : (c <= 6003 || (c < 6160 - ? (c < 6108 - ? (c < 6103 - ? (c >= 6016 && c <= 6099) - : c <= 6103) - : (c <= 6109 || (c < 6155 - ? (c >= 6112 && c <= 6121) - : c <= 6157))) - : (c <= 6169 || (c < 6320 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6314) - : (c <= 6389 || (c >= 6400 && c <= 6430))))))) - : (c <= 6443 || (c < 6823 - ? (c < 6608 - ? (c < 6512 - ? (c < 6470 - ? (c >= 6448 && c <= 6459) - : c <= 6509) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6618 || (c < 6752 - ? (c < 6688 - ? (c >= 6656 && c <= 6683) - : c <= 6750) - : (c <= 6780 || (c < 6800 - ? (c >= 6783 && c <= 6793) - : c <= 6809))))) - : (c <= 6823 || (c < 7040 - ? (c < 6912 - ? (c < 6847 - ? (c >= 6832 && c <= 6845) - : c <= 6848) - : (c <= 6987 || (c < 7019 - ? (c >= 6992 && c <= 7001) - : c <= 7027))) - : (c <= 7155 || (c < 7245 - ? (c < 7232 - ? (c >= 7168 && c <= 7223) - : c <= 7241) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))))))) - : (c <= 7354 || (c < 11312 - ? (c < 8182 - ? (c < 8029 - ? (c < 7960 - ? (c < 7380 - ? (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378) - : (c <= 7418 || (c < 7675 - ? (c >= 7424 && c <= 7673) - : c <= 7957))) - : (c <= 7965 || (c < 8016 - ? (c < 8008 - ? (c >= 7968 && c <= 8005) - : c <= 8013) - : (c <= 8023 || (c < 8027 - ? c == 8025 - : c <= 8027))))) - : (c <= 8029 || (c < 8134 - ? (c < 8118 - ? (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116) - : (c <= 8124 || (c < 8130 - ? c == 8126 - : c <= 8132))) - : (c <= 8140 || (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c >= 8178 && c <= 8180))))))) - : (c <= 8188 || (c < 8469 - ? (c < 8400 - ? (c < 8305 - ? (c < 8276 - ? (c >= 8255 && c <= 8256) - : c <= 8276) - : (c <= 8305 || (c < 8336 - ? c == 8319 - : c <= 8348))) - : (c <= 8412 || (c < 8450 - ? (c < 8421 - ? c == 8417 - : c <= 8432) - : (c <= 8450 || (c < 8458 - ? c == 8455 - : c <= 8467))))) - : (c <= 8469 || (c < 8508 - ? (c < 8486 - ? (c < 8484 - ? (c >= 8472 && c <= 8477) - : c <= 8484) - : (c <= 8486 || (c < 8490 - ? c == 8488 - : c <= 8505))) - : (c <= 8511 || (c < 8544 - ? (c < 8526 - ? (c >= 8517 && c <= 8521) - : c <= 8526) - : (c <= 8584 || (c >= 11264 && c <= 11310))))))))) - : (c <= 11358 || (c < 12441 - ? (c < 11704 - ? (c < 11568 - ? (c < 11520 - ? (c < 11499 - ? (c >= 11360 && c <= 11492) - : c <= 11507) - : (c <= 11557 || (c < 11565 - ? c == 11559 - : c <= 11565))) - : (c <= 11623 || (c < 11680 - ? (c < 11647 - ? c == 11631 - : c <= 11670) - : (c <= 11686 || (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702))))) - : (c <= 11710 || (c < 12293 - ? (c < 11728 - ? (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c < 11744 - ? (c >= 11736 && c <= 11742) - : c <= 11775))) - : (c <= 12295 || (c < 12344 - ? (c < 12337 - ? (c >= 12321 && c <= 12335) - : c <= 12341) - : (c <= 12348 || (c >= 12353 && c <= 12438))))))) - : (c <= 12442 || (c < 42240 - ? (c < 12704 - ? (c < 12540 - ? (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538) - : (c <= 12543 || (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686))) - : (c <= 12735 || (c < 19968 - ? (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903) - : (c <= 40956 || (c < 42192 - ? (c >= 40960 && c <= 42124) - : c <= 42237))))) - : (c <= 42508 || (c < 42786 - ? (c < 42612 - ? (c < 42560 - ? (c >= 42512 && c <= 42539) - : c <= 42607) - : (c <= 42621 || (c < 42775 - ? (c >= 42623 && c <= 42737) - : c <= 42783))) - : (c <= 42888 || (c < 42997 - ? (c < 42946 - ? (c >= 42891 && c <= 42943) - : c <= 42954) - : (c <= 43047 || c == 43052)))))))))))))) - : (c <= 43123 || (c < 71096 - ? (c < 66864 - ? (c < 64914 - ? (c < 43816 - ? (c < 43584 - ? (c < 43312 - ? (c < 43232 - ? (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225) - : (c <= 43255 || (c < 43261 - ? c == 43259 - : c <= 43309))) - : (c <= 43347 || (c < 43471 - ? (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456) - : (c <= 43481 || (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574))))) - : (c <= 43597 || (c < 43762 - ? (c < 43642 - ? (c < 43616 - ? (c >= 43600 && c <= 43609) - : c <= 43638) - : (c <= 43714 || (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43759))) - : (c <= 43766 || (c < 43793 - ? (c < 43785 - ? (c >= 43777 && c <= 43782) - : c <= 43790) - : (c <= 43798 || (c >= 43808 && c <= 43814))))))) - : (c <= 43822 || (c < 64275 - ? (c < 44032 - ? (c < 43888 - ? (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881) - : (c <= 44010 || (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64323 - ? (c < 64312 - ? (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310) - : (c <= 64316 || (c < 64320 - ? c == 64318 - : c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65549 - ? (c < 65151 - ? (c < 65137 - ? (c < 65056 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : c <= 65039) - : (c <= 65071 || (c < 65101 - ? (c >= 65075 && c <= 65076) - : c <= 65103))) - : (c <= 65137 || (c < 65145 - ? (c < 65143 - ? c == 65139 - : c <= 65143) - : (c <= 65145 || (c < 65149 - ? c == 65147 - : c <= 65149))))) - : (c <= 65276 || (c < 65474 - ? (c < 65343 - ? (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338) - : (c <= 65343 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470))) - : (c <= 65479 || (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c >= 65536 && c <= 65547))))))) - : (c <= 65574 || (c < 66349 - ? (c < 65856 - ? (c < 65599 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : c <= 65597) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 - ? (c < 66176 - ? c == 66045 - : c <= 66204) - : (c <= 66256 || (c < 66304 - ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 - ? (c < 66464 - ? (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461) - : (c <= 66499 || (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 - ? (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) - : (c <= 66915 || (c < 69632 - ? (c < 68152 - ? (c < 67808 - ? (c < 67594 - ? (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592))) - : (c <= 67637 || (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742))))) - : (c <= 67826 || (c < 68096 - ? (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031))) - : (c <= 68099 || (c < 68117 - ? (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))))))) - : (c <= 68154 || (c < 68800 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 - ? c == 68159 - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786))))) - : (c <= 68850 || (c < 69376 - ? (c < 69248 - ? (c < 68912 - ? (c >= 68864 && c <= 68903) - : c <= 68921) - : (c <= 69289 || (c < 69296 - ? (c >= 69291 && c <= 69292) - : c <= 69297))) - : (c <= 69404 || (c < 69552 - ? (c < 69424 - ? c == 69415 - : c <= 69456) - : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) - : (c <= 69702 || (c < 70384 - ? (c < 70094 - ? (c < 69942 - ? (c < 69840 - ? (c < 69759 - ? (c >= 69734 && c <= 69743) - : c <= 69818) - : (c <= 69864 || (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940))) - : (c <= 69951 || (c < 70006 - ? (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003) - : (c <= 70006 || (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092))))) - : (c <= 70106 || (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70199 || (c < 70272 - ? c == 70206 - : c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70378))))))) - : (c <= 70393 || (c < 70487 - ? (c < 70450 - ? (c < 70415 - ? (c < 70405 - ? (c >= 70400 && c <= 70403) - : c <= 70412) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448))) - : (c <= 70451 || (c < 70471 - ? (c < 70459 - ? (c >= 70453 && c <= 70457) - : c <= 70468) - : (c <= 70472 || (c < 70480 - ? (c >= 70475 && c <= 70477) - : c <= 70480))))) - : (c <= 70487 || (c < 70750 - ? (c < 70512 - ? (c < 70502 - ? (c >= 70493 && c <= 70499) - : c <= 70508) - : (c <= 70516 || (c < 70736 - ? (c >= 70656 && c <= 70730) - : c <= 70745))) - : (c <= 70753 || (c < 70864 - ? (c < 70855 - ? (c >= 70784 && c <= 70853) - : c <= 70855) - : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) - : (c <= 71104 || (c < 119894 - ? (c < 73104 - ? (c < 72163 - ? (c < 71935 - ? (c < 71360 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232) - : (c <= 71236 || (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352))) - : (c <= 71369 || (c < 71472 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : c <= 71467) - : (c <= 71481 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))))) - : (c <= 71942 || (c < 71995 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71991 - ? (c >= 71960 && c <= 71989) - : c <= 71992))) - : (c <= 72003 || (c < 72106 - ? (c < 72096 - ? (c >= 72016 && c <= 72025) - : c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))))))) - : (c <= 72164 || (c < 72873 - ? (c < 72704 - ? (c < 72272 - ? (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72384 - ? c == 72349 - : c <= 72440))) - : (c <= 72712 || (c < 72784 - ? (c < 72760 - ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 - ? (c >= 72818 && c <= 72847) - : c <= 72871))))) - : (c <= 72886 || (c < 73023 - ? (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73014 || (c < 73020 - ? c == 73018 - : c <= 73021))) - : (c <= 73031 || (c < 73063 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) - : (c <= 73105 || (c < 94095 - ? (c < 92768 - ? (c < 74752 - ? (c < 73440 - ? (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129) - : (c <= 73462 || (c < 73728 - ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 82944 - ? (c < 77824 - ? (c >= 74880 && c <= 75075) - : c <= 78894) - : (c <= 83526 || (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766))))) - : (c <= 92777 || (c < 93027 - ? (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))) - : (c <= 93047 || (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c >= 94031 && c <= 94087))))))) - : (c <= 94111 || (c < 113776 - ? (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110878) - : c <= 110930) - : (c <= 110951 || (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770))))) - : (c <= 113788 || (c < 119163 - ? (c < 113821 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 113822 || (c < 119149 - ? (c >= 119141 && c <= 119145) - : c <= 119154))) - : (c <= 119170 || (c < 119362 - ? (c < 119210 - ? (c >= 119173 && c <= 119179) - : c <= 119213) - : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 124928 - ? (c < 120630 - ? (c < 120094 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092))))) - : (c <= 120121 || (c < 120488 - ? (c < 120134 - ? (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485))) - : (c <= 120512 || (c < 120572 - ? (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))))))) - : (c <= 120654 || (c < 121505 - ? (c < 120782 - ? (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779))) - : (c <= 120831 || (c < 121461 - ? (c < 121403 - ? (c >= 121344 && c <= 121398) - : c <= 121452) - : (c <= 121461 || (c < 121499 - ? c == 121476 - : c <= 121503))))) - : (c <= 121519 || (c < 123136 - ? (c < 122907 - ? (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922))) - : (c <= 123180 || (c < 123214 - ? (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209) - : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) - : (c <= 125124 || (c < 126557 - ? (c < 126523 - ? (c < 126497 - ? (c < 125264 - ? (c < 125184 - ? (c >= 125136 && c <= 125142) - : c <= 125259) - : (c <= 125273 || (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495))) - : (c <= 126498 || (c < 126505 - ? (c < 126503 - ? c == 126500 - : c <= 126503) - : (c <= 126514 || (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521))))) - : (c <= 126523 || (c < 126545 - ? (c < 126537 - ? (c < 126535 - ? c == 126530 - : c <= 126535) - : (c <= 126537 || (c < 126541 - ? c == 126539 - : c <= 126543))) - : (c <= 126546 || (c < 126553 - ? (c < 126551 - ? c == 126548 - : c <= 126551) - : (c <= 126553 || c == 126555)))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} - -static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 43052 - ? (c < 3718 - ? (c < 2730 - ? (c < 2042 - ? (c < 1015 - ? (c < 710 - ? (c < 181 - ? (c < '_' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c < 170 - ? (c >= 'a' && c <= 'z') - : c <= 170))) - : (c <= 181 || (c < 192 - ? (c < 186 - ? c == 183 - : c <= 186) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705))))) - : (c <= 721 || (c < 891 - ? (c < 750 - ? (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748) - : (c <= 750 || (c < 886 - ? (c >= 768 && c <= 884) - : c <= 887))) - : (c <= 893 || (c < 908 - ? (c < 902 - ? c == 895 - : c <= 906) - : (c <= 908 || (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013))))))) - : (c <= 1153 || (c < 1519 - ? (c < 1425 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1155 && c <= 1159) - : c <= 1327) - : (c <= 1366 || (c < 1376 - ? c == 1369 - : c <= 1416))) - : (c <= 1469 || (c < 1476 - ? (c < 1473 - ? c == 1471 - : c <= 1474) - : (c <= 1477 || (c < 1488 - ? c == 1479 - : c <= 1514))))) - : (c <= 1522 || (c < 1770 - ? (c < 1646 - ? (c < 1568 - ? (c >= 1552 && c <= 1562) - : c <= 1641) - : (c <= 1747 || (c < 1759 - ? (c >= 1749 && c <= 1756) - : c <= 1768))) - : (c <= 1788 || (c < 1869 - ? (c < 1808 - ? c == 1791 - : c <= 1866) - : (c <= 1969 || (c >= 1984 && c <= 2037))))))))) - : (c <= 2042 || (c < 2534 - ? (c < 2447 - ? (c < 2230 - ? (c < 2112 - ? (c < 2048 - ? c == 2045 - : c <= 2093) - : (c <= 2139 || (c < 2208 - ? (c >= 2144 && c <= 2154) - : c <= 2228))) - : (c <= 2247 || (c < 2406 - ? (c < 2275 - ? (c >= 2259 && c <= 2273) - : c <= 2403) - : (c <= 2415 || (c < 2437 - ? (c >= 2417 && c <= 2435) - : c <= 2444))))) - : (c <= 2448 || (c < 2503 - ? (c < 2482 - ? (c < 2474 - ? (c >= 2451 && c <= 2472) - : c <= 2480) - : (c <= 2482 || (c < 2492 - ? (c >= 2486 && c <= 2489) - : c <= 2500))) - : (c <= 2504 || (c < 2524 - ? (c < 2519 - ? (c >= 2507 && c <= 2510) - : c <= 2519) - : (c <= 2525 || (c >= 2527 && c <= 2531))))))) - : (c <= 2545 || (c < 2622 - ? (c < 2579 - ? (c < 2561 - ? (c < 2558 - ? c == 2556 - : c <= 2558) - : (c <= 2563 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576))) - : (c <= 2600 || (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c < 2620 - ? (c >= 2616 && c <= 2617) - : c <= 2620))))) - : (c <= 2626 || (c < 2662 - ? (c < 2641 - ? (c < 2635 - ? (c >= 2631 && c <= 2632) - : c <= 2637) - : (c <= 2641 || (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654))) - : (c <= 2677 || (c < 2703 - ? (c < 2693 - ? (c >= 2689 && c <= 2691) - : c <= 2701) - : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) - : (c <= 2736 || (c < 3142 - ? (c < 2918 - ? (c < 2831 - ? (c < 2768 - ? (c < 2748 - ? (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2757 || (c < 2763 - ? (c >= 2759 && c <= 2761) - : c <= 2765))) - : (c <= 2768 || (c < 2809 - ? (c < 2790 - ? (c >= 2784 && c <= 2787) - : c <= 2799) - : (c <= 2815 || (c < 2821 - ? (c >= 2817 && c <= 2819) - : c <= 2828))))) - : (c <= 2832 || (c < 2887 - ? (c < 2866 - ? (c < 2858 - ? (c >= 2835 && c <= 2856) - : c <= 2864) - : (c <= 2867 || (c < 2876 - ? (c >= 2869 && c <= 2873) - : c <= 2884))) - : (c <= 2888 || (c < 2908 - ? (c < 2901 - ? (c >= 2891 && c <= 2893) - : c <= 2903) - : (c <= 2909 || (c >= 2911 && c <= 2915))))))) - : (c <= 2927 || (c < 3006 - ? (c < 2969 - ? (c < 2949 - ? (c < 2946 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))) - : (c <= 2970 || (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))))) - : (c <= 3010 || (c < 3072 - ? (c < 3024 - ? (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021) - : (c <= 3024 || (c < 3046 - ? c == 3031 - : c <= 3055))) - : (c <= 3084 || (c < 3114 - ? (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112) - : (c <= 3129 || (c >= 3133 && c <= 3140))))))))) - : (c <= 3144 || (c < 3398 - ? (c < 3260 - ? (c < 3200 - ? (c < 3160 - ? (c < 3157 - ? (c >= 3146 && c <= 3149) - : c <= 3158) - : (c <= 3162 || (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183))) - : (c <= 3203 || (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))))) - : (c <= 3268 || (c < 3302 - ? (c < 3285 - ? (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277) - : (c <= 3286 || (c < 3296 - ? c == 3294 - : c <= 3299))) - : (c <= 3311 || (c < 3342 - ? (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340) - : (c <= 3344 || (c >= 3346 && c <= 3396))))))) - : (c <= 3400 || (c < 3530 - ? (c < 3457 - ? (c < 3423 - ? (c < 3412 - ? (c >= 3402 && c <= 3406) - : c <= 3415) - : (c <= 3427 || (c < 3450 - ? (c >= 3430 && c <= 3439) - : c <= 3455))) - : (c <= 3459 || (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || (c < 3520 - ? c == 3517 - : c <= 3526))))) - : (c <= 3530 || (c < 3585 - ? (c < 3544 - ? (c < 3542 - ? (c >= 3535 && c <= 3540) - : c <= 3542) - : (c <= 3551 || (c < 3570 - ? (c >= 3558 && c <= 3567) - : c <= 3571))) - : (c <= 3642 || (c < 3713 - ? (c < 3664 - ? (c >= 3648 && c <= 3662) - : c <= 3673) - : (c <= 3714 || c == 3716)))))))))))) - : (c <= 3722 || (c < 7296 - ? (c < 5024 - ? (c < 4256 - ? (c < 3893 - ? (c < 3784 - ? (c < 3751 - ? (c < 3749 - ? (c >= 3724 && c <= 3747) - : c <= 3749) - : (c <= 3773 || (c < 3782 - ? (c >= 3776 && c <= 3780) - : c <= 3782))) - : (c <= 3789 || (c < 3840 - ? (c < 3804 - ? (c >= 3792 && c <= 3801) - : c <= 3807) - : (c <= 3840 || (c < 3872 - ? (c >= 3864 && c <= 3865) - : c <= 3881))))) - : (c <= 3893 || (c < 3974 - ? (c < 3902 - ? (c < 3897 - ? c == 3895 - : c <= 3897) - : (c <= 3911 || (c < 3953 - ? (c >= 3913 && c <= 3948) - : c <= 3972))) - : (c <= 3991 || (c < 4096 - ? (c < 4038 - ? (c >= 3993 && c <= 4028) - : c <= 4038) - : (c <= 4169 || (c >= 4176 && c <= 4253))))))) - : (c <= 4293 || (c < 4786 - ? (c < 4688 - ? (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))) - : (c <= 4694 || (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784))))) - : (c <= 4789 || (c < 4882 - ? (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880))) - : (c <= 4885 || (c < 4969 - ? (c < 4957 - ? (c >= 4888 && c <= 4954) - : c <= 4959) - : (c <= 4977 || (c >= 4992 && c <= 5007))))))))) - : (c <= 5109 || (c < 6400 - ? (c < 5998 - ? (c < 5870 - ? (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866))) - : (c <= 5880 || (c < 5920 - ? (c < 5902 - ? (c >= 5888 && c <= 5900) - : c <= 5908) - : (c <= 5940 || (c < 5984 - ? (c >= 5952 && c <= 5971) - : c <= 5996))))) - : (c <= 6000 || (c < 6155 - ? (c < 6103 - ? (c < 6016 - ? (c >= 6002 && c <= 6003) - : c <= 6099) - : (c <= 6103 || (c < 6112 - ? (c >= 6108 && c <= 6109) - : c <= 6121))) - : (c <= 6157 || (c < 6272 - ? (c < 6176 - ? (c >= 6160 && c <= 6169) - : c <= 6264) - : (c <= 6314 || (c >= 6320 && c <= 6389))))))) - : (c <= 6430 || (c < 6800 - ? (c < 6576 - ? (c < 6470 - ? (c < 6448 - ? (c >= 6432 && c <= 6443) - : c <= 6459) - : (c <= 6509 || (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571))) - : (c <= 6601 || (c < 6688 - ? (c < 6656 - ? (c >= 6608 && c <= 6618) - : c <= 6683) - : (c <= 6750 || (c < 6783 - ? (c >= 6752 && c <= 6780) - : c <= 6793))))) - : (c <= 6809 || (c < 7019 - ? (c < 6847 - ? (c < 6832 - ? c == 6823 - : c <= 6845) - : (c <= 6848 || (c < 6992 - ? (c >= 6912 && c <= 6987) - : c <= 7001))) - : (c <= 7027 || (c < 7232 - ? (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223) - : (c <= 7241 || (c >= 7245 && c <= 7293))))))))))) - : (c <= 7304 || (c < 11264 - ? (c < 8178 - ? (c < 8027 - ? (c < 7675 - ? (c < 7376 - ? (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359) - : (c <= 7378 || (c < 7424 - ? (c >= 7380 && c <= 7418) - : c <= 7673))) - : (c <= 7957 || (c < 8008 - ? (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005) - : (c <= 8013 || (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025))))) - : (c <= 8027 || (c < 8130 - ? (c < 8064 - ? (c < 8031 - ? c == 8029 - : c <= 8061) - : (c <= 8116 || (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126))) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c >= 8160 && c <= 8172))))))) - : (c <= 8180 || (c < 8458 - ? (c < 8336 - ? (c < 8276 - ? (c < 8255 - ? (c >= 8182 && c <= 8188) - : c <= 8256) - : (c <= 8276 || (c < 8319 - ? c == 8305 - : c <= 8319))) - : (c <= 8348 || (c < 8421 - ? (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417) - : (c <= 8432 || (c < 8455 - ? c == 8450 - : c <= 8455))))) - : (c <= 8467 || (c < 8490 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || (c < 8488 - ? c == 8486 - : c <= 8488))) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c >= 8544 && c <= 8584))))))))) - : (c <= 11310 || (c < 12353 - ? (c < 11696 - ? (c < 11565 - ? (c < 11499 - ? (c < 11360 - ? (c >= 11312 && c <= 11358) - : c <= 11492) - : (c <= 11507 || (c < 11559 - ? (c >= 11520 && c <= 11557) - : c <= 11559))) - : (c <= 11565 || (c < 11647 - ? (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631) - : (c <= 11670 || (c < 11688 - ? (c >= 11680 && c <= 11686) - : c <= 11694))))) - : (c <= 11702 || (c < 11744 - ? (c < 11720 - ? (c < 11712 - ? (c >= 11704 && c <= 11710) - : c <= 11718) - : (c <= 11726 || (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742))) - : (c <= 11775 || (c < 12337 - ? (c < 12321 - ? (c >= 12293 && c <= 12295) - : c <= 12335) - : (c <= 12341 || (c >= 12344 && c <= 12348))))))) - : (c <= 12438 || (c < 42192 - ? (c < 12593 - ? (c < 12449 - ? (c < 12445 - ? (c >= 12441 && c <= 12442) - : c <= 12447) - : (c <= 12538 || (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591))) - : (c <= 12686 || (c < 13312 - ? (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799) - : (c <= 19903 || (c < 40960 - ? (c >= 19968 && c <= 40956) - : c <= 42124))))) - : (c <= 42237 || (c < 42775 - ? (c < 42560 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42539) - : (c <= 42607 || (c < 42623 - ? (c >= 42612 && c <= 42621) - : c <= 42737))) - : (c <= 42783 || (c < 42946 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) - : c <= 42943) - : (c <= 42954 || (c >= 42997 && c <= 43047))))))))))))))) - : (c <= 43052 || (c < 71096 - ? (c < 66864 - ? (c < 64914 - ? (c < 43816 - ? (c < 43520 - ? (c < 43261 - ? (c < 43216 - ? (c < 43136 - ? (c >= 43072 && c <= 43123) - : c <= 43205) - : (c <= 43225 || (c < 43259 - ? (c >= 43232 && c <= 43255) - : c <= 43259))) - : (c <= 43309 || (c < 43392 - ? (c < 43360 - ? (c >= 43312 && c <= 43347) - : c <= 43388) - : (c <= 43456 || (c < 43488 - ? (c >= 43471 && c <= 43481) - : c <= 43518))))) - : (c <= 43574 || (c < 43744 - ? (c < 43616 - ? (c < 43600 - ? (c >= 43584 && c <= 43597) - : c <= 43609) - : (c <= 43638 || (c < 43739 - ? (c >= 43642 && c <= 43714) - : c <= 43741))) - : (c <= 43759 || (c < 43785 - ? (c < 43777 - ? (c >= 43762 && c <= 43766) - : c <= 43782) - : (c <= 43790 || (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814))))))) - : (c <= 43822 || (c < 64275 - ? (c < 44032 - ? (c < 43888 - ? (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881) - : (c <= 44010 || (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64323 - ? (c < 64312 - ? (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310) - : (c <= 64316 || (c < 64320 - ? c == 64318 - : c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65549 - ? (c < 65151 - ? (c < 65137 - ? (c < 65056 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : c <= 65039) - : (c <= 65071 || (c < 65101 - ? (c >= 65075 && c <= 65076) - : c <= 65103))) - : (c <= 65137 || (c < 65145 - ? (c < 65143 - ? c == 65139 - : c <= 65143) - : (c <= 65145 || (c < 65149 - ? c == 65147 - : c <= 65149))))) - : (c <= 65276 || (c < 65474 - ? (c < 65343 - ? (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338) - : (c <= 65343 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470))) - : (c <= 65479 || (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c >= 65536 && c <= 65547))))))) - : (c <= 65574 || (c < 66349 - ? (c < 65856 - ? (c < 65599 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : c <= 65597) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 - ? (c < 66176 - ? c == 66045 - : c <= 66204) - : (c <= 66256 || (c < 66304 - ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 - ? (c < 66464 - ? (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461) - : (c <= 66499 || (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 - ? (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) - : (c <= 66915 || (c < 69632 - ? (c < 68152 - ? (c < 67808 - ? (c < 67594 - ? (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592))) - : (c <= 67637 || (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742))))) - : (c <= 67826 || (c < 68096 - ? (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031))) - : (c <= 68099 || (c < 68117 - ? (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))))))) - : (c <= 68154 || (c < 68800 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 - ? c == 68159 - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786))))) - : (c <= 68850 || (c < 69376 - ? (c < 69248 - ? (c < 68912 - ? (c >= 68864 && c <= 68903) - : c <= 68921) - : (c <= 69289 || (c < 69296 - ? (c >= 69291 && c <= 69292) - : c <= 69297))) - : (c <= 69404 || (c < 69552 - ? (c < 69424 - ? c == 69415 - : c <= 69456) - : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) - : (c <= 69702 || (c < 70384 - ? (c < 70094 - ? (c < 69942 - ? (c < 69840 - ? (c < 69759 - ? (c >= 69734 && c <= 69743) - : c <= 69818) - : (c <= 69864 || (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940))) - : (c <= 69951 || (c < 70006 - ? (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003) - : (c <= 70006 || (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092))))) - : (c <= 70106 || (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70199 || (c < 70272 - ? c == 70206 - : c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70378))))))) - : (c <= 70393 || (c < 70487 - ? (c < 70450 - ? (c < 70415 - ? (c < 70405 - ? (c >= 70400 && c <= 70403) - : c <= 70412) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448))) - : (c <= 70451 || (c < 70471 - ? (c < 70459 - ? (c >= 70453 && c <= 70457) - : c <= 70468) - : (c <= 70472 || (c < 70480 - ? (c >= 70475 && c <= 70477) - : c <= 70480))))) - : (c <= 70487 || (c < 70750 - ? (c < 70512 - ? (c < 70502 - ? (c >= 70493 && c <= 70499) - : c <= 70508) - : (c <= 70516 || (c < 70736 - ? (c >= 70656 && c <= 70730) - : c <= 70745))) - : (c <= 70753 || (c < 70864 - ? (c < 70855 - ? (c >= 70784 && c <= 70853) - : c <= 70855) - : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) - : (c <= 71104 || (c < 119894 - ? (c < 73104 - ? (c < 72163 - ? (c < 71935 - ? (c < 71360 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232) - : (c <= 71236 || (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352))) - : (c <= 71369 || (c < 71472 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : c <= 71467) - : (c <= 71481 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))))) - : (c <= 71942 || (c < 71995 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71991 - ? (c >= 71960 && c <= 71989) - : c <= 71992))) - : (c <= 72003 || (c < 72106 - ? (c < 72096 - ? (c >= 72016 && c <= 72025) - : c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))))))) - : (c <= 72164 || (c < 72873 - ? (c < 72704 - ? (c < 72272 - ? (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72384 - ? c == 72349 - : c <= 72440))) - : (c <= 72712 || (c < 72784 - ? (c < 72760 - ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 - ? (c >= 72818 && c <= 72847) - : c <= 72871))))) - : (c <= 72886 || (c < 73023 - ? (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73014 || (c < 73020 - ? c == 73018 - : c <= 73021))) - : (c <= 73031 || (c < 73063 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) - : (c <= 73105 || (c < 94095 - ? (c < 92768 - ? (c < 74752 - ? (c < 73440 - ? (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129) - : (c <= 73462 || (c < 73728 - ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 82944 - ? (c < 77824 - ? (c >= 74880 && c <= 75075) - : c <= 78894) - : (c <= 83526 || (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766))))) - : (c <= 92777 || (c < 93027 - ? (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))) - : (c <= 93047 || (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c >= 94031 && c <= 94087))))))) - : (c <= 94111 || (c < 113776 - ? (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110878) - : c <= 110930) - : (c <= 110951 || (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770))))) - : (c <= 113788 || (c < 119163 - ? (c < 113821 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 113822 || (c < 119149 - ? (c >= 119141 && c <= 119145) - : c <= 119154))) - : (c <= 119170 || (c < 119362 - ? (c < 119210 - ? (c >= 119173 && c <= 119179) - : c <= 119213) - : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 124928 - ? (c < 120630 - ? (c < 120094 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092))))) - : (c <= 120121 || (c < 120488 - ? (c < 120134 - ? (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485))) - : (c <= 120512 || (c < 120572 - ? (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))))))) - : (c <= 120654 || (c < 121505 - ? (c < 120782 - ? (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779))) - : (c <= 120831 || (c < 121461 - ? (c < 121403 - ? (c >= 121344 && c <= 121398) - : c <= 121452) - : (c <= 121461 || (c < 121499 - ? c == 121476 - : c <= 121503))))) - : (c <= 121519 || (c < 123136 - ? (c < 122907 - ? (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922))) - : (c <= 123180 || (c < 123214 - ? (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209) - : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) - : (c <= 125124 || (c < 126557 - ? (c < 126523 - ? (c < 126497 - ? (c < 125264 - ? (c < 125184 - ? (c >= 125136 && c <= 125142) - : c <= 125259) - : (c <= 125273 || (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495))) - : (c <= 126498 || (c < 126505 - ? (c < 126503 - ? c == 126500 - : c <= 126503) - : (c <= 126514 || (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521))))) - : (c <= 126523 || (c < 126545 - ? (c < 126537 - ? (c < 126535 - ? c == 126530 - : c <= 126535) - : (c <= 126537 || (c < 126541 - ? c == 126539 - : c <= 126543))) - : (c <= 126546 || (c < 126553 - ? (c < 126551 - ? c == 126548 - : c <= 126551) - : (c <= 126553 || c == 126555)))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} - -static inline bool sym_identifier_character_set_6(int32_t c) { - return (c < 43072 - ? (c < 3724 - ? (c < 2738 - ? (c < 2045 - ? (c < 1155 - ? (c < 736 - ? (c < 183 - ? (c < 'a' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= 'z' || (c < 181 - ? c == 170 - : c <= 181))) - : (c <= 183 || (c < 216 - ? (c < 192 - ? c == 186 - : c <= 214) - : (c <= 246 || (c < 710 - ? (c >= 248 && c <= 705) - : c <= 721))))) - : (c <= 740 || (c < 895 - ? (c < 768 - ? (c < 750 - ? c == 748 - : c <= 750) - : (c <= 884 || (c < 891 - ? (c >= 886 && c <= 887) - : c <= 893))) - : (c <= 895 || (c < 910 - ? (c < 908 - ? (c >= 902 && c <= 906) - : c <= 908) - : (c <= 929 || (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153))))))) - : (c <= 1159 || (c < 1552 - ? (c < 1471 - ? (c < 1369 - ? (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366) - : (c <= 1369 || (c < 1425 - ? (c >= 1376 && c <= 1416) - : c <= 1469))) - : (c <= 1471 || (c < 1479 - ? (c < 1476 - ? (c >= 1473 && c <= 1474) - : c <= 1477) - : (c <= 1479 || (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522))))) - : (c <= 1562 || (c < 1791 - ? (c < 1749 - ? (c < 1646 - ? (c >= 1568 && c <= 1641) - : c <= 1747) - : (c <= 1756 || (c < 1770 - ? (c >= 1759 && c <= 1768) - : c <= 1788))) - : (c <= 1791 || (c < 1984 - ? (c < 1869 - ? (c >= 1808 && c <= 1866) - : c <= 1969) - : (c <= 2037 || c == 2042)))))))) - : (c <= 2045 || (c < 2556 - ? (c < 2451 - ? (c < 2259 - ? (c < 2144 - ? (c < 2112 - ? (c >= 2048 && c <= 2093) - : c <= 2139) - : (c <= 2154 || (c < 2230 - ? (c >= 2208 && c <= 2228) - : c <= 2247))) - : (c <= 2273 || (c < 2417 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : c <= 2415) - : (c <= 2435 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))))) - : (c <= 2472 || (c < 2507 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || (c < 2503 - ? (c >= 2492 && c <= 2500) - : c <= 2504))) - : (c <= 2510 || (c < 2527 - ? (c < 2524 - ? c == 2519 - : c <= 2525) - : (c <= 2531 || (c >= 2534 && c <= 2545))))))) - : (c <= 2556 || (c < 2631 - ? (c < 2602 - ? (c < 2565 - ? (c < 2561 - ? c == 2558 - : c <= 2563) - : (c <= 2570 || (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600))) - : (c <= 2608 || (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c < 2622 - ? c == 2620 - : c <= 2626))))) - : (c <= 2632 || (c < 2689 - ? (c < 2649 - ? (c < 2641 - ? (c >= 2635 && c <= 2637) - : c <= 2641) - : (c <= 2652 || (c < 2662 - ? c == 2654 - : c <= 2677))) - : (c <= 2691 || (c < 2707 - ? (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) - : (c <= 2739 || (c < 3146 - ? (c < 2929 - ? (c < 2835 - ? (c < 2784 - ? (c < 2759 - ? (c < 2748 - ? (c >= 2741 && c <= 2745) - : c <= 2757) - : (c <= 2761 || (c < 2768 - ? (c >= 2763 && c <= 2765) - : c <= 2768))) - : (c <= 2787 || (c < 2817 - ? (c < 2809 - ? (c >= 2790 && c <= 2799) - : c <= 2815) - : (c <= 2819 || (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832))))) - : (c <= 2856 || (c < 2891 - ? (c < 2869 - ? (c < 2866 - ? (c >= 2858 && c <= 2864) - : c <= 2867) - : (c <= 2873 || (c < 2887 - ? (c >= 2876 && c <= 2884) - : c <= 2888))) - : (c <= 2893 || (c < 2911 - ? (c < 2908 - ? (c >= 2901 && c <= 2903) - : c <= 2909) - : (c <= 2915 || (c >= 2918 && c <= 2927))))))) - : (c <= 2929 || (c < 3014 - ? (c < 2972 - ? (c < 2958 - ? (c < 2949 - ? (c >= 2946 && c <= 2947) - : c <= 2954) - : (c <= 2960 || (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970))) - : (c <= 2972 || (c < 2984 - ? (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980) - : (c <= 2986 || (c < 3006 - ? (c >= 2990 && c <= 3001) - : c <= 3010))))) - : (c <= 3016 || (c < 3086 - ? (c < 3031 - ? (c < 3024 - ? (c >= 3018 && c <= 3021) - : c <= 3024) - : (c <= 3031 || (c < 3072 - ? (c >= 3046 && c <= 3055) - : c <= 3084))) - : (c <= 3088 || (c < 3133 - ? (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129) - : (c <= 3140 || (c >= 3142 && c <= 3144))))))))) - : (c <= 3149 || (c < 3402 - ? (c < 3270 - ? (c < 3205 - ? (c < 3168 - ? (c < 3160 - ? (c >= 3157 && c <= 3158) - : c <= 3162) - : (c <= 3171 || (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203))) - : (c <= 3212 || (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c < 3260 - ? (c >= 3253 && c <= 3257) - : c <= 3268))))) - : (c <= 3272 || (c < 3313 - ? (c < 3294 - ? (c < 3285 - ? (c >= 3274 && c <= 3277) - : c <= 3286) - : (c <= 3294 || (c < 3302 - ? (c >= 3296 && c <= 3299) - : c <= 3311))) - : (c <= 3314 || (c < 3346 - ? (c < 3342 - ? (c >= 3328 && c <= 3340) - : c <= 3344) - : (c <= 3396 || (c >= 3398 && c <= 3400))))))) - : (c <= 3406 || (c < 3535 - ? (c < 3461 - ? (c < 3430 - ? (c < 3423 - ? (c >= 3412 && c <= 3415) - : c <= 3427) - : (c <= 3439 || (c < 3457 - ? (c >= 3450 && c <= 3455) - : c <= 3459))) - : (c <= 3478 || (c < 3517 - ? (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515) - : (c <= 3517 || (c < 3530 - ? (c >= 3520 && c <= 3526) - : c <= 3530))))) - : (c <= 3540 || (c < 3648 - ? (c < 3558 - ? (c < 3544 - ? c == 3542 - : c <= 3551) - : (c <= 3567 || (c < 3585 - ? (c >= 3570 && c <= 3571) - : c <= 3642))) - : (c <= 3662 || (c < 3716 - ? (c < 3713 - ? (c >= 3664 && c <= 3673) - : c <= 3714) - : (c <= 3716 || (c >= 3718 && c <= 3722))))))))))))) - : (c <= 3747 || (c < 7312 - ? (c < 5112 - ? (c < 4295 - ? (c < 3895 - ? (c < 3792 - ? (c < 3776 - ? (c < 3751 - ? c == 3749 - : c <= 3773) - : (c <= 3780 || (c < 3784 - ? c == 3782 - : c <= 3789))) - : (c <= 3801 || (c < 3864 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3865 || (c < 3893 - ? (c >= 3872 && c <= 3881) - : c <= 3893))))) - : (c <= 3895 || (c < 3993 - ? (c < 3913 - ? (c < 3902 - ? c == 3897 - : c <= 3911) - : (c <= 3948 || (c < 3974 - ? (c >= 3953 && c <= 3972) - : c <= 3991))) - : (c <= 4028 || (c < 4176 - ? (c < 4096 - ? c == 4038 - : c <= 4169) - : (c <= 4253 || (c >= 4256 && c <= 4293))))))) - : (c <= 4295 || (c < 4792 - ? (c < 4696 - ? (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c < 4688 - ? (c >= 4682 && c <= 4685) - : c <= 4694))) - : (c <= 4696 || (c < 4746 - ? (c < 4704 - ? (c >= 4698 && c <= 4701) - : c <= 4744) - : (c <= 4749 || (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789))))) - : (c <= 4798 || (c < 4888 - ? (c < 4808 - ? (c < 4802 - ? c == 4800 - : c <= 4805) - : (c <= 4822 || (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885))) - : (c <= 4954 || (c < 4992 - ? (c < 4969 - ? (c >= 4957 && c <= 4959) - : c <= 4977) - : (c <= 5007 || (c >= 5024 && c <= 5109))))))))) - : (c <= 5117 || (c < 6432 - ? (c < 6002 - ? (c < 5888 - ? (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))) - : (c <= 5900 || (c < 5952 - ? (c < 5920 - ? (c >= 5902 && c <= 5908) - : c <= 5940) - : (c <= 5971 || (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000))))) - : (c <= 6003 || (c < 6160 - ? (c < 6108 - ? (c < 6103 - ? (c >= 6016 && c <= 6099) - : c <= 6103) - : (c <= 6109 || (c < 6155 - ? (c >= 6112 && c <= 6121) - : c <= 6157))) - : (c <= 6169 || (c < 6320 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6314) - : (c <= 6389 || (c >= 6400 && c <= 6430))))))) - : (c <= 6443 || (c < 6823 - ? (c < 6608 - ? (c < 6512 - ? (c < 6470 - ? (c >= 6448 && c <= 6459) - : c <= 6509) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6618 || (c < 6752 - ? (c < 6688 - ? (c >= 6656 && c <= 6683) - : c <= 6750) - : (c <= 6780 || (c < 6800 - ? (c >= 6783 && c <= 6793) - : c <= 6809))))) - : (c <= 6823 || (c < 7040 - ? (c < 6912 - ? (c < 6847 - ? (c >= 6832 && c <= 6845) - : c <= 6848) - : (c <= 6987 || (c < 7019 - ? (c >= 6992 && c <= 7001) - : c <= 7027))) - : (c <= 7155 || (c < 7245 - ? (c < 7232 - ? (c >= 7168 && c <= 7223) - : c <= 7241) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))))))) - : (c <= 7354 || (c < 11312 - ? (c < 8182 - ? (c < 8029 - ? (c < 7960 - ? (c < 7380 - ? (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378) - : (c <= 7418 || (c < 7675 - ? (c >= 7424 && c <= 7673) - : c <= 7957))) - : (c <= 7965 || (c < 8016 - ? (c < 8008 - ? (c >= 7968 && c <= 8005) - : c <= 8013) - : (c <= 8023 || (c < 8027 - ? c == 8025 - : c <= 8027))))) - : (c <= 8029 || (c < 8134 - ? (c < 8118 - ? (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116) - : (c <= 8124 || (c < 8130 - ? c == 8126 - : c <= 8132))) - : (c <= 8140 || (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c >= 8178 && c <= 8180))))))) - : (c <= 8188 || (c < 8469 - ? (c < 8400 - ? (c < 8305 - ? (c < 8276 - ? (c >= 8255 && c <= 8256) - : c <= 8276) - : (c <= 8305 || (c < 8336 - ? c == 8319 - : c <= 8348))) - : (c <= 8412 || (c < 8450 - ? (c < 8421 - ? c == 8417 - : c <= 8432) - : (c <= 8450 || (c < 8458 - ? c == 8455 - : c <= 8467))))) - : (c <= 8469 || (c < 8508 - ? (c < 8486 - ? (c < 8484 - ? (c >= 8472 && c <= 8477) - : c <= 8484) - : (c <= 8486 || (c < 8490 - ? c == 8488 - : c <= 8505))) - : (c <= 8511 || (c < 8544 - ? (c < 8526 - ? (c >= 8517 && c <= 8521) - : c <= 8526) - : (c <= 8584 || (c >= 11264 && c <= 11310))))))))) - : (c <= 11358 || (c < 12441 - ? (c < 11704 - ? (c < 11568 - ? (c < 11520 - ? (c < 11499 - ? (c >= 11360 && c <= 11492) - : c <= 11507) - : (c <= 11557 || (c < 11565 - ? c == 11559 - : c <= 11565))) - : (c <= 11623 || (c < 11680 - ? (c < 11647 - ? c == 11631 - : c <= 11670) - : (c <= 11686 || (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702))))) - : (c <= 11710 || (c < 12293 - ? (c < 11728 - ? (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c < 11744 - ? (c >= 11736 && c <= 11742) - : c <= 11775))) - : (c <= 12295 || (c < 12344 - ? (c < 12337 - ? (c >= 12321 && c <= 12335) - : c <= 12341) - : (c <= 12348 || (c >= 12353 && c <= 12438))))))) - : (c <= 12442 || (c < 42240 - ? (c < 12704 - ? (c < 12540 - ? (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538) - : (c <= 12543 || (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686))) - : (c <= 12735 || (c < 19968 - ? (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903) - : (c <= 40956 || (c < 42192 - ? (c >= 40960 && c <= 42124) - : c <= 42237))))) - : (c <= 42508 || (c < 42786 - ? (c < 42612 - ? (c < 42560 - ? (c >= 42512 && c <= 42539) - : c <= 42607) - : (c <= 42621 || (c < 42775 - ? (c >= 42623 && c <= 42737) - : c <= 42783))) - : (c <= 42888 || (c < 42997 - ? (c < 42946 - ? (c >= 42891 && c <= 42943) - : c <= 42954) - : (c <= 43047 || c == 43052)))))))))))))) - : (c <= 43123 || (c < 71096 - ? (c < 66864 - ? (c < 64914 - ? (c < 43816 - ? (c < 43584 - ? (c < 43312 - ? (c < 43232 - ? (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225) - : (c <= 43255 || (c < 43261 - ? c == 43259 - : c <= 43309))) - : (c <= 43347 || (c < 43471 - ? (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456) - : (c <= 43481 || (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574))))) - : (c <= 43597 || (c < 43762 - ? (c < 43642 - ? (c < 43616 - ? (c >= 43600 && c <= 43609) - : c <= 43638) - : (c <= 43714 || (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43759))) - : (c <= 43766 || (c < 43793 - ? (c < 43785 - ? (c >= 43777 && c <= 43782) - : c <= 43790) - : (c <= 43798 || (c >= 43808 && c <= 43814))))))) - : (c <= 43822 || (c < 64275 - ? (c < 44032 - ? (c < 43888 - ? (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881) - : (c <= 44010 || (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64323 - ? (c < 64312 - ? (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310) - : (c <= 64316 || (c < 64320 - ? c == 64318 - : c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65549 - ? (c < 65151 - ? (c < 65137 - ? (c < 65056 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : c <= 65039) - : (c <= 65071 || (c < 65101 - ? (c >= 65075 && c <= 65076) - : c <= 65103))) - : (c <= 65137 || (c < 65145 - ? (c < 65143 - ? c == 65139 - : c <= 65143) - : (c <= 65145 || (c < 65149 - ? c == 65147 - : c <= 65149))))) - : (c <= 65276 || (c < 65474 - ? (c < 65343 - ? (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338) - : (c <= 65343 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470))) - : (c <= 65479 || (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c >= 65536 && c <= 65547))))))) - : (c <= 65574 || (c < 66349 - ? (c < 65856 - ? (c < 65599 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : c <= 65597) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 - ? (c < 66176 - ? c == 66045 - : c <= 66204) - : (c <= 66256 || (c < 66304 - ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 - ? (c < 66464 - ? (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461) - : (c <= 66499 || (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 - ? (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) - : (c <= 66915 || (c < 69632 - ? (c < 68152 - ? (c < 67808 - ? (c < 67594 - ? (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592))) - : (c <= 67637 || (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742))))) - : (c <= 67826 || (c < 68096 - ? (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031))) - : (c <= 68099 || (c < 68117 - ? (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))))))) - : (c <= 68154 || (c < 68800 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 - ? c == 68159 - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786))))) - : (c <= 68850 || (c < 69376 - ? (c < 69248 - ? (c < 68912 - ? (c >= 68864 && c <= 68903) - : c <= 68921) - : (c <= 69289 || (c < 69296 - ? (c >= 69291 && c <= 69292) - : c <= 69297))) - : (c <= 69404 || (c < 69552 - ? (c < 69424 - ? c == 69415 - : c <= 69456) - : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) - : (c <= 69702 || (c < 70384 - ? (c < 70094 - ? (c < 69942 - ? (c < 69840 - ? (c < 69759 - ? (c >= 69734 && c <= 69743) - : c <= 69818) - : (c <= 69864 || (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940))) - : (c <= 69951 || (c < 70006 - ? (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003) - : (c <= 70006 || (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092))))) - : (c <= 70106 || (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70199 || (c < 70272 - ? c == 70206 - : c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70378))))))) - : (c <= 70393 || (c < 70487 - ? (c < 70450 - ? (c < 70415 - ? (c < 70405 - ? (c >= 70400 && c <= 70403) - : c <= 70412) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448))) - : (c <= 70451 || (c < 70471 - ? (c < 70459 - ? (c >= 70453 && c <= 70457) - : c <= 70468) - : (c <= 70472 || (c < 70480 - ? (c >= 70475 && c <= 70477) - : c <= 70480))))) - : (c <= 70487 || (c < 70750 - ? (c < 70512 - ? (c < 70502 - ? (c >= 70493 && c <= 70499) - : c <= 70508) - : (c <= 70516 || (c < 70736 - ? (c >= 70656 && c <= 70730) - : c <= 70745))) - : (c <= 70753 || (c < 70864 - ? (c < 70855 - ? (c >= 70784 && c <= 70853) - : c <= 70855) - : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) - : (c <= 71104 || (c < 119894 - ? (c < 73104 - ? (c < 72163 - ? (c < 71935 - ? (c < 71360 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232) - : (c <= 71236 || (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352))) - : (c <= 71369 || (c < 71472 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : c <= 71467) - : (c <= 71481 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))))) - : (c <= 71942 || (c < 71995 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71991 - ? (c >= 71960 && c <= 71989) - : c <= 71992))) - : (c <= 72003 || (c < 72106 - ? (c < 72096 - ? (c >= 72016 && c <= 72025) - : c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))))))) - : (c <= 72164 || (c < 72873 - ? (c < 72704 - ? (c < 72272 - ? (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72384 - ? c == 72349 - : c <= 72440))) - : (c <= 72712 || (c < 72784 - ? (c < 72760 - ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 - ? (c >= 72818 && c <= 72847) - : c <= 72871))))) - : (c <= 72886 || (c < 73023 - ? (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73014 || (c < 73020 - ? c == 73018 - : c <= 73021))) - : (c <= 73031 || (c < 73063 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) - : (c <= 73105 || (c < 94095 - ? (c < 92768 - ? (c < 74752 - ? (c < 73440 - ? (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129) - : (c <= 73462 || (c < 73728 - ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 82944 - ? (c < 77824 - ? (c >= 74880 && c <= 75075) - : c <= 78894) - : (c <= 83526 || (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766))))) - : (c <= 92777 || (c < 93027 - ? (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))) - : (c <= 93047 || (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c >= 94031 && c <= 94087))))))) - : (c <= 94111 || (c < 113776 - ? (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110878) - : c <= 110930) - : (c <= 110951 || (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770))))) - : (c <= 113788 || (c < 119163 - ? (c < 113821 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 113822 || (c < 119149 - ? (c >= 119141 && c <= 119145) - : c <= 119154))) - : (c <= 119170 || (c < 119362 - ? (c < 119210 - ? (c >= 119173 && c <= 119179) - : c <= 119213) - : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 124928 - ? (c < 120630 - ? (c < 120094 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092))))) - : (c <= 120121 || (c < 120488 - ? (c < 120134 - ? (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485))) - : (c <= 120512 || (c < 120572 - ? (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))))))) - : (c <= 120654 || (c < 121505 - ? (c < 120782 - ? (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779))) - : (c <= 120831 || (c < 121461 - ? (c < 121403 - ? (c >= 121344 && c <= 121398) - : c <= 121452) - : (c <= 121461 || (c < 121499 - ? c == 121476 - : c <= 121503))))) - : (c <= 121519 || (c < 123136 - ? (c < 122907 - ? (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922))) - : (c <= 123180 || (c < 123214 - ? (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209) - : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) - : (c <= 125124 || (c < 126557 - ? (c < 126523 - ? (c < 126497 - ? (c < 125264 - ? (c < 125184 - ? (c >= 125136 && c <= 125142) - : c <= 125259) - : (c <= 125273 || (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495))) - : (c <= 126498 || (c < 126505 - ? (c < 126503 - ? c == 126500 - : c <= 126503) - : (c <= 126514 || (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521))))) - : (c <= 126523 || (c < 126545 - ? (c < 126537 - ? (c < 126535 - ? c == 126530 - : c <= 126535) - : (c <= 126537 || (c < 126541 - ? c == 126539 - : c <= 126543))) - : (c <= 126546 || (c < 126553 - ? (c < 126551 - ? c == 126548 - : c <= 126551) - : (c <= 126553 || c == 126555)))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} - -static inline bool sym_identifier_character_set_7(int32_t c) { +static inline bool sym_identifier_character_set_5(int32_t c) { return (c < 43052 ? (c < 3718 ? (c < 2730 @@ -8587,7 +4983,7 @@ static inline bool sym_identifier_character_set_7(int32_t c) { ? (c >= '0' && c <= '9') : c <= 'Z') : (c <= '_' || (c < 170 - ? (c >= 'b' && c <= 'z') + ? (c >= 'a' && c <= 'z') : c <= 170))) : (c <= 181 || (c < 192 ? (c < 186 @@ -9584,7 +5980,685 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(55) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 170 || + lookahead == 181 || + lookahead == 186 || + (192 <= lookahead && lookahead <= 214) || + (216 <= lookahead && lookahead <= 246) || + (248 <= lookahead && lookahead <= 705) || + (710 <= lookahead && lookahead <= 721) || + (736 <= lookahead && lookahead <= 740) || + lookahead == 748 || + lookahead == 750 || + (880 <= lookahead && lookahead <= 884) || + lookahead == 886 || + lookahead == 887 || + (891 <= lookahead && lookahead <= 893) || + lookahead == 895 || + lookahead == 902 || + (904 <= lookahead && lookahead <= 906) || + lookahead == 908 || + (910 <= lookahead && lookahead <= 929) || + (931 <= lookahead && lookahead <= 1013) || + (1015 <= lookahead && lookahead <= 1153) || + (1162 <= lookahead && lookahead <= 1327) || + (1329 <= lookahead && lookahead <= 1366) || + lookahead == 1369 || + (1376 <= lookahead && lookahead <= 1416) || + (1488 <= lookahead && lookahead <= 1514) || + (1519 <= lookahead && lookahead <= 1522) || + (1568 <= lookahead && lookahead <= 1610) || + lookahead == 1646 || + lookahead == 1647 || + (1649 <= lookahead && lookahead <= 1747) || + lookahead == 1749 || + lookahead == 1765 || + lookahead == 1766 || + lookahead == 1774 || + lookahead == 1775 || + (1786 <= lookahead && lookahead <= 1788) || + lookahead == 1791 || + lookahead == 1808 || + (1810 <= lookahead && lookahead <= 1839) || + (1869 <= lookahead && lookahead <= 1957) || + lookahead == 1969 || + (1994 <= lookahead && lookahead <= 2026) || + lookahead == 2036 || + lookahead == 2037 || + lookahead == 2042 || + (2048 <= lookahead && lookahead <= 2069) || + lookahead == 2074 || + lookahead == 2084 || + lookahead == 2088 || + (2112 <= lookahead && lookahead <= 2136) || + (2144 <= lookahead && lookahead <= 2154) || + (2208 <= lookahead && lookahead <= 2228) || + (2230 <= lookahead && lookahead <= 2247) || + (2308 <= lookahead && lookahead <= 2361) || + lookahead == 2365 || + lookahead == 2384 || + (2392 <= lookahead && lookahead <= 2401) || + (2417 <= lookahead && lookahead <= 2432) || + (2437 <= lookahead && lookahead <= 2444) || + lookahead == 2447 || + lookahead == 2448 || + (2451 <= lookahead && lookahead <= 2472) || + (2474 <= lookahead && lookahead <= 2480) || + lookahead == 2482 || + (2486 <= lookahead && lookahead <= 2489) || + lookahead == 2493 || + lookahead == 2510 || + lookahead == 2524 || + lookahead == 2525 || + (2527 <= lookahead && lookahead <= 2529) || + lookahead == 2544 || + lookahead == 2545 || + lookahead == 2556 || + (2565 <= lookahead && lookahead <= 2570) || + lookahead == 2575 || + lookahead == 2576 || + (2579 <= lookahead && lookahead <= 2600) || + (2602 <= lookahead && lookahead <= 2608) || + lookahead == 2610 || + lookahead == 2611 || + lookahead == 2613 || + lookahead == 2614 || + lookahead == 2616 || + lookahead == 2617 || + (2649 <= lookahead && lookahead <= 2652) || + lookahead == 2654 || + (2674 <= lookahead && lookahead <= 2676) || + (2693 <= lookahead && lookahead <= 2701) || + (2703 <= lookahead && lookahead <= 2705) || + (2707 <= lookahead && lookahead <= 2728) || + (2730 <= lookahead && lookahead <= 2736) || + lookahead == 2738 || + lookahead == 2739 || + (2741 <= lookahead && lookahead <= 2745) || + lookahead == 2749 || + lookahead == 2768 || + lookahead == 2784 || + lookahead == 2785 || + lookahead == 2809 || + (2821 <= lookahead && lookahead <= 2828) || + lookahead == 2831 || + lookahead == 2832 || + (2835 <= lookahead && lookahead <= 2856) || + (2858 <= lookahead && lookahead <= 2864) || + lookahead == 2866 || + lookahead == 2867 || + (2869 <= lookahead && lookahead <= 2873) || + lookahead == 2877 || + lookahead == 2908 || + lookahead == 2909 || + (2911 <= lookahead && lookahead <= 2913) || + lookahead == 2929 || + lookahead == 2947 || + (2949 <= lookahead && lookahead <= 2954) || + (2958 <= lookahead && lookahead <= 2960) || + (2962 <= lookahead && lookahead <= 2965) || + lookahead == 2969 || + lookahead == 2970 || + lookahead == 2972 || + lookahead == 2974 || + lookahead == 2975 || + lookahead == 2979 || + lookahead == 2980 || + (2984 <= lookahead && lookahead <= 2986) || + (2990 <= lookahead && lookahead <= 3001) || + lookahead == 3024 || + (3077 <= lookahead && lookahead <= 3084) || + (3086 <= lookahead && lookahead <= 3088) || + (3090 <= lookahead && lookahead <= 3112) || + (3114 <= lookahead && lookahead <= 3129) || + lookahead == 3133 || + (3160 <= lookahead && lookahead <= 3162) || + lookahead == 3168 || + lookahead == 3169 || + lookahead == 3200 || + (3205 <= lookahead && lookahead <= 3212) || + (3214 <= lookahead && lookahead <= 3216) || + (3218 <= lookahead && lookahead <= 3240) || + (3242 <= lookahead && lookahead <= 3251) || + (3253 <= lookahead && lookahead <= 3257) || + lookahead == 3261 || + lookahead == 3294 || + lookahead == 3296 || + lookahead == 3297 || + lookahead == 3313 || + lookahead == 3314 || + (3332 <= lookahead && lookahead <= 3340) || + (3342 <= lookahead && lookahead <= 3344) || + (3346 <= lookahead && lookahead <= 3386) || + lookahead == 3389 || + lookahead == 3406 || + (3412 <= lookahead && lookahead <= 3414) || + (3423 <= lookahead && lookahead <= 3425) || + (3450 <= lookahead && lookahead <= 3455) || + (3461 <= lookahead && lookahead <= 3478) || + (3482 <= lookahead && lookahead <= 3505) || + (3507 <= lookahead && lookahead <= 3515) || + lookahead == 3517 || + (3520 <= lookahead && lookahead <= 3526) || + (3585 <= lookahead && lookahead <= 3632) || + lookahead == 3634 || + (3648 <= lookahead && lookahead <= 3654) || + lookahead == 3713 || + lookahead == 3714 || + lookahead == 3716 || + (3718 <= lookahead && lookahead <= 3722) || + (3724 <= lookahead && lookahead <= 3747) || + lookahead == 3749 || + (3751 <= lookahead && lookahead <= 3760) || + lookahead == 3762 || + lookahead == 3773 || + (3776 <= lookahead && lookahead <= 3780) || + lookahead == 3782 || + (3804 <= lookahead && lookahead <= 3807) || + lookahead == 3840 || + (3904 <= lookahead && lookahead <= 3911) || + (3913 <= lookahead && lookahead <= 3948) || + (3976 <= lookahead && lookahead <= 3980) || + (4096 <= lookahead && lookahead <= 4138) || + lookahead == 4159 || + (4176 <= lookahead && lookahead <= 4181) || + (4186 <= lookahead && lookahead <= 4189) || + lookahead == 4193 || + lookahead == 4197 || + lookahead == 4198 || + (4206 <= lookahead && lookahead <= 4208) || + (4213 <= lookahead && lookahead <= 4225) || + lookahead == 4238 || + (4256 <= lookahead && lookahead <= 4293) || + lookahead == 4295 || + lookahead == 4301 || + (4304 <= lookahead && lookahead <= 4346) || + (4348 <= lookahead && lookahead <= 4680) || + (4682 <= lookahead && lookahead <= 4685) || + (4688 <= lookahead && lookahead <= 4694) || + lookahead == 4696 || + (4698 <= lookahead && lookahead <= 4701) || + (4704 <= lookahead && lookahead <= 4744) || + (4746 <= lookahead && lookahead <= 4749) || + (4752 <= lookahead && lookahead <= 4784) || + (4786 <= lookahead && lookahead <= 4789) || + (4792 <= lookahead && lookahead <= 4798) || + lookahead == 4800 || + (4802 <= lookahead && lookahead <= 4805) || + (4808 <= lookahead && lookahead <= 4822) || + (4824 <= lookahead && lookahead <= 4880) || + (4882 <= lookahead && lookahead <= 4885) || + (4888 <= lookahead && lookahead <= 4954) || + (4992 <= lookahead && lookahead <= 5007) || + (5024 <= lookahead && lookahead <= 5109) || + (5112 <= lookahead && lookahead <= 5117) || + (5121 <= lookahead && lookahead <= 5740) || + (5743 <= lookahead && lookahead <= 5759) || + (5761 <= lookahead && lookahead <= 5786) || + (5792 <= lookahead && lookahead <= 5866) || + (5870 <= lookahead && lookahead <= 5880) || + (5888 <= lookahead && lookahead <= 5900) || + (5902 <= lookahead && lookahead <= 5905) || + (5920 <= lookahead && lookahead <= 5937) || + (5952 <= lookahead && lookahead <= 5969) || + (5984 <= lookahead && lookahead <= 5996) || + (5998 <= lookahead && lookahead <= 6000) || + (6016 <= lookahead && lookahead <= 6067) || + lookahead == 6103 || + lookahead == 6108 || + (6176 <= lookahead && lookahead <= 6264) || + (6272 <= lookahead && lookahead <= 6312) || + lookahead == 6314 || + (6320 <= lookahead && lookahead <= 6389) || + (6400 <= lookahead && lookahead <= 6430) || + (6480 <= lookahead && lookahead <= 6509) || + (6512 <= lookahead && lookahead <= 6516) || + (6528 <= lookahead && lookahead <= 6571) || + (6576 <= lookahead && lookahead <= 6601) || + (6656 <= lookahead && lookahead <= 6678) || + (6688 <= lookahead && lookahead <= 6740) || + lookahead == 6823 || + (6917 <= lookahead && lookahead <= 6963) || + (6981 <= lookahead && lookahead <= 6987) || + (7043 <= lookahead && lookahead <= 7072) || + lookahead == 7086 || + lookahead == 7087 || + (7098 <= lookahead && lookahead <= 7141) || + (7168 <= lookahead && lookahead <= 7203) || + (7245 <= lookahead && lookahead <= 7247) || + (7258 <= lookahead && lookahead <= 7293) || + (7296 <= lookahead && lookahead <= 7304) || + (7312 <= lookahead && lookahead <= 7354) || + (7357 <= lookahead && lookahead <= 7359) || + (7401 <= lookahead && lookahead <= 7404) || + (7406 <= lookahead && lookahead <= 7411) || + lookahead == 7413 || + lookahead == 7414 || + lookahead == 7418 || + (7424 <= lookahead && lookahead <= 7615) || + (7680 <= lookahead && lookahead <= 7957) || + (7960 <= lookahead && lookahead <= 7965) || + (7968 <= lookahead && lookahead <= 8005) || + (8008 <= lookahead && lookahead <= 8013) || + (8016 <= lookahead && lookahead <= 8023) || + lookahead == 8025 || + lookahead == 8027 || + lookahead == 8029 || + (8031 <= lookahead && lookahead <= 8061) || + (8064 <= lookahead && lookahead <= 8116) || + (8118 <= lookahead && lookahead <= 8124) || + lookahead == 8126 || + (8130 <= lookahead && lookahead <= 8132) || + (8134 <= lookahead && lookahead <= 8140) || + (8144 <= lookahead && lookahead <= 8147) || + (8150 <= lookahead && lookahead <= 8155) || + (8160 <= lookahead && lookahead <= 8172) || + (8178 <= lookahead && lookahead <= 8180) || + (8182 <= lookahead && lookahead <= 8188) || + lookahead == 8305 || + lookahead == 8319 || + (8336 <= lookahead && lookahead <= 8348) || + lookahead == 8450 || + lookahead == 8455 || + (8458 <= lookahead && lookahead <= 8467) || + lookahead == 8469 || + (8472 <= lookahead && lookahead <= 8477) || + lookahead == 8484 || + lookahead == 8486 || + lookahead == 8488 || + (8490 <= lookahead && lookahead <= 8505) || + (8508 <= lookahead && lookahead <= 8511) || + (8517 <= lookahead && lookahead <= 8521) || + lookahead == 8526 || + (8544 <= lookahead && lookahead <= 8584) || + (11264 <= lookahead && lookahead <= 11310) || + (11312 <= lookahead && lookahead <= 11358) || + (11360 <= lookahead && lookahead <= 11492) || + (11499 <= lookahead && lookahead <= 11502) || + lookahead == 11506 || + lookahead == 11507 || + (11520 <= lookahead && lookahead <= 11557) || + lookahead == 11559 || + lookahead == 11565 || + (11568 <= lookahead && lookahead <= 11623) || + lookahead == 11631 || + (11648 <= lookahead && lookahead <= 11670) || + (11680 <= lookahead && lookahead <= 11686) || + (11688 <= lookahead && lookahead <= 11694) || + (11696 <= lookahead && lookahead <= 11702) || + (11704 <= lookahead && lookahead <= 11710) || + (11712 <= lookahead && lookahead <= 11718) || + (11720 <= lookahead && lookahead <= 11726) || + (11728 <= lookahead && lookahead <= 11734) || + (11736 <= lookahead && lookahead <= 11742) || + (12293 <= lookahead && lookahead <= 12295) || + (12321 <= lookahead && lookahead <= 12329) || + (12337 <= lookahead && lookahead <= 12341) || + (12344 <= lookahead && lookahead <= 12348) || + (12353 <= lookahead && lookahead <= 12438) || + (12445 <= lookahead && lookahead <= 12447) || + (12449 <= lookahead && lookahead <= 12538) || + (12540 <= lookahead && lookahead <= 12543) || + (12549 <= lookahead && lookahead <= 12591) || + (12593 <= lookahead && lookahead <= 12686) || + (12704 <= lookahead && lookahead <= 12735) || + (12784 <= lookahead && lookahead <= 12799) || + (13312 <= lookahead && lookahead <= 19903) || + (19968 <= lookahead && lookahead <= 40956) || + (40960 <= lookahead && lookahead <= 42124) || + (42192 <= lookahead && lookahead <= 42237) || + (42240 <= lookahead && lookahead <= 42508) || + (42512 <= lookahead && lookahead <= 42527) || + lookahead == 42538 || + lookahead == 42539 || + (42560 <= lookahead && lookahead <= 42606) || + (42623 <= lookahead && lookahead <= 42653) || + (42656 <= lookahead && lookahead <= 42735) || + (42775 <= lookahead && lookahead <= 42783) || + (42786 <= lookahead && lookahead <= 42888) || + (42891 <= lookahead && lookahead <= 42943) || + (42946 <= lookahead && lookahead <= 42954) || + (42997 <= lookahead && lookahead <= 43009) || + (43011 <= lookahead && lookahead <= 43013) || + (43015 <= lookahead && lookahead <= 43018) || + (43020 <= lookahead && lookahead <= 43042) || + (43072 <= lookahead && lookahead <= 43123) || + (43138 <= lookahead && lookahead <= 43187) || + (43250 <= lookahead && lookahead <= 43255) || + lookahead == 43259 || + lookahead == 43261 || + lookahead == 43262 || + (43274 <= lookahead && lookahead <= 43301) || + (43312 <= lookahead && lookahead <= 43334) || + (43360 <= lookahead && lookahead <= 43388) || + (43396 <= lookahead && lookahead <= 43442) || + lookahead == 43471 || + (43488 <= lookahead && lookahead <= 43492) || + (43494 <= lookahead && lookahead <= 43503) || + (43514 <= lookahead && lookahead <= 43518) || + (43520 <= lookahead && lookahead <= 43560) || + (43584 <= lookahead && lookahead <= 43586) || + (43588 <= lookahead && lookahead <= 43595) || + (43616 <= lookahead && lookahead <= 43638) || + lookahead == 43642 || + (43646 <= lookahead && lookahead <= 43695) || + lookahead == 43697 || + lookahead == 43701 || + lookahead == 43702 || + (43705 <= lookahead && lookahead <= 43709) || + lookahead == 43712 || + lookahead == 43714 || + (43739 <= lookahead && lookahead <= 43741) || + (43744 <= lookahead && lookahead <= 43754) || + (43762 <= lookahead && lookahead <= 43764) || + (43777 <= lookahead && lookahead <= 43782) || + (43785 <= lookahead && lookahead <= 43790) || + (43793 <= lookahead && lookahead <= 43798) || + (43808 <= lookahead && lookahead <= 43814) || + (43816 <= lookahead && lookahead <= 43822) || + (43824 <= lookahead && lookahead <= 43866) || + (43868 <= lookahead && lookahead <= 43881) || + (43888 <= lookahead && lookahead <= 44002) || + (44032 <= lookahead && lookahead <= 55203) || + (55216 <= lookahead && lookahead <= 55238) || + (55243 <= lookahead && lookahead <= 55291) || + (63744 <= lookahead && lookahead <= 64109) || + (64112 <= lookahead && lookahead <= 64217) || + (64256 <= lookahead && lookahead <= 64262) || + (64275 <= lookahead && lookahead <= 64279) || + lookahead == 64285 || + (64287 <= lookahead && lookahead <= 64296) || + (64298 <= lookahead && lookahead <= 64310) || + (64312 <= lookahead && lookahead <= 64316) || + lookahead == 64318 || + lookahead == 64320 || + lookahead == 64321 || + lookahead == 64323 || + lookahead == 64324 || + (64326 <= lookahead && lookahead <= 64433) || + (64467 <= lookahead && lookahead <= 64605) || + (64612 <= lookahead && lookahead <= 64829) || + (64848 <= lookahead && lookahead <= 64911) || + (64914 <= lookahead && lookahead <= 64967) || + (65008 <= lookahead && lookahead <= 65017) || + lookahead == 65137 || + lookahead == 65139 || + lookahead == 65143 || + lookahead == 65145 || + lookahead == 65147 || + lookahead == 65149 || + (65151 <= lookahead && lookahead <= 65276) || + (65313 <= lookahead && lookahead <= 65338) || + (65345 <= lookahead && lookahead <= 65370) || + (65382 <= lookahead && lookahead <= 65437) || + (65440 <= lookahead && lookahead <= 65470) || + (65474 <= lookahead && lookahead <= 65479) || + (65482 <= lookahead && lookahead <= 65487) || + (65490 <= lookahead && lookahead <= 65495) || + (65498 <= lookahead && lookahead <= 65500) || + (65536 <= lookahead && lookahead <= 65547) || + (65549 <= lookahead && lookahead <= 65574) || + (65576 <= lookahead && lookahead <= 65594) || + lookahead == 65596 || + lookahead == 65597 || + (65599 <= lookahead && lookahead <= 65613) || + (65616 <= lookahead && lookahead <= 65629) || + (65664 <= lookahead && lookahead <= 65786) || + (65856 <= lookahead && lookahead <= 65908) || + (66176 <= lookahead && lookahead <= 66204) || + (66208 <= lookahead && lookahead <= 66256) || + (66304 <= lookahead && lookahead <= 66335) || + (66349 <= lookahead && lookahead <= 66378) || + (66384 <= lookahead && lookahead <= 66421) || + (66432 <= lookahead && lookahead <= 66461) || + (66464 <= lookahead && lookahead <= 66499) || + (66504 <= lookahead && lookahead <= 66511) || + (66513 <= lookahead && lookahead <= 66517) || + (66560 <= lookahead && lookahead <= 66717) || + (66736 <= lookahead && lookahead <= 66771) || + (66776 <= lookahead && lookahead <= 66811) || + (66816 <= lookahead && lookahead <= 66855) || + (66864 <= lookahead && lookahead <= 66915) || + (67072 <= lookahead && lookahead <= 67382) || + (67392 <= lookahead && lookahead <= 67413) || + (67424 <= lookahead && lookahead <= 67431) || + (67584 <= lookahead && lookahead <= 67589) || + lookahead == 67592 || + (67594 <= lookahead && lookahead <= 67637) || + lookahead == 67639 || + lookahead == 67640 || + lookahead == 67644 || + (67647 <= lookahead && lookahead <= 67669) || + (67680 <= lookahead && lookahead <= 67702) || + (67712 <= lookahead && lookahead <= 67742) || + (67808 <= lookahead && lookahead <= 67826) || + lookahead == 67828 || + lookahead == 67829 || + (67840 <= lookahead && lookahead <= 67861) || + (67872 <= lookahead && lookahead <= 67897) || + (67968 <= lookahead && lookahead <= 68023) || + lookahead == 68030 || + lookahead == 68031 || + lookahead == 68096 || + (68112 <= lookahead && lookahead <= 68115) || + (68117 <= lookahead && lookahead <= 68119) || + (68121 <= lookahead && lookahead <= 68149) || + (68192 <= lookahead && lookahead <= 68220) || + (68224 <= lookahead && lookahead <= 68252) || + (68288 <= lookahead && lookahead <= 68295) || + (68297 <= lookahead && lookahead <= 68324) || + (68352 <= lookahead && lookahead <= 68405) || + (68416 <= lookahead && lookahead <= 68437) || + (68448 <= lookahead && lookahead <= 68466) || + (68480 <= lookahead && lookahead <= 68497) || + (68608 <= lookahead && lookahead <= 68680) || + (68736 <= lookahead && lookahead <= 68786) || + (68800 <= lookahead && lookahead <= 68850) || + (68864 <= lookahead && lookahead <= 68899) || + (69248 <= lookahead && lookahead <= 69289) || + lookahead == 69296 || + lookahead == 69297 || + (69376 <= lookahead && lookahead <= 69404) || + lookahead == 69415 || + (69424 <= lookahead && lookahead <= 69445) || + (69552 <= lookahead && lookahead <= 69572) || + (69600 <= lookahead && lookahead <= 69622) || + (69635 <= lookahead && lookahead <= 69687) || + (69763 <= lookahead && lookahead <= 69807) || + (69840 <= lookahead && lookahead <= 69864) || + (69891 <= lookahead && lookahead <= 69926) || + lookahead == 69956 || + lookahead == 69959 || + (69968 <= lookahead && lookahead <= 70002) || + lookahead == 70006 || + (70019 <= lookahead && lookahead <= 70066) || + (70081 <= lookahead && lookahead <= 70084) || + lookahead == 70106 || + lookahead == 70108 || + (70144 <= lookahead && lookahead <= 70161) || + (70163 <= lookahead && lookahead <= 70187) || + (70272 <= lookahead && lookahead <= 70278) || + lookahead == 70280 || + (70282 <= lookahead && lookahead <= 70285) || + (70287 <= lookahead && lookahead <= 70301) || + (70303 <= lookahead && lookahead <= 70312) || + (70320 <= lookahead && lookahead <= 70366) || + (70405 <= lookahead && lookahead <= 70412) || + lookahead == 70415 || + lookahead == 70416 || + (70419 <= lookahead && lookahead <= 70440) || + (70442 <= lookahead && lookahead <= 70448) || + lookahead == 70450 || + lookahead == 70451 || + (70453 <= lookahead && lookahead <= 70457) || + lookahead == 70461 || + lookahead == 70480 || + (70493 <= lookahead && lookahead <= 70497) || + (70656 <= lookahead && lookahead <= 70708) || + (70727 <= lookahead && lookahead <= 70730) || + (70751 <= lookahead && lookahead <= 70753) || + (70784 <= lookahead && lookahead <= 70831) || + lookahead == 70852 || + lookahead == 70853 || + lookahead == 70855 || + (71040 <= lookahead && lookahead <= 71086) || + (71128 <= lookahead && lookahead <= 71131) || + (71168 <= lookahead && lookahead <= 71215) || + lookahead == 71236 || + (71296 <= lookahead && lookahead <= 71338) || + lookahead == 71352 || + (71424 <= lookahead && lookahead <= 71450) || + (71680 <= lookahead && lookahead <= 71723) || + (71840 <= lookahead && lookahead <= 71903) || + (71935 <= lookahead && lookahead <= 71942) || + lookahead == 71945 || + (71948 <= lookahead && lookahead <= 71955) || + lookahead == 71957 || + lookahead == 71958 || + (71960 <= lookahead && lookahead <= 71983) || + lookahead == 71999 || + lookahead == 72001 || + (72096 <= lookahead && lookahead <= 72103) || + (72106 <= lookahead && lookahead <= 72144) || + lookahead == 72161 || + lookahead == 72163 || + lookahead == 72192 || + (72203 <= lookahead && lookahead <= 72242) || + lookahead == 72250 || + lookahead == 72272 || + (72284 <= lookahead && lookahead <= 72329) || + lookahead == 72349 || + (72384 <= lookahead && lookahead <= 72440) || + (72704 <= lookahead && lookahead <= 72712) || + (72714 <= lookahead && lookahead <= 72750) || + lookahead == 72768 || + (72818 <= lookahead && lookahead <= 72847) || + (72960 <= lookahead && lookahead <= 72966) || + lookahead == 72968 || + lookahead == 72969 || + (72971 <= lookahead && lookahead <= 73008) || + lookahead == 73030 || + (73056 <= lookahead && lookahead <= 73061) || + lookahead == 73063 || + lookahead == 73064 || + (73066 <= lookahead && lookahead <= 73097) || + lookahead == 73112 || + (73440 <= lookahead && lookahead <= 73458) || + lookahead == 73648 || + (73728 <= lookahead && lookahead <= 74649) || + (74752 <= lookahead && lookahead <= 74862) || + (74880 <= lookahead && lookahead <= 75075) || + (77824 <= lookahead && lookahead <= 78894) || + (82944 <= lookahead && lookahead <= 83526) || + (92160 <= lookahead && lookahead <= 92728) || + (92736 <= lookahead && lookahead <= 92766) || + (92880 <= lookahead && lookahead <= 92909) || + (92928 <= lookahead && lookahead <= 92975) || + (92992 <= lookahead && lookahead <= 92995) || + (93027 <= lookahead && lookahead <= 93047) || + (93053 <= lookahead && lookahead <= 93071) || + (93760 <= lookahead && lookahead <= 93823) || + (93952 <= lookahead && lookahead <= 94026) || + lookahead == 94032 || + (94099 <= lookahead && lookahead <= 94111) || + lookahead == 94176 || + lookahead == 94177 || + lookahead == 94179 || + (94208 <= lookahead && lookahead <= 100343) || + (100352 <= lookahead && lookahead <= 101589) || + (101632 <= lookahead && lookahead <= 101640) || + (110592 <= lookahead && lookahead <= 110878) || + (110928 <= lookahead && lookahead <= 110930) || + (110948 <= lookahead && lookahead <= 110951) || + (110960 <= lookahead && lookahead <= 111355) || + (113664 <= lookahead && lookahead <= 113770) || + (113776 <= lookahead && lookahead <= 113788) || + (113792 <= lookahead && lookahead <= 113800) || + (113808 <= lookahead && lookahead <= 113817) || + (119808 <= lookahead && lookahead <= 119892) || + (119894 <= lookahead && lookahead <= 119964) || + lookahead == 119966 || + lookahead == 119967 || + lookahead == 119970 || + lookahead == 119973 || + lookahead == 119974 || + (119977 <= lookahead && lookahead <= 119980) || + (119982 <= lookahead && lookahead <= 119993) || + lookahead == 119995 || + (119997 <= lookahead && lookahead <= 120003) || + (120005 <= lookahead && lookahead <= 120069) || + (120071 <= lookahead && lookahead <= 120074) || + (120077 <= lookahead && lookahead <= 120084) || + (120086 <= lookahead && lookahead <= 120092) || + (120094 <= lookahead && lookahead <= 120121) || + (120123 <= lookahead && lookahead <= 120126) || + (120128 <= lookahead && lookahead <= 120132) || + lookahead == 120134 || + (120138 <= lookahead && lookahead <= 120144) || + (120146 <= lookahead && lookahead <= 120485) || + (120488 <= lookahead && lookahead <= 120512) || + (120514 <= lookahead && lookahead <= 120538) || + (120540 <= lookahead && lookahead <= 120570) || + (120572 <= lookahead && lookahead <= 120596) || + (120598 <= lookahead && lookahead <= 120628) || + (120630 <= lookahead && lookahead <= 120654) || + (120656 <= lookahead && lookahead <= 120686) || + (120688 <= lookahead && lookahead <= 120712) || + (120714 <= lookahead && lookahead <= 120744) || + (120746 <= lookahead && lookahead <= 120770) || + (120772 <= lookahead && lookahead <= 120779) || + (123136 <= lookahead && lookahead <= 123180) || + (123191 <= lookahead && lookahead <= 123197) || + lookahead == 123214 || + (123584 <= lookahead && lookahead <= 123627) || + (124928 <= lookahead && lookahead <= 125124) || + (125184 <= lookahead && lookahead <= 125251) || + lookahead == 125259 || + (126464 <= lookahead && lookahead <= 126467) || + (126469 <= lookahead && lookahead <= 126495) || + lookahead == 126497 || + lookahead == 126498 || + lookahead == 126500 || + lookahead == 126503 || + (126505 <= lookahead && lookahead <= 126514) || + (126516 <= lookahead && lookahead <= 126519) || + lookahead == 126521 || + lookahead == 126523 || + lookahead == 126530 || + lookahead == 126535 || + lookahead == 126537 || + lookahead == 126539 || + (126541 <= lookahead && lookahead <= 126543) || + lookahead == 126545 || + lookahead == 126546 || + lookahead == 126548 || + lookahead == 126551 || + lookahead == 126553 || + lookahead == 126555 || + lookahead == 126557 || + lookahead == 126559 || + lookahead == 126561 || + lookahead == 126562 || + lookahead == 126564 || + (126567 <= lookahead && lookahead <= 126570) || + (126572 <= lookahead && lookahead <= 126578) || + (126580 <= lookahead && lookahead <= 126583) || + (126585 <= lookahead && lookahead <= 126588) || + lookahead == 126590 || + (126592 <= lookahead && lookahead <= 126601) || + (126603 <= lookahead && lookahead <= 126619) || + (126625 <= lookahead && lookahead <= 126627) || + (126629 <= lookahead && lookahead <= 126633) || + (126635 <= lookahead && lookahead <= 126651) || + (131072 <= lookahead && lookahead <= 173789) || + (173824 <= lookahead && lookahead <= 177972) || + (177984 <= lookahead && lookahead <= 178205) || + (178208 <= lookahead && lookahead <= 183969) || + (183984 <= lookahead && lookahead <= 191456) || + (194560 <= lookahead && lookahead <= 195101) || + (196608 <= lookahead && lookahead <= 201546)) ADVANCE(166); END_STATE(); case 1: if (lookahead == '!') ADVANCE(89); @@ -10424,7 +7498,803 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '|' || lookahead == '~') ADVANCE(83); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(166); + if (('0' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 170 || + lookahead == 181 || + lookahead == 183 || + lookahead == 186 || + (192 <= lookahead && lookahead <= 214) || + (216 <= lookahead && lookahead <= 246) || + (248 <= lookahead && lookahead <= 705) || + (710 <= lookahead && lookahead <= 721) || + (736 <= lookahead && lookahead <= 740) || + lookahead == 748 || + lookahead == 750 || + (768 <= lookahead && lookahead <= 884) || + lookahead == 886 || + lookahead == 887 || + (891 <= lookahead && lookahead <= 893) || + lookahead == 895 || + (902 <= lookahead && lookahead <= 906) || + lookahead == 908 || + (910 <= lookahead && lookahead <= 929) || + (931 <= lookahead && lookahead <= 1013) || + (1015 <= lookahead && lookahead <= 1153) || + (1155 <= lookahead && lookahead <= 1159) || + (1162 <= lookahead && lookahead <= 1327) || + (1329 <= lookahead && lookahead <= 1366) || + lookahead == 1369 || + (1376 <= lookahead && lookahead <= 1416) || + (1425 <= lookahead && lookahead <= 1469) || + lookahead == 1471 || + lookahead == 1473 || + lookahead == 1474 || + lookahead == 1476 || + lookahead == 1477 || + lookahead == 1479 || + (1488 <= lookahead && lookahead <= 1514) || + (1519 <= lookahead && lookahead <= 1522) || + (1552 <= lookahead && lookahead <= 1562) || + (1568 <= lookahead && lookahead <= 1641) || + (1646 <= lookahead && lookahead <= 1747) || + (1749 <= lookahead && lookahead <= 1756) || + (1759 <= lookahead && lookahead <= 1768) || + (1770 <= lookahead && lookahead <= 1788) || + lookahead == 1791 || + (1808 <= lookahead && lookahead <= 1866) || + (1869 <= lookahead && lookahead <= 1969) || + (1984 <= lookahead && lookahead <= 2037) || + lookahead == 2042 || + lookahead == 2045 || + (2048 <= lookahead && lookahead <= 2093) || + (2112 <= lookahead && lookahead <= 2139) || + (2144 <= lookahead && lookahead <= 2154) || + (2208 <= lookahead && lookahead <= 2228) || + (2230 <= lookahead && lookahead <= 2247) || + (2259 <= lookahead && lookahead <= 2273) || + (2275 <= lookahead && lookahead <= 2403) || + (2406 <= lookahead && lookahead <= 2415) || + (2417 <= lookahead && lookahead <= 2435) || + (2437 <= lookahead && lookahead <= 2444) || + lookahead == 2447 || + lookahead == 2448 || + (2451 <= lookahead && lookahead <= 2472) || + (2474 <= lookahead && lookahead <= 2480) || + lookahead == 2482 || + (2486 <= lookahead && lookahead <= 2489) || + (2492 <= lookahead && lookahead <= 2500) || + lookahead == 2503 || + lookahead == 2504 || + (2507 <= lookahead && lookahead <= 2510) || + lookahead == 2519 || + lookahead == 2524 || + lookahead == 2525 || + (2527 <= lookahead && lookahead <= 2531) || + (2534 <= lookahead && lookahead <= 2545) || + lookahead == 2556 || + lookahead == 2558 || + (2561 <= lookahead && lookahead <= 2563) || + (2565 <= lookahead && lookahead <= 2570) || + lookahead == 2575 || + lookahead == 2576 || + (2579 <= lookahead && lookahead <= 2600) || + (2602 <= lookahead && lookahead <= 2608) || + lookahead == 2610 || + lookahead == 2611 || + lookahead == 2613 || + lookahead == 2614 || + lookahead == 2616 || + lookahead == 2617 || + lookahead == 2620 || + (2622 <= lookahead && lookahead <= 2626) || + lookahead == 2631 || + lookahead == 2632 || + (2635 <= lookahead && lookahead <= 2637) || + lookahead == 2641 || + (2649 <= lookahead && lookahead <= 2652) || + lookahead == 2654 || + (2662 <= lookahead && lookahead <= 2677) || + (2689 <= lookahead && lookahead <= 2691) || + (2693 <= lookahead && lookahead <= 2701) || + (2703 <= lookahead && lookahead <= 2705) || + (2707 <= lookahead && lookahead <= 2728) || + (2730 <= lookahead && lookahead <= 2736) || + lookahead == 2738 || + lookahead == 2739 || + (2741 <= lookahead && lookahead <= 2745) || + (2748 <= lookahead && lookahead <= 2757) || + (2759 <= lookahead && lookahead <= 2761) || + (2763 <= lookahead && lookahead <= 2765) || + lookahead == 2768 || + (2784 <= lookahead && lookahead <= 2787) || + (2790 <= lookahead && lookahead <= 2799) || + (2809 <= lookahead && lookahead <= 2815) || + (2817 <= lookahead && lookahead <= 2819) || + (2821 <= lookahead && lookahead <= 2828) || + lookahead == 2831 || + lookahead == 2832 || + (2835 <= lookahead && lookahead <= 2856) || + (2858 <= lookahead && lookahead <= 2864) || + lookahead == 2866 || + lookahead == 2867 || + (2869 <= lookahead && lookahead <= 2873) || + (2876 <= lookahead && lookahead <= 2884) || + lookahead == 2887 || + lookahead == 2888 || + (2891 <= lookahead && lookahead <= 2893) || + (2901 <= lookahead && lookahead <= 2903) || + lookahead == 2908 || + lookahead == 2909 || + (2911 <= lookahead && lookahead <= 2915) || + (2918 <= lookahead && lookahead <= 2927) || + lookahead == 2929 || + lookahead == 2946 || + lookahead == 2947 || + (2949 <= lookahead && lookahead <= 2954) || + (2958 <= lookahead && lookahead <= 2960) || + (2962 <= lookahead && lookahead <= 2965) || + lookahead == 2969 || + lookahead == 2970 || + lookahead == 2972 || + lookahead == 2974 || + lookahead == 2975 || + lookahead == 2979 || + lookahead == 2980 || + (2984 <= lookahead && lookahead <= 2986) || + (2990 <= lookahead && lookahead <= 3001) || + (3006 <= lookahead && lookahead <= 3010) || + (3014 <= lookahead && lookahead <= 3016) || + (3018 <= lookahead && lookahead <= 3021) || + lookahead == 3024 || + lookahead == 3031 || + (3046 <= lookahead && lookahead <= 3055) || + (3072 <= lookahead && lookahead <= 3084) || + (3086 <= lookahead && lookahead <= 3088) || + (3090 <= lookahead && lookahead <= 3112) || + (3114 <= lookahead && lookahead <= 3129) || + (3133 <= lookahead && lookahead <= 3140) || + (3142 <= lookahead && lookahead <= 3144) || + (3146 <= lookahead && lookahead <= 3149) || + lookahead == 3157 || + lookahead == 3158 || + (3160 <= lookahead && lookahead <= 3162) || + (3168 <= lookahead && lookahead <= 3171) || + (3174 <= lookahead && lookahead <= 3183) || + (3200 <= lookahead && lookahead <= 3203) || + (3205 <= lookahead && lookahead <= 3212) || + (3214 <= lookahead && lookahead <= 3216) || + (3218 <= lookahead && lookahead <= 3240) || + (3242 <= lookahead && lookahead <= 3251) || + (3253 <= lookahead && lookahead <= 3257) || + (3260 <= lookahead && lookahead <= 3268) || + (3270 <= lookahead && lookahead <= 3272) || + (3274 <= lookahead && lookahead <= 3277) || + lookahead == 3285 || + lookahead == 3286 || + lookahead == 3294 || + (3296 <= lookahead && lookahead <= 3299) || + (3302 <= lookahead && lookahead <= 3311) || + lookahead == 3313 || + lookahead == 3314 || + (3328 <= lookahead && lookahead <= 3340) || + (3342 <= lookahead && lookahead <= 3344) || + (3346 <= lookahead && lookahead <= 3396) || + (3398 <= lookahead && lookahead <= 3400) || + (3402 <= lookahead && lookahead <= 3406) || + (3412 <= lookahead && lookahead <= 3415) || + (3423 <= lookahead && lookahead <= 3427) || + (3430 <= lookahead && lookahead <= 3439) || + (3450 <= lookahead && lookahead <= 3455) || + (3457 <= lookahead && lookahead <= 3459) || + (3461 <= lookahead && lookahead <= 3478) || + (3482 <= lookahead && lookahead <= 3505) || + (3507 <= lookahead && lookahead <= 3515) || + lookahead == 3517 || + (3520 <= lookahead && lookahead <= 3526) || + lookahead == 3530 || + (3535 <= lookahead && lookahead <= 3540) || + lookahead == 3542 || + (3544 <= lookahead && lookahead <= 3551) || + (3558 <= lookahead && lookahead <= 3567) || + lookahead == 3570 || + lookahead == 3571 || + (3585 <= lookahead && lookahead <= 3642) || + (3648 <= lookahead && lookahead <= 3662) || + (3664 <= lookahead && lookahead <= 3673) || + lookahead == 3713 || + lookahead == 3714 || + lookahead == 3716 || + (3718 <= lookahead && lookahead <= 3722) || + (3724 <= lookahead && lookahead <= 3747) || + lookahead == 3749 || + (3751 <= lookahead && lookahead <= 3773) || + (3776 <= lookahead && lookahead <= 3780) || + lookahead == 3782 || + (3784 <= lookahead && lookahead <= 3789) || + (3792 <= lookahead && lookahead <= 3801) || + (3804 <= lookahead && lookahead <= 3807) || + lookahead == 3840 || + lookahead == 3864 || + lookahead == 3865 || + (3872 <= lookahead && lookahead <= 3881) || + lookahead == 3893 || + lookahead == 3895 || + lookahead == 3897 || + (3902 <= lookahead && lookahead <= 3911) || + (3913 <= lookahead && lookahead <= 3948) || + (3953 <= lookahead && lookahead <= 3972) || + (3974 <= lookahead && lookahead <= 3991) || + (3993 <= lookahead && lookahead <= 4028) || + lookahead == 4038 || + (4096 <= lookahead && lookahead <= 4169) || + (4176 <= lookahead && lookahead <= 4253) || + (4256 <= lookahead && lookahead <= 4293) || + lookahead == 4295 || + lookahead == 4301 || + (4304 <= lookahead && lookahead <= 4346) || + (4348 <= lookahead && lookahead <= 4680) || + (4682 <= lookahead && lookahead <= 4685) || + (4688 <= lookahead && lookahead <= 4694) || + lookahead == 4696 || + (4698 <= lookahead && lookahead <= 4701) || + (4704 <= lookahead && lookahead <= 4744) || + (4746 <= lookahead && lookahead <= 4749) || + (4752 <= lookahead && lookahead <= 4784) || + (4786 <= lookahead && lookahead <= 4789) || + (4792 <= lookahead && lookahead <= 4798) || + lookahead == 4800 || + (4802 <= lookahead && lookahead <= 4805) || + (4808 <= lookahead && lookahead <= 4822) || + (4824 <= lookahead && lookahead <= 4880) || + (4882 <= lookahead && lookahead <= 4885) || + (4888 <= lookahead && lookahead <= 4954) || + (4957 <= lookahead && lookahead <= 4959) || + (4969 <= lookahead && lookahead <= 4977) || + (4992 <= lookahead && lookahead <= 5007) || + (5024 <= lookahead && lookahead <= 5109) || + (5112 <= lookahead && lookahead <= 5117) || + (5121 <= lookahead && lookahead <= 5740) || + (5743 <= lookahead && lookahead <= 5759) || + (5761 <= lookahead && lookahead <= 5786) || + (5792 <= lookahead && lookahead <= 5866) || + (5870 <= lookahead && lookahead <= 5880) || + (5888 <= lookahead && lookahead <= 5900) || + (5902 <= lookahead && lookahead <= 5908) || + (5920 <= lookahead && lookahead <= 5940) || + (5952 <= lookahead && lookahead <= 5971) || + (5984 <= lookahead && lookahead <= 5996) || + (5998 <= lookahead && lookahead <= 6000) || + lookahead == 6002 || + lookahead == 6003 || + (6016 <= lookahead && lookahead <= 6099) || + lookahead == 6103 || + lookahead == 6108 || + lookahead == 6109 || + (6112 <= lookahead && lookahead <= 6121) || + (6155 <= lookahead && lookahead <= 6157) || + (6160 <= lookahead && lookahead <= 6169) || + (6176 <= lookahead && lookahead <= 6264) || + (6272 <= lookahead && lookahead <= 6314) || + (6320 <= lookahead && lookahead <= 6389) || + (6400 <= lookahead && lookahead <= 6430) || + (6432 <= lookahead && lookahead <= 6443) || + (6448 <= lookahead && lookahead <= 6459) || + (6470 <= lookahead && lookahead <= 6509) || + (6512 <= lookahead && lookahead <= 6516) || + (6528 <= lookahead && lookahead <= 6571) || + (6576 <= lookahead && lookahead <= 6601) || + (6608 <= lookahead && lookahead <= 6618) || + (6656 <= lookahead && lookahead <= 6683) || + (6688 <= lookahead && lookahead <= 6750) || + (6752 <= lookahead && lookahead <= 6780) || + (6783 <= lookahead && lookahead <= 6793) || + (6800 <= lookahead && lookahead <= 6809) || + lookahead == 6823 || + (6832 <= lookahead && lookahead <= 6845) || + lookahead == 6847 || + lookahead == 6848 || + (6912 <= lookahead && lookahead <= 6987) || + (6992 <= lookahead && lookahead <= 7001) || + (7019 <= lookahead && lookahead <= 7027) || + (7040 <= lookahead && lookahead <= 7155) || + (7168 <= lookahead && lookahead <= 7223) || + (7232 <= lookahead && lookahead <= 7241) || + (7245 <= lookahead && lookahead <= 7293) || + (7296 <= lookahead && lookahead <= 7304) || + (7312 <= lookahead && lookahead <= 7354) || + (7357 <= lookahead && lookahead <= 7359) || + (7376 <= lookahead && lookahead <= 7378) || + (7380 <= lookahead && lookahead <= 7418) || + (7424 <= lookahead && lookahead <= 7673) || + (7675 <= lookahead && lookahead <= 7957) || + (7960 <= lookahead && lookahead <= 7965) || + (7968 <= lookahead && lookahead <= 8005) || + (8008 <= lookahead && lookahead <= 8013) || + (8016 <= lookahead && lookahead <= 8023) || + lookahead == 8025 || + lookahead == 8027 || + lookahead == 8029 || + (8031 <= lookahead && lookahead <= 8061) || + (8064 <= lookahead && lookahead <= 8116) || + (8118 <= lookahead && lookahead <= 8124) || + lookahead == 8126 || + (8130 <= lookahead && lookahead <= 8132) || + (8134 <= lookahead && lookahead <= 8140) || + (8144 <= lookahead && lookahead <= 8147) || + (8150 <= lookahead && lookahead <= 8155) || + (8160 <= lookahead && lookahead <= 8172) || + (8178 <= lookahead && lookahead <= 8180) || + (8182 <= lookahead && lookahead <= 8188) || + lookahead == 8255 || + lookahead == 8256 || + lookahead == 8276 || + lookahead == 8305 || + lookahead == 8319 || + (8336 <= lookahead && lookahead <= 8348) || + (8400 <= lookahead && lookahead <= 8412) || + lookahead == 8417 || + (8421 <= lookahead && lookahead <= 8432) || + lookahead == 8450 || + lookahead == 8455 || + (8458 <= lookahead && lookahead <= 8467) || + lookahead == 8469 || + (8472 <= lookahead && lookahead <= 8477) || + lookahead == 8484 || + lookahead == 8486 || + lookahead == 8488 || + (8490 <= lookahead && lookahead <= 8505) || + (8508 <= lookahead && lookahead <= 8511) || + (8517 <= lookahead && lookahead <= 8521) || + lookahead == 8526 || + (8544 <= lookahead && lookahead <= 8584) || + (11264 <= lookahead && lookahead <= 11310) || + (11312 <= lookahead && lookahead <= 11358) || + (11360 <= lookahead && lookahead <= 11492) || + (11499 <= lookahead && lookahead <= 11507) || + (11520 <= lookahead && lookahead <= 11557) || + lookahead == 11559 || + lookahead == 11565 || + (11568 <= lookahead && lookahead <= 11623) || + lookahead == 11631 || + (11647 <= lookahead && lookahead <= 11670) || + (11680 <= lookahead && lookahead <= 11686) || + (11688 <= lookahead && lookahead <= 11694) || + (11696 <= lookahead && lookahead <= 11702) || + (11704 <= lookahead && lookahead <= 11710) || + (11712 <= lookahead && lookahead <= 11718) || + (11720 <= lookahead && lookahead <= 11726) || + (11728 <= lookahead && lookahead <= 11734) || + (11736 <= lookahead && lookahead <= 11742) || + (11744 <= lookahead && lookahead <= 11775) || + (12293 <= lookahead && lookahead <= 12295) || + (12321 <= lookahead && lookahead <= 12335) || + (12337 <= lookahead && lookahead <= 12341) || + (12344 <= lookahead && lookahead <= 12348) || + (12353 <= lookahead && lookahead <= 12438) || + lookahead == 12441 || + lookahead == 12442 || + (12445 <= lookahead && lookahead <= 12447) || + (12449 <= lookahead && lookahead <= 12538) || + (12540 <= lookahead && lookahead <= 12543) || + (12549 <= lookahead && lookahead <= 12591) || + (12593 <= lookahead && lookahead <= 12686) || + (12704 <= lookahead && lookahead <= 12735) || + (12784 <= lookahead && lookahead <= 12799) || + (13312 <= lookahead && lookahead <= 19903) || + (19968 <= lookahead && lookahead <= 40956) || + (40960 <= lookahead && lookahead <= 42124) || + (42192 <= lookahead && lookahead <= 42237) || + (42240 <= lookahead && lookahead <= 42508) || + (42512 <= lookahead && lookahead <= 42539) || + (42560 <= lookahead && lookahead <= 42607) || + (42612 <= lookahead && lookahead <= 42621) || + (42623 <= lookahead && lookahead <= 42737) || + (42775 <= lookahead && lookahead <= 42783) || + (42786 <= lookahead && lookahead <= 42888) || + (42891 <= lookahead && lookahead <= 42943) || + (42946 <= lookahead && lookahead <= 42954) || + (42997 <= lookahead && lookahead <= 43047) || + lookahead == 43052 || + (43072 <= lookahead && lookahead <= 43123) || + (43136 <= lookahead && lookahead <= 43205) || + (43216 <= lookahead && lookahead <= 43225) || + (43232 <= lookahead && lookahead <= 43255) || + lookahead == 43259 || + (43261 <= lookahead && lookahead <= 43309) || + (43312 <= lookahead && lookahead <= 43347) || + (43360 <= lookahead && lookahead <= 43388) || + (43392 <= lookahead && lookahead <= 43456) || + (43471 <= lookahead && lookahead <= 43481) || + (43488 <= lookahead && lookahead <= 43518) || + (43520 <= lookahead && lookahead <= 43574) || + (43584 <= lookahead && lookahead <= 43597) || + (43600 <= lookahead && lookahead <= 43609) || + (43616 <= lookahead && lookahead <= 43638) || + (43642 <= lookahead && lookahead <= 43714) || + (43739 <= lookahead && lookahead <= 43741) || + (43744 <= lookahead && lookahead <= 43759) || + (43762 <= lookahead && lookahead <= 43766) || + (43777 <= lookahead && lookahead <= 43782) || + (43785 <= lookahead && lookahead <= 43790) || + (43793 <= lookahead && lookahead <= 43798) || + (43808 <= lookahead && lookahead <= 43814) || + (43816 <= lookahead && lookahead <= 43822) || + (43824 <= lookahead && lookahead <= 43866) || + (43868 <= lookahead && lookahead <= 43881) || + (43888 <= lookahead && lookahead <= 44010) || + lookahead == 44012 || + lookahead == 44013 || + (44016 <= lookahead && lookahead <= 44025) || + (44032 <= lookahead && lookahead <= 55203) || + (55216 <= lookahead && lookahead <= 55238) || + (55243 <= lookahead && lookahead <= 55291) || + (63744 <= lookahead && lookahead <= 64109) || + (64112 <= lookahead && lookahead <= 64217) || + (64256 <= lookahead && lookahead <= 64262) || + (64275 <= lookahead && lookahead <= 64279) || + (64285 <= lookahead && lookahead <= 64296) || + (64298 <= lookahead && lookahead <= 64310) || + (64312 <= lookahead && lookahead <= 64316) || + lookahead == 64318 || + lookahead == 64320 || + lookahead == 64321 || + lookahead == 64323 || + lookahead == 64324 || + (64326 <= lookahead && lookahead <= 64433) || + (64467 <= lookahead && lookahead <= 64605) || + (64612 <= lookahead && lookahead <= 64829) || + (64848 <= lookahead && lookahead <= 64911) || + (64914 <= lookahead && lookahead <= 64967) || + (65008 <= lookahead && lookahead <= 65017) || + (65024 <= lookahead && lookahead <= 65039) || + (65056 <= lookahead && lookahead <= 65071) || + lookahead == 65075 || + lookahead == 65076 || + (65101 <= lookahead && lookahead <= 65103) || + lookahead == 65137 || + lookahead == 65139 || + lookahead == 65143 || + lookahead == 65145 || + lookahead == 65147 || + lookahead == 65149 || + (65151 <= lookahead && lookahead <= 65276) || + (65296 <= lookahead && lookahead <= 65305) || + (65313 <= lookahead && lookahead <= 65338) || + lookahead == 65343 || + (65345 <= lookahead && lookahead <= 65370) || + (65382 <= lookahead && lookahead <= 65470) || + (65474 <= lookahead && lookahead <= 65479) || + (65482 <= lookahead && lookahead <= 65487) || + (65490 <= lookahead && lookahead <= 65495) || + (65498 <= lookahead && lookahead <= 65500) || + (65536 <= lookahead && lookahead <= 65547) || + (65549 <= lookahead && lookahead <= 65574) || + (65576 <= lookahead && lookahead <= 65594) || + lookahead == 65596 || + lookahead == 65597 || + (65599 <= lookahead && lookahead <= 65613) || + (65616 <= lookahead && lookahead <= 65629) || + (65664 <= lookahead && lookahead <= 65786) || + (65856 <= lookahead && lookahead <= 65908) || + lookahead == 66045 || + (66176 <= lookahead && lookahead <= 66204) || + (66208 <= lookahead && lookahead <= 66256) || + lookahead == 66272 || + (66304 <= lookahead && lookahead <= 66335) || + (66349 <= lookahead && lookahead <= 66378) || + (66384 <= lookahead && lookahead <= 66426) || + (66432 <= lookahead && lookahead <= 66461) || + (66464 <= lookahead && lookahead <= 66499) || + (66504 <= lookahead && lookahead <= 66511) || + (66513 <= lookahead && lookahead <= 66517) || + (66560 <= lookahead && lookahead <= 66717) || + (66720 <= lookahead && lookahead <= 66729) || + (66736 <= lookahead && lookahead <= 66771) || + (66776 <= lookahead && lookahead <= 66811) || + (66816 <= lookahead && lookahead <= 66855) || + (66864 <= lookahead && lookahead <= 66915) || + (67072 <= lookahead && lookahead <= 67382) || + (67392 <= lookahead && lookahead <= 67413) || + (67424 <= lookahead && lookahead <= 67431) || + (67584 <= lookahead && lookahead <= 67589) || + lookahead == 67592 || + (67594 <= lookahead && lookahead <= 67637) || + lookahead == 67639 || + lookahead == 67640 || + lookahead == 67644 || + (67647 <= lookahead && lookahead <= 67669) || + (67680 <= lookahead && lookahead <= 67702) || + (67712 <= lookahead && lookahead <= 67742) || + (67808 <= lookahead && lookahead <= 67826) || + lookahead == 67828 || + lookahead == 67829 || + (67840 <= lookahead && lookahead <= 67861) || + (67872 <= lookahead && lookahead <= 67897) || + (67968 <= lookahead && lookahead <= 68023) || + lookahead == 68030 || + lookahead == 68031 || + (68096 <= lookahead && lookahead <= 68099) || + lookahead == 68101 || + lookahead == 68102 || + (68108 <= lookahead && lookahead <= 68115) || + (68117 <= lookahead && lookahead <= 68119) || + (68121 <= lookahead && lookahead <= 68149) || + (68152 <= lookahead && lookahead <= 68154) || + lookahead == 68159 || + (68192 <= lookahead && lookahead <= 68220) || + (68224 <= lookahead && lookahead <= 68252) || + (68288 <= lookahead && lookahead <= 68295) || + (68297 <= lookahead && lookahead <= 68326) || + (68352 <= lookahead && lookahead <= 68405) || + (68416 <= lookahead && lookahead <= 68437) || + (68448 <= lookahead && lookahead <= 68466) || + (68480 <= lookahead && lookahead <= 68497) || + (68608 <= lookahead && lookahead <= 68680) || + (68736 <= lookahead && lookahead <= 68786) || + (68800 <= lookahead && lookahead <= 68850) || + (68864 <= lookahead && lookahead <= 68903) || + (68912 <= lookahead && lookahead <= 68921) || + (69248 <= lookahead && lookahead <= 69289) || + lookahead == 69291 || + lookahead == 69292 || + lookahead == 69296 || + lookahead == 69297 || + (69376 <= lookahead && lookahead <= 69404) || + lookahead == 69415 || + (69424 <= lookahead && lookahead <= 69456) || + (69552 <= lookahead && lookahead <= 69572) || + (69600 <= lookahead && lookahead <= 69622) || + (69632 <= lookahead && lookahead <= 69702) || + (69734 <= lookahead && lookahead <= 69743) || + (69759 <= lookahead && lookahead <= 69818) || + (69840 <= lookahead && lookahead <= 69864) || + (69872 <= lookahead && lookahead <= 69881) || + (69888 <= lookahead && lookahead <= 69940) || + (69942 <= lookahead && lookahead <= 69951) || + (69956 <= lookahead && lookahead <= 69959) || + (69968 <= lookahead && lookahead <= 70003) || + lookahead == 70006 || + (70016 <= lookahead && lookahead <= 70084) || + (70089 <= lookahead && lookahead <= 70092) || + (70094 <= lookahead && lookahead <= 70106) || + lookahead == 70108 || + (70144 <= lookahead && lookahead <= 70161) || + (70163 <= lookahead && lookahead <= 70199) || + lookahead == 70206 || + (70272 <= lookahead && lookahead <= 70278) || + lookahead == 70280 || + (70282 <= lookahead && lookahead <= 70285) || + (70287 <= lookahead && lookahead <= 70301) || + (70303 <= lookahead && lookahead <= 70312) || + (70320 <= lookahead && lookahead <= 70378) || + (70384 <= lookahead && lookahead <= 70393) || + (70400 <= lookahead && lookahead <= 70403) || + (70405 <= lookahead && lookahead <= 70412) || + lookahead == 70415 || + lookahead == 70416 || + (70419 <= lookahead && lookahead <= 70440) || + (70442 <= lookahead && lookahead <= 70448) || + lookahead == 70450 || + lookahead == 70451 || + (70453 <= lookahead && lookahead <= 70457) || + (70459 <= lookahead && lookahead <= 70468) || + lookahead == 70471 || + lookahead == 70472 || + (70475 <= lookahead && lookahead <= 70477) || + lookahead == 70480 || + lookahead == 70487 || + (70493 <= lookahead && lookahead <= 70499) || + (70502 <= lookahead && lookahead <= 70508) || + (70512 <= lookahead && lookahead <= 70516) || + (70656 <= lookahead && lookahead <= 70730) || + (70736 <= lookahead && lookahead <= 70745) || + (70750 <= lookahead && lookahead <= 70753) || + (70784 <= lookahead && lookahead <= 70853) || + lookahead == 70855 || + (70864 <= lookahead && lookahead <= 70873) || + (71040 <= lookahead && lookahead <= 71093) || + (71096 <= lookahead && lookahead <= 71104) || + (71128 <= lookahead && lookahead <= 71133) || + (71168 <= lookahead && lookahead <= 71232) || + lookahead == 71236 || + (71248 <= lookahead && lookahead <= 71257) || + (71296 <= lookahead && lookahead <= 71352) || + (71360 <= lookahead && lookahead <= 71369) || + (71424 <= lookahead && lookahead <= 71450) || + (71453 <= lookahead && lookahead <= 71467) || + (71472 <= lookahead && lookahead <= 71481) || + (71680 <= lookahead && lookahead <= 71738) || + (71840 <= lookahead && lookahead <= 71913) || + (71935 <= lookahead && lookahead <= 71942) || + lookahead == 71945 || + (71948 <= lookahead && lookahead <= 71955) || + lookahead == 71957 || + lookahead == 71958 || + (71960 <= lookahead && lookahead <= 71989) || + lookahead == 71991 || + lookahead == 71992 || + (71995 <= lookahead && lookahead <= 72003) || + (72016 <= lookahead && lookahead <= 72025) || + (72096 <= lookahead && lookahead <= 72103) || + (72106 <= lookahead && lookahead <= 72151) || + (72154 <= lookahead && lookahead <= 72161) || + lookahead == 72163 || + lookahead == 72164 || + (72192 <= lookahead && lookahead <= 72254) || + lookahead == 72263 || + (72272 <= lookahead && lookahead <= 72345) || + lookahead == 72349 || + (72384 <= lookahead && lookahead <= 72440) || + (72704 <= lookahead && lookahead <= 72712) || + (72714 <= lookahead && lookahead <= 72758) || + (72760 <= lookahead && lookahead <= 72768) || + (72784 <= lookahead && lookahead <= 72793) || + (72818 <= lookahead && lookahead <= 72847) || + (72850 <= lookahead && lookahead <= 72871) || + (72873 <= lookahead && lookahead <= 72886) || + (72960 <= lookahead && lookahead <= 72966) || + lookahead == 72968 || + lookahead == 72969 || + (72971 <= lookahead && lookahead <= 73014) || + lookahead == 73018 || + lookahead == 73020 || + lookahead == 73021 || + (73023 <= lookahead && lookahead <= 73031) || + (73040 <= lookahead && lookahead <= 73049) || + (73056 <= lookahead && lookahead <= 73061) || + lookahead == 73063 || + lookahead == 73064 || + (73066 <= lookahead && lookahead <= 73102) || + lookahead == 73104 || + lookahead == 73105 || + (73107 <= lookahead && lookahead <= 73112) || + (73120 <= lookahead && lookahead <= 73129) || + (73440 <= lookahead && lookahead <= 73462) || + lookahead == 73648 || + (73728 <= lookahead && lookahead <= 74649) || + (74752 <= lookahead && lookahead <= 74862) || + (74880 <= lookahead && lookahead <= 75075) || + (77824 <= lookahead && lookahead <= 78894) || + (82944 <= lookahead && lookahead <= 83526) || + (92160 <= lookahead && lookahead <= 92728) || + (92736 <= lookahead && lookahead <= 92766) || + (92768 <= lookahead && lookahead <= 92777) || + (92880 <= lookahead && lookahead <= 92909) || + (92912 <= lookahead && lookahead <= 92916) || + (92928 <= lookahead && lookahead <= 92982) || + (92992 <= lookahead && lookahead <= 92995) || + (93008 <= lookahead && lookahead <= 93017) || + (93027 <= lookahead && lookahead <= 93047) || + (93053 <= lookahead && lookahead <= 93071) || + (93760 <= lookahead && lookahead <= 93823) || + (93952 <= lookahead && lookahead <= 94026) || + (94031 <= lookahead && lookahead <= 94087) || + (94095 <= lookahead && lookahead <= 94111) || + lookahead == 94176 || + lookahead == 94177 || + lookahead == 94179 || + lookahead == 94180 || + lookahead == 94192 || + lookahead == 94193 || + (94208 <= lookahead && lookahead <= 100343) || + (100352 <= lookahead && lookahead <= 101589) || + (101632 <= lookahead && lookahead <= 101640) || + (110592 <= lookahead && lookahead <= 110878) || + (110928 <= lookahead && lookahead <= 110930) || + (110948 <= lookahead && lookahead <= 110951) || + (110960 <= lookahead && lookahead <= 111355) || + (113664 <= lookahead && lookahead <= 113770) || + (113776 <= lookahead && lookahead <= 113788) || + (113792 <= lookahead && lookahead <= 113800) || + (113808 <= lookahead && lookahead <= 113817) || + lookahead == 113821 || + lookahead == 113822 || + (119141 <= lookahead && lookahead <= 119145) || + (119149 <= lookahead && lookahead <= 119154) || + (119163 <= lookahead && lookahead <= 119170) || + (119173 <= lookahead && lookahead <= 119179) || + (119210 <= lookahead && lookahead <= 119213) || + (119362 <= lookahead && lookahead <= 119364) || + (119808 <= lookahead && lookahead <= 119892) || + (119894 <= lookahead && lookahead <= 119964) || + lookahead == 119966 || + lookahead == 119967 || + lookahead == 119970 || + lookahead == 119973 || + lookahead == 119974 || + (119977 <= lookahead && lookahead <= 119980) || + (119982 <= lookahead && lookahead <= 119993) || + lookahead == 119995 || + (119997 <= lookahead && lookahead <= 120003) || + (120005 <= lookahead && lookahead <= 120069) || + (120071 <= lookahead && lookahead <= 120074) || + (120077 <= lookahead && lookahead <= 120084) || + (120086 <= lookahead && lookahead <= 120092) || + (120094 <= lookahead && lookahead <= 120121) || + (120123 <= lookahead && lookahead <= 120126) || + (120128 <= lookahead && lookahead <= 120132) || + lookahead == 120134 || + (120138 <= lookahead && lookahead <= 120144) || + (120146 <= lookahead && lookahead <= 120485) || + (120488 <= lookahead && lookahead <= 120512) || + (120514 <= lookahead && lookahead <= 120538) || + (120540 <= lookahead && lookahead <= 120570) || + (120572 <= lookahead && lookahead <= 120596) || + (120598 <= lookahead && lookahead <= 120628) || + (120630 <= lookahead && lookahead <= 120654) || + (120656 <= lookahead && lookahead <= 120686) || + (120688 <= lookahead && lookahead <= 120712) || + (120714 <= lookahead && lookahead <= 120744) || + (120746 <= lookahead && lookahead <= 120770) || + (120772 <= lookahead && lookahead <= 120779) || + (120782 <= lookahead && lookahead <= 120831) || + (121344 <= lookahead && lookahead <= 121398) || + (121403 <= lookahead && lookahead <= 121452) || + lookahead == 121461 || + lookahead == 121476 || + (121499 <= lookahead && lookahead <= 121503) || + (121505 <= lookahead && lookahead <= 121519) || + (122880 <= lookahead && lookahead <= 122886) || + (122888 <= lookahead && lookahead <= 122904) || + (122907 <= lookahead && lookahead <= 122913) || + lookahead == 122915 || + lookahead == 122916 || + (122918 <= lookahead && lookahead <= 122922) || + (123136 <= lookahead && lookahead <= 123180) || + (123184 <= lookahead && lookahead <= 123197) || + (123200 <= lookahead && lookahead <= 123209) || + lookahead == 123214 || + (123584 <= lookahead && lookahead <= 123641) || + (124928 <= lookahead && lookahead <= 125124) || + (125136 <= lookahead && lookahead <= 125142) || + (125184 <= lookahead && lookahead <= 125259) || + (125264 <= lookahead && lookahead <= 125273) || + (126464 <= lookahead && lookahead <= 126467) || + (126469 <= lookahead && lookahead <= 126495) || + lookahead == 126497 || + lookahead == 126498 || + lookahead == 126500 || + lookahead == 126503 || + (126505 <= lookahead && lookahead <= 126514) || + (126516 <= lookahead && lookahead <= 126519) || + lookahead == 126521 || + lookahead == 126523 || + lookahead == 126530 || + lookahead == 126535 || + lookahead == 126537 || + lookahead == 126539 || + (126541 <= lookahead && lookahead <= 126543) || + lookahead == 126545 || + lookahead == 126546 || + lookahead == 126548 || + lookahead == 126551 || + lookahead == 126553 || + lookahead == 126555 || + lookahead == 126557 || + lookahead == 126559 || + lookahead == 126561 || + lookahead == 126562 || + lookahead == 126564 || + (126567 <= lookahead && lookahead <= 126570) || + (126572 <= lookahead && lookahead <= 126578) || + (126580 <= lookahead && lookahead <= 126583) || + (126585 <= lookahead && lookahead <= 126588) || + lookahead == 126590 || + (126592 <= lookahead && lookahead <= 126601) || + (126603 <= lookahead && lookahead <= 126619) || + (126625 <= lookahead && lookahead <= 126627) || + (126629 <= lookahead && lookahead <= 126633) || + (126635 <= lookahead && lookahead <= 126651) || + (130032 <= lookahead && lookahead <= 130041) || + (131072 <= lookahead && lookahead <= 173789) || + (173824 <= lookahead && lookahead <= 177972) || + (177984 <= lookahead && lookahead <= 178205) || + (178208 <= lookahead && lookahead <= 183969) || + (183984 <= lookahead && lookahead <= 191456) || + (194560 <= lookahead && lookahead <= 195101) || + (196608 <= lookahead && lookahead <= 201546) || + (917760 <= lookahead && lookahead <= 917999)) ADVANCE(166); END_STATE(); case 83: ACCEPT_TOKEN(aux_sym__non_special_token_token1); @@ -10767,12 +8637,1607 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 156: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(163); - if (sym_identifier_character_set_6(lookahead)) ADVANCE(166); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 170 || + lookahead == 181 || + lookahead == 183 || + lookahead == 186 || + (192 <= lookahead && lookahead <= 214) || + (216 <= lookahead && lookahead <= 246) || + (248 <= lookahead && lookahead <= 705) || + (710 <= lookahead && lookahead <= 721) || + (736 <= lookahead && lookahead <= 740) || + lookahead == 748 || + lookahead == 750 || + (768 <= lookahead && lookahead <= 884) || + lookahead == 886 || + lookahead == 887 || + (891 <= lookahead && lookahead <= 893) || + lookahead == 895 || + (902 <= lookahead && lookahead <= 906) || + lookahead == 908 || + (910 <= lookahead && lookahead <= 929) || + (931 <= lookahead && lookahead <= 1013) || + (1015 <= lookahead && lookahead <= 1153) || + (1155 <= lookahead && lookahead <= 1159) || + (1162 <= lookahead && lookahead <= 1327) || + (1329 <= lookahead && lookahead <= 1366) || + lookahead == 1369 || + (1376 <= lookahead && lookahead <= 1416) || + (1425 <= lookahead && lookahead <= 1469) || + lookahead == 1471 || + lookahead == 1473 || + lookahead == 1474 || + lookahead == 1476 || + lookahead == 1477 || + lookahead == 1479 || + (1488 <= lookahead && lookahead <= 1514) || + (1519 <= lookahead && lookahead <= 1522) || + (1552 <= lookahead && lookahead <= 1562) || + (1568 <= lookahead && lookahead <= 1641) || + (1646 <= lookahead && lookahead <= 1747) || + (1749 <= lookahead && lookahead <= 1756) || + (1759 <= lookahead && lookahead <= 1768) || + (1770 <= lookahead && lookahead <= 1788) || + lookahead == 1791 || + (1808 <= lookahead && lookahead <= 1866) || + (1869 <= lookahead && lookahead <= 1969) || + (1984 <= lookahead && lookahead <= 2037) || + lookahead == 2042 || + lookahead == 2045 || + (2048 <= lookahead && lookahead <= 2093) || + (2112 <= lookahead && lookahead <= 2139) || + (2144 <= lookahead && lookahead <= 2154) || + (2208 <= lookahead && lookahead <= 2228) || + (2230 <= lookahead && lookahead <= 2247) || + (2259 <= lookahead && lookahead <= 2273) || + (2275 <= lookahead && lookahead <= 2403) || + (2406 <= lookahead && lookahead <= 2415) || + (2417 <= lookahead && lookahead <= 2435) || + (2437 <= lookahead && lookahead <= 2444) || + lookahead == 2447 || + lookahead == 2448 || + (2451 <= lookahead && lookahead <= 2472) || + (2474 <= lookahead && lookahead <= 2480) || + lookahead == 2482 || + (2486 <= lookahead && lookahead <= 2489) || + (2492 <= lookahead && lookahead <= 2500) || + lookahead == 2503 || + lookahead == 2504 || + (2507 <= lookahead && lookahead <= 2510) || + lookahead == 2519 || + lookahead == 2524 || + lookahead == 2525 || + (2527 <= lookahead && lookahead <= 2531) || + (2534 <= lookahead && lookahead <= 2545) || + lookahead == 2556 || + lookahead == 2558 || + (2561 <= lookahead && lookahead <= 2563) || + (2565 <= lookahead && lookahead <= 2570) || + lookahead == 2575 || + lookahead == 2576 || + (2579 <= lookahead && lookahead <= 2600) || + (2602 <= lookahead && lookahead <= 2608) || + lookahead == 2610 || + lookahead == 2611 || + lookahead == 2613 || + lookahead == 2614 || + lookahead == 2616 || + lookahead == 2617 || + lookahead == 2620 || + (2622 <= lookahead && lookahead <= 2626) || + lookahead == 2631 || + lookahead == 2632 || + (2635 <= lookahead && lookahead <= 2637) || + lookahead == 2641 || + (2649 <= lookahead && lookahead <= 2652) || + lookahead == 2654 || + (2662 <= lookahead && lookahead <= 2677) || + (2689 <= lookahead && lookahead <= 2691) || + (2693 <= lookahead && lookahead <= 2701) || + (2703 <= lookahead && lookahead <= 2705) || + (2707 <= lookahead && lookahead <= 2728) || + (2730 <= lookahead && lookahead <= 2736) || + lookahead == 2738 || + lookahead == 2739 || + (2741 <= lookahead && lookahead <= 2745) || + (2748 <= lookahead && lookahead <= 2757) || + (2759 <= lookahead && lookahead <= 2761) || + (2763 <= lookahead && lookahead <= 2765) || + lookahead == 2768 || + (2784 <= lookahead && lookahead <= 2787) || + (2790 <= lookahead && lookahead <= 2799) || + (2809 <= lookahead && lookahead <= 2815) || + (2817 <= lookahead && lookahead <= 2819) || + (2821 <= lookahead && lookahead <= 2828) || + lookahead == 2831 || + lookahead == 2832 || + (2835 <= lookahead && lookahead <= 2856) || + (2858 <= lookahead && lookahead <= 2864) || + lookahead == 2866 || + lookahead == 2867 || + (2869 <= lookahead && lookahead <= 2873) || + (2876 <= lookahead && lookahead <= 2884) || + lookahead == 2887 || + lookahead == 2888 || + (2891 <= lookahead && lookahead <= 2893) || + (2901 <= lookahead && lookahead <= 2903) || + lookahead == 2908 || + lookahead == 2909 || + (2911 <= lookahead && lookahead <= 2915) || + (2918 <= lookahead && lookahead <= 2927) || + lookahead == 2929 || + lookahead == 2946 || + lookahead == 2947 || + (2949 <= lookahead && lookahead <= 2954) || + (2958 <= lookahead && lookahead <= 2960) || + (2962 <= lookahead && lookahead <= 2965) || + lookahead == 2969 || + lookahead == 2970 || + lookahead == 2972 || + lookahead == 2974 || + lookahead == 2975 || + lookahead == 2979 || + lookahead == 2980 || + (2984 <= lookahead && lookahead <= 2986) || + (2990 <= lookahead && lookahead <= 3001) || + (3006 <= lookahead && lookahead <= 3010) || + (3014 <= lookahead && lookahead <= 3016) || + (3018 <= lookahead && lookahead <= 3021) || + lookahead == 3024 || + lookahead == 3031 || + (3046 <= lookahead && lookahead <= 3055) || + (3072 <= lookahead && lookahead <= 3084) || + (3086 <= lookahead && lookahead <= 3088) || + (3090 <= lookahead && lookahead <= 3112) || + (3114 <= lookahead && lookahead <= 3129) || + (3133 <= lookahead && lookahead <= 3140) || + (3142 <= lookahead && lookahead <= 3144) || + (3146 <= lookahead && lookahead <= 3149) || + lookahead == 3157 || + lookahead == 3158 || + (3160 <= lookahead && lookahead <= 3162) || + (3168 <= lookahead && lookahead <= 3171) || + (3174 <= lookahead && lookahead <= 3183) || + (3200 <= lookahead && lookahead <= 3203) || + (3205 <= lookahead && lookahead <= 3212) || + (3214 <= lookahead && lookahead <= 3216) || + (3218 <= lookahead && lookahead <= 3240) || + (3242 <= lookahead && lookahead <= 3251) || + (3253 <= lookahead && lookahead <= 3257) || + (3260 <= lookahead && lookahead <= 3268) || + (3270 <= lookahead && lookahead <= 3272) || + (3274 <= lookahead && lookahead <= 3277) || + lookahead == 3285 || + lookahead == 3286 || + lookahead == 3294 || + (3296 <= lookahead && lookahead <= 3299) || + (3302 <= lookahead && lookahead <= 3311) || + lookahead == 3313 || + lookahead == 3314 || + (3328 <= lookahead && lookahead <= 3340) || + (3342 <= lookahead && lookahead <= 3344) || + (3346 <= lookahead && lookahead <= 3396) || + (3398 <= lookahead && lookahead <= 3400) || + (3402 <= lookahead && lookahead <= 3406) || + (3412 <= lookahead && lookahead <= 3415) || + (3423 <= lookahead && lookahead <= 3427) || + (3430 <= lookahead && lookahead <= 3439) || + (3450 <= lookahead && lookahead <= 3455) || + (3457 <= lookahead && lookahead <= 3459) || + (3461 <= lookahead && lookahead <= 3478) || + (3482 <= lookahead && lookahead <= 3505) || + (3507 <= lookahead && lookahead <= 3515) || + lookahead == 3517 || + (3520 <= lookahead && lookahead <= 3526) || + lookahead == 3530 || + (3535 <= lookahead && lookahead <= 3540) || + lookahead == 3542 || + (3544 <= lookahead && lookahead <= 3551) || + (3558 <= lookahead && lookahead <= 3567) || + lookahead == 3570 || + lookahead == 3571 || + (3585 <= lookahead && lookahead <= 3642) || + (3648 <= lookahead && lookahead <= 3662) || + (3664 <= lookahead && lookahead <= 3673) || + lookahead == 3713 || + lookahead == 3714 || + lookahead == 3716 || + (3718 <= lookahead && lookahead <= 3722) || + (3724 <= lookahead && lookahead <= 3747) || + lookahead == 3749 || + (3751 <= lookahead && lookahead <= 3773) || + (3776 <= lookahead && lookahead <= 3780) || + lookahead == 3782 || + (3784 <= lookahead && lookahead <= 3789) || + (3792 <= lookahead && lookahead <= 3801) || + (3804 <= lookahead && lookahead <= 3807) || + lookahead == 3840 || + lookahead == 3864 || + lookahead == 3865 || + (3872 <= lookahead && lookahead <= 3881) || + lookahead == 3893 || + lookahead == 3895 || + lookahead == 3897 || + (3902 <= lookahead && lookahead <= 3911) || + (3913 <= lookahead && lookahead <= 3948) || + (3953 <= lookahead && lookahead <= 3972) || + (3974 <= lookahead && lookahead <= 3991) || + (3993 <= lookahead && lookahead <= 4028) || + lookahead == 4038 || + (4096 <= lookahead && lookahead <= 4169) || + (4176 <= lookahead && lookahead <= 4253) || + (4256 <= lookahead && lookahead <= 4293) || + lookahead == 4295 || + lookahead == 4301 || + (4304 <= lookahead && lookahead <= 4346) || + (4348 <= lookahead && lookahead <= 4680) || + (4682 <= lookahead && lookahead <= 4685) || + (4688 <= lookahead && lookahead <= 4694) || + lookahead == 4696 || + (4698 <= lookahead && lookahead <= 4701) || + (4704 <= lookahead && lookahead <= 4744) || + (4746 <= lookahead && lookahead <= 4749) || + (4752 <= lookahead && lookahead <= 4784) || + (4786 <= lookahead && lookahead <= 4789) || + (4792 <= lookahead && lookahead <= 4798) || + lookahead == 4800 || + (4802 <= lookahead && lookahead <= 4805) || + (4808 <= lookahead && lookahead <= 4822) || + (4824 <= lookahead && lookahead <= 4880) || + (4882 <= lookahead && lookahead <= 4885) || + (4888 <= lookahead && lookahead <= 4954) || + (4957 <= lookahead && lookahead <= 4959) || + (4969 <= lookahead && lookahead <= 4977) || + (4992 <= lookahead && lookahead <= 5007) || + (5024 <= lookahead && lookahead <= 5109) || + (5112 <= lookahead && lookahead <= 5117) || + (5121 <= lookahead && lookahead <= 5740) || + (5743 <= lookahead && lookahead <= 5759) || + (5761 <= lookahead && lookahead <= 5786) || + (5792 <= lookahead && lookahead <= 5866) || + (5870 <= lookahead && lookahead <= 5880) || + (5888 <= lookahead && lookahead <= 5900) || + (5902 <= lookahead && lookahead <= 5908) || + (5920 <= lookahead && lookahead <= 5940) || + (5952 <= lookahead && lookahead <= 5971) || + (5984 <= lookahead && lookahead <= 5996) || + (5998 <= lookahead && lookahead <= 6000) || + lookahead == 6002 || + lookahead == 6003 || + (6016 <= lookahead && lookahead <= 6099) || + lookahead == 6103 || + lookahead == 6108 || + lookahead == 6109 || + (6112 <= lookahead && lookahead <= 6121) || + (6155 <= lookahead && lookahead <= 6157) || + (6160 <= lookahead && lookahead <= 6169) || + (6176 <= lookahead && lookahead <= 6264) || + (6272 <= lookahead && lookahead <= 6314) || + (6320 <= lookahead && lookahead <= 6389) || + (6400 <= lookahead && lookahead <= 6430) || + (6432 <= lookahead && lookahead <= 6443) || + (6448 <= lookahead && lookahead <= 6459) || + (6470 <= lookahead && lookahead <= 6509) || + (6512 <= lookahead && lookahead <= 6516) || + (6528 <= lookahead && lookahead <= 6571) || + (6576 <= lookahead && lookahead <= 6601) || + (6608 <= lookahead && lookahead <= 6618) || + (6656 <= lookahead && lookahead <= 6683) || + (6688 <= lookahead && lookahead <= 6750) || + (6752 <= lookahead && lookahead <= 6780) || + (6783 <= lookahead && lookahead <= 6793) || + (6800 <= lookahead && lookahead <= 6809) || + lookahead == 6823 || + (6832 <= lookahead && lookahead <= 6845) || + lookahead == 6847 || + lookahead == 6848 || + (6912 <= lookahead && lookahead <= 6987) || + (6992 <= lookahead && lookahead <= 7001) || + (7019 <= lookahead && lookahead <= 7027) || + (7040 <= lookahead && lookahead <= 7155) || + (7168 <= lookahead && lookahead <= 7223) || + (7232 <= lookahead && lookahead <= 7241) || + (7245 <= lookahead && lookahead <= 7293) || + (7296 <= lookahead && lookahead <= 7304) || + (7312 <= lookahead && lookahead <= 7354) || + (7357 <= lookahead && lookahead <= 7359) || + (7376 <= lookahead && lookahead <= 7378) || + (7380 <= lookahead && lookahead <= 7418) || + (7424 <= lookahead && lookahead <= 7673) || + (7675 <= lookahead && lookahead <= 7957) || + (7960 <= lookahead && lookahead <= 7965) || + (7968 <= lookahead && lookahead <= 8005) || + (8008 <= lookahead && lookahead <= 8013) || + (8016 <= lookahead && lookahead <= 8023) || + lookahead == 8025 || + lookahead == 8027 || + lookahead == 8029 || + (8031 <= lookahead && lookahead <= 8061) || + (8064 <= lookahead && lookahead <= 8116) || + (8118 <= lookahead && lookahead <= 8124) || + lookahead == 8126 || + (8130 <= lookahead && lookahead <= 8132) || + (8134 <= lookahead && lookahead <= 8140) || + (8144 <= lookahead && lookahead <= 8147) || + (8150 <= lookahead && lookahead <= 8155) || + (8160 <= lookahead && lookahead <= 8172) || + (8178 <= lookahead && lookahead <= 8180) || + (8182 <= lookahead && lookahead <= 8188) || + lookahead == 8255 || + lookahead == 8256 || + lookahead == 8276 || + lookahead == 8305 || + lookahead == 8319 || + (8336 <= lookahead && lookahead <= 8348) || + (8400 <= lookahead && lookahead <= 8412) || + lookahead == 8417 || + (8421 <= lookahead && lookahead <= 8432) || + lookahead == 8450 || + lookahead == 8455 || + (8458 <= lookahead && lookahead <= 8467) || + lookahead == 8469 || + (8472 <= lookahead && lookahead <= 8477) || + lookahead == 8484 || + lookahead == 8486 || + lookahead == 8488 || + (8490 <= lookahead && lookahead <= 8505) || + (8508 <= lookahead && lookahead <= 8511) || + (8517 <= lookahead && lookahead <= 8521) || + lookahead == 8526 || + (8544 <= lookahead && lookahead <= 8584) || + (11264 <= lookahead && lookahead <= 11310) || + (11312 <= lookahead && lookahead <= 11358) || + (11360 <= lookahead && lookahead <= 11492) || + (11499 <= lookahead && lookahead <= 11507) || + (11520 <= lookahead && lookahead <= 11557) || + lookahead == 11559 || + lookahead == 11565 || + (11568 <= lookahead && lookahead <= 11623) || + lookahead == 11631 || + (11647 <= lookahead && lookahead <= 11670) || + (11680 <= lookahead && lookahead <= 11686) || + (11688 <= lookahead && lookahead <= 11694) || + (11696 <= lookahead && lookahead <= 11702) || + (11704 <= lookahead && lookahead <= 11710) || + (11712 <= lookahead && lookahead <= 11718) || + (11720 <= lookahead && lookahead <= 11726) || + (11728 <= lookahead && lookahead <= 11734) || + (11736 <= lookahead && lookahead <= 11742) || + (11744 <= lookahead && lookahead <= 11775) || + (12293 <= lookahead && lookahead <= 12295) || + (12321 <= lookahead && lookahead <= 12335) || + (12337 <= lookahead && lookahead <= 12341) || + (12344 <= lookahead && lookahead <= 12348) || + (12353 <= lookahead && lookahead <= 12438) || + lookahead == 12441 || + lookahead == 12442 || + (12445 <= lookahead && lookahead <= 12447) || + (12449 <= lookahead && lookahead <= 12538) || + (12540 <= lookahead && lookahead <= 12543) || + (12549 <= lookahead && lookahead <= 12591) || + (12593 <= lookahead && lookahead <= 12686) || + (12704 <= lookahead && lookahead <= 12735) || + (12784 <= lookahead && lookahead <= 12799) || + (13312 <= lookahead && lookahead <= 19903) || + (19968 <= lookahead && lookahead <= 40956) || + (40960 <= lookahead && lookahead <= 42124) || + (42192 <= lookahead && lookahead <= 42237) || + (42240 <= lookahead && lookahead <= 42508) || + (42512 <= lookahead && lookahead <= 42539) || + (42560 <= lookahead && lookahead <= 42607) || + (42612 <= lookahead && lookahead <= 42621) || + (42623 <= lookahead && lookahead <= 42737) || + (42775 <= lookahead && lookahead <= 42783) || + (42786 <= lookahead && lookahead <= 42888) || + (42891 <= lookahead && lookahead <= 42943) || + (42946 <= lookahead && lookahead <= 42954) || + (42997 <= lookahead && lookahead <= 43047) || + lookahead == 43052 || + (43072 <= lookahead && lookahead <= 43123) || + (43136 <= lookahead && lookahead <= 43205) || + (43216 <= lookahead && lookahead <= 43225) || + (43232 <= lookahead && lookahead <= 43255) || + lookahead == 43259 || + (43261 <= lookahead && lookahead <= 43309) || + (43312 <= lookahead && lookahead <= 43347) || + (43360 <= lookahead && lookahead <= 43388) || + (43392 <= lookahead && lookahead <= 43456) || + (43471 <= lookahead && lookahead <= 43481) || + (43488 <= lookahead && lookahead <= 43518) || + (43520 <= lookahead && lookahead <= 43574) || + (43584 <= lookahead && lookahead <= 43597) || + (43600 <= lookahead && lookahead <= 43609) || + (43616 <= lookahead && lookahead <= 43638) || + (43642 <= lookahead && lookahead <= 43714) || + (43739 <= lookahead && lookahead <= 43741) || + (43744 <= lookahead && lookahead <= 43759) || + (43762 <= lookahead && lookahead <= 43766) || + (43777 <= lookahead && lookahead <= 43782) || + (43785 <= lookahead && lookahead <= 43790) || + (43793 <= lookahead && lookahead <= 43798) || + (43808 <= lookahead && lookahead <= 43814) || + (43816 <= lookahead && lookahead <= 43822) || + (43824 <= lookahead && lookahead <= 43866) || + (43868 <= lookahead && lookahead <= 43881) || + (43888 <= lookahead && lookahead <= 44010) || + lookahead == 44012 || + lookahead == 44013 || + (44016 <= lookahead && lookahead <= 44025) || + (44032 <= lookahead && lookahead <= 55203) || + (55216 <= lookahead && lookahead <= 55238) || + (55243 <= lookahead && lookahead <= 55291) || + (63744 <= lookahead && lookahead <= 64109) || + (64112 <= lookahead && lookahead <= 64217) || + (64256 <= lookahead && lookahead <= 64262) || + (64275 <= lookahead && lookahead <= 64279) || + (64285 <= lookahead && lookahead <= 64296) || + (64298 <= lookahead && lookahead <= 64310) || + (64312 <= lookahead && lookahead <= 64316) || + lookahead == 64318 || + lookahead == 64320 || + lookahead == 64321 || + lookahead == 64323 || + lookahead == 64324 || + (64326 <= lookahead && lookahead <= 64433) || + (64467 <= lookahead && lookahead <= 64605) || + (64612 <= lookahead && lookahead <= 64829) || + (64848 <= lookahead && lookahead <= 64911) || + (64914 <= lookahead && lookahead <= 64967) || + (65008 <= lookahead && lookahead <= 65017) || + (65024 <= lookahead && lookahead <= 65039) || + (65056 <= lookahead && lookahead <= 65071) || + lookahead == 65075 || + lookahead == 65076 || + (65101 <= lookahead && lookahead <= 65103) || + lookahead == 65137 || + lookahead == 65139 || + lookahead == 65143 || + lookahead == 65145 || + lookahead == 65147 || + lookahead == 65149 || + (65151 <= lookahead && lookahead <= 65276) || + (65296 <= lookahead && lookahead <= 65305) || + (65313 <= lookahead && lookahead <= 65338) || + lookahead == 65343 || + (65345 <= lookahead && lookahead <= 65370) || + (65382 <= lookahead && lookahead <= 65470) || + (65474 <= lookahead && lookahead <= 65479) || + (65482 <= lookahead && lookahead <= 65487) || + (65490 <= lookahead && lookahead <= 65495) || + (65498 <= lookahead && lookahead <= 65500) || + (65536 <= lookahead && lookahead <= 65547) || + (65549 <= lookahead && lookahead <= 65574) || + (65576 <= lookahead && lookahead <= 65594) || + lookahead == 65596 || + lookahead == 65597 || + (65599 <= lookahead && lookahead <= 65613) || + (65616 <= lookahead && lookahead <= 65629) || + (65664 <= lookahead && lookahead <= 65786) || + (65856 <= lookahead && lookahead <= 65908) || + lookahead == 66045 || + (66176 <= lookahead && lookahead <= 66204) || + (66208 <= lookahead && lookahead <= 66256) || + lookahead == 66272 || + (66304 <= lookahead && lookahead <= 66335) || + (66349 <= lookahead && lookahead <= 66378) || + (66384 <= lookahead && lookahead <= 66426) || + (66432 <= lookahead && lookahead <= 66461) || + (66464 <= lookahead && lookahead <= 66499) || + (66504 <= lookahead && lookahead <= 66511) || + (66513 <= lookahead && lookahead <= 66517) || + (66560 <= lookahead && lookahead <= 66717) || + (66720 <= lookahead && lookahead <= 66729) || + (66736 <= lookahead && lookahead <= 66771) || + (66776 <= lookahead && lookahead <= 66811) || + (66816 <= lookahead && lookahead <= 66855) || + (66864 <= lookahead && lookahead <= 66915) || + (67072 <= lookahead && lookahead <= 67382) || + (67392 <= lookahead && lookahead <= 67413) || + (67424 <= lookahead && lookahead <= 67431) || + (67584 <= lookahead && lookahead <= 67589) || + lookahead == 67592 || + (67594 <= lookahead && lookahead <= 67637) || + lookahead == 67639 || + lookahead == 67640 || + lookahead == 67644 || + (67647 <= lookahead && lookahead <= 67669) || + (67680 <= lookahead && lookahead <= 67702) || + (67712 <= lookahead && lookahead <= 67742) || + (67808 <= lookahead && lookahead <= 67826) || + lookahead == 67828 || + lookahead == 67829 || + (67840 <= lookahead && lookahead <= 67861) || + (67872 <= lookahead && lookahead <= 67897) || + (67968 <= lookahead && lookahead <= 68023) || + lookahead == 68030 || + lookahead == 68031 || + (68096 <= lookahead && lookahead <= 68099) || + lookahead == 68101 || + lookahead == 68102 || + (68108 <= lookahead && lookahead <= 68115) || + (68117 <= lookahead && lookahead <= 68119) || + (68121 <= lookahead && lookahead <= 68149) || + (68152 <= lookahead && lookahead <= 68154) || + lookahead == 68159 || + (68192 <= lookahead && lookahead <= 68220) || + (68224 <= lookahead && lookahead <= 68252) || + (68288 <= lookahead && lookahead <= 68295) || + (68297 <= lookahead && lookahead <= 68326) || + (68352 <= lookahead && lookahead <= 68405) || + (68416 <= lookahead && lookahead <= 68437) || + (68448 <= lookahead && lookahead <= 68466) || + (68480 <= lookahead && lookahead <= 68497) || + (68608 <= lookahead && lookahead <= 68680) || + (68736 <= lookahead && lookahead <= 68786) || + (68800 <= lookahead && lookahead <= 68850) || + (68864 <= lookahead && lookahead <= 68903) || + (68912 <= lookahead && lookahead <= 68921) || + (69248 <= lookahead && lookahead <= 69289) || + lookahead == 69291 || + lookahead == 69292 || + lookahead == 69296 || + lookahead == 69297 || + (69376 <= lookahead && lookahead <= 69404) || + lookahead == 69415 || + (69424 <= lookahead && lookahead <= 69456) || + (69552 <= lookahead && lookahead <= 69572) || + (69600 <= lookahead && lookahead <= 69622) || + (69632 <= lookahead && lookahead <= 69702) || + (69734 <= lookahead && lookahead <= 69743) || + (69759 <= lookahead && lookahead <= 69818) || + (69840 <= lookahead && lookahead <= 69864) || + (69872 <= lookahead && lookahead <= 69881) || + (69888 <= lookahead && lookahead <= 69940) || + (69942 <= lookahead && lookahead <= 69951) || + (69956 <= lookahead && lookahead <= 69959) || + (69968 <= lookahead && lookahead <= 70003) || + lookahead == 70006 || + (70016 <= lookahead && lookahead <= 70084) || + (70089 <= lookahead && lookahead <= 70092) || + (70094 <= lookahead && lookahead <= 70106) || + lookahead == 70108 || + (70144 <= lookahead && lookahead <= 70161) || + (70163 <= lookahead && lookahead <= 70199) || + lookahead == 70206 || + (70272 <= lookahead && lookahead <= 70278) || + lookahead == 70280 || + (70282 <= lookahead && lookahead <= 70285) || + (70287 <= lookahead && lookahead <= 70301) || + (70303 <= lookahead && lookahead <= 70312) || + (70320 <= lookahead && lookahead <= 70378) || + (70384 <= lookahead && lookahead <= 70393) || + (70400 <= lookahead && lookahead <= 70403) || + (70405 <= lookahead && lookahead <= 70412) || + lookahead == 70415 || + lookahead == 70416 || + (70419 <= lookahead && lookahead <= 70440) || + (70442 <= lookahead && lookahead <= 70448) || + lookahead == 70450 || + lookahead == 70451 || + (70453 <= lookahead && lookahead <= 70457) || + (70459 <= lookahead && lookahead <= 70468) || + lookahead == 70471 || + lookahead == 70472 || + (70475 <= lookahead && lookahead <= 70477) || + lookahead == 70480 || + lookahead == 70487 || + (70493 <= lookahead && lookahead <= 70499) || + (70502 <= lookahead && lookahead <= 70508) || + (70512 <= lookahead && lookahead <= 70516) || + (70656 <= lookahead && lookahead <= 70730) || + (70736 <= lookahead && lookahead <= 70745) || + (70750 <= lookahead && lookahead <= 70753) || + (70784 <= lookahead && lookahead <= 70853) || + lookahead == 70855 || + (70864 <= lookahead && lookahead <= 70873) || + (71040 <= lookahead && lookahead <= 71093) || + (71096 <= lookahead && lookahead <= 71104) || + (71128 <= lookahead && lookahead <= 71133) || + (71168 <= lookahead && lookahead <= 71232) || + lookahead == 71236 || + (71248 <= lookahead && lookahead <= 71257) || + (71296 <= lookahead && lookahead <= 71352) || + (71360 <= lookahead && lookahead <= 71369) || + (71424 <= lookahead && lookahead <= 71450) || + (71453 <= lookahead && lookahead <= 71467) || + (71472 <= lookahead && lookahead <= 71481) || + (71680 <= lookahead && lookahead <= 71738) || + (71840 <= lookahead && lookahead <= 71913) || + (71935 <= lookahead && lookahead <= 71942) || + lookahead == 71945 || + (71948 <= lookahead && lookahead <= 71955) || + lookahead == 71957 || + lookahead == 71958 || + (71960 <= lookahead && lookahead <= 71989) || + lookahead == 71991 || + lookahead == 71992 || + (71995 <= lookahead && lookahead <= 72003) || + (72016 <= lookahead && lookahead <= 72025) || + (72096 <= lookahead && lookahead <= 72103) || + (72106 <= lookahead && lookahead <= 72151) || + (72154 <= lookahead && lookahead <= 72161) || + lookahead == 72163 || + lookahead == 72164 || + (72192 <= lookahead && lookahead <= 72254) || + lookahead == 72263 || + (72272 <= lookahead && lookahead <= 72345) || + lookahead == 72349 || + (72384 <= lookahead && lookahead <= 72440) || + (72704 <= lookahead && lookahead <= 72712) || + (72714 <= lookahead && lookahead <= 72758) || + (72760 <= lookahead && lookahead <= 72768) || + (72784 <= lookahead && lookahead <= 72793) || + (72818 <= lookahead && lookahead <= 72847) || + (72850 <= lookahead && lookahead <= 72871) || + (72873 <= lookahead && lookahead <= 72886) || + (72960 <= lookahead && lookahead <= 72966) || + lookahead == 72968 || + lookahead == 72969 || + (72971 <= lookahead && lookahead <= 73014) || + lookahead == 73018 || + lookahead == 73020 || + lookahead == 73021 || + (73023 <= lookahead && lookahead <= 73031) || + (73040 <= lookahead && lookahead <= 73049) || + (73056 <= lookahead && lookahead <= 73061) || + lookahead == 73063 || + lookahead == 73064 || + (73066 <= lookahead && lookahead <= 73102) || + lookahead == 73104 || + lookahead == 73105 || + (73107 <= lookahead && lookahead <= 73112) || + (73120 <= lookahead && lookahead <= 73129) || + (73440 <= lookahead && lookahead <= 73462) || + lookahead == 73648 || + (73728 <= lookahead && lookahead <= 74649) || + (74752 <= lookahead && lookahead <= 74862) || + (74880 <= lookahead && lookahead <= 75075) || + (77824 <= lookahead && lookahead <= 78894) || + (82944 <= lookahead && lookahead <= 83526) || + (92160 <= lookahead && lookahead <= 92728) || + (92736 <= lookahead && lookahead <= 92766) || + (92768 <= lookahead && lookahead <= 92777) || + (92880 <= lookahead && lookahead <= 92909) || + (92912 <= lookahead && lookahead <= 92916) || + (92928 <= lookahead && lookahead <= 92982) || + (92992 <= lookahead && lookahead <= 92995) || + (93008 <= lookahead && lookahead <= 93017) || + (93027 <= lookahead && lookahead <= 93047) || + (93053 <= lookahead && lookahead <= 93071) || + (93760 <= lookahead && lookahead <= 93823) || + (93952 <= lookahead && lookahead <= 94026) || + (94031 <= lookahead && lookahead <= 94087) || + (94095 <= lookahead && lookahead <= 94111) || + lookahead == 94176 || + lookahead == 94177 || + lookahead == 94179 || + lookahead == 94180 || + lookahead == 94192 || + lookahead == 94193 || + (94208 <= lookahead && lookahead <= 100343) || + (100352 <= lookahead && lookahead <= 101589) || + (101632 <= lookahead && lookahead <= 101640) || + (110592 <= lookahead && lookahead <= 110878) || + (110928 <= lookahead && lookahead <= 110930) || + (110948 <= lookahead && lookahead <= 110951) || + (110960 <= lookahead && lookahead <= 111355) || + (113664 <= lookahead && lookahead <= 113770) || + (113776 <= lookahead && lookahead <= 113788) || + (113792 <= lookahead && lookahead <= 113800) || + (113808 <= lookahead && lookahead <= 113817) || + lookahead == 113821 || + lookahead == 113822 || + (119141 <= lookahead && lookahead <= 119145) || + (119149 <= lookahead && lookahead <= 119154) || + (119163 <= lookahead && lookahead <= 119170) || + (119173 <= lookahead && lookahead <= 119179) || + (119210 <= lookahead && lookahead <= 119213) || + (119362 <= lookahead && lookahead <= 119364) || + (119808 <= lookahead && lookahead <= 119892) || + (119894 <= lookahead && lookahead <= 119964) || + lookahead == 119966 || + lookahead == 119967 || + lookahead == 119970 || + lookahead == 119973 || + lookahead == 119974 || + (119977 <= lookahead && lookahead <= 119980) || + (119982 <= lookahead && lookahead <= 119993) || + lookahead == 119995 || + (119997 <= lookahead && lookahead <= 120003) || + (120005 <= lookahead && lookahead <= 120069) || + (120071 <= lookahead && lookahead <= 120074) || + (120077 <= lookahead && lookahead <= 120084) || + (120086 <= lookahead && lookahead <= 120092) || + (120094 <= lookahead && lookahead <= 120121) || + (120123 <= lookahead && lookahead <= 120126) || + (120128 <= lookahead && lookahead <= 120132) || + lookahead == 120134 || + (120138 <= lookahead && lookahead <= 120144) || + (120146 <= lookahead && lookahead <= 120485) || + (120488 <= lookahead && lookahead <= 120512) || + (120514 <= lookahead && lookahead <= 120538) || + (120540 <= lookahead && lookahead <= 120570) || + (120572 <= lookahead && lookahead <= 120596) || + (120598 <= lookahead && lookahead <= 120628) || + (120630 <= lookahead && lookahead <= 120654) || + (120656 <= lookahead && lookahead <= 120686) || + (120688 <= lookahead && lookahead <= 120712) || + (120714 <= lookahead && lookahead <= 120744) || + (120746 <= lookahead && lookahead <= 120770) || + (120772 <= lookahead && lookahead <= 120779) || + (120782 <= lookahead && lookahead <= 120831) || + (121344 <= lookahead && lookahead <= 121398) || + (121403 <= lookahead && lookahead <= 121452) || + lookahead == 121461 || + lookahead == 121476 || + (121499 <= lookahead && lookahead <= 121503) || + (121505 <= lookahead && lookahead <= 121519) || + (122880 <= lookahead && lookahead <= 122886) || + (122888 <= lookahead && lookahead <= 122904) || + (122907 <= lookahead && lookahead <= 122913) || + lookahead == 122915 || + lookahead == 122916 || + (122918 <= lookahead && lookahead <= 122922) || + (123136 <= lookahead && lookahead <= 123180) || + (123184 <= lookahead && lookahead <= 123197) || + (123200 <= lookahead && lookahead <= 123209) || + lookahead == 123214 || + (123584 <= lookahead && lookahead <= 123641) || + (124928 <= lookahead && lookahead <= 125124) || + (125136 <= lookahead && lookahead <= 125142) || + (125184 <= lookahead && lookahead <= 125259) || + (125264 <= lookahead && lookahead <= 125273) || + (126464 <= lookahead && lookahead <= 126467) || + (126469 <= lookahead && lookahead <= 126495) || + lookahead == 126497 || + lookahead == 126498 || + lookahead == 126500 || + lookahead == 126503 || + (126505 <= lookahead && lookahead <= 126514) || + (126516 <= lookahead && lookahead <= 126519) || + lookahead == 126521 || + lookahead == 126523 || + lookahead == 126530 || + lookahead == 126535 || + lookahead == 126537 || + lookahead == 126539 || + (126541 <= lookahead && lookahead <= 126543) || + lookahead == 126545 || + lookahead == 126546 || + lookahead == 126548 || + lookahead == 126551 || + lookahead == 126553 || + lookahead == 126555 || + lookahead == 126557 || + lookahead == 126559 || + lookahead == 126561 || + lookahead == 126562 || + lookahead == 126564 || + (126567 <= lookahead && lookahead <= 126570) || + (126572 <= lookahead && lookahead <= 126578) || + (126580 <= lookahead && lookahead <= 126583) || + (126585 <= lookahead && lookahead <= 126588) || + lookahead == 126590 || + (126592 <= lookahead && lookahead <= 126601) || + (126603 <= lookahead && lookahead <= 126619) || + (126625 <= lookahead && lookahead <= 126627) || + (126629 <= lookahead && lookahead <= 126633) || + (126635 <= lookahead && lookahead <= 126651) || + (130032 <= lookahead && lookahead <= 130041) || + (131072 <= lookahead && lookahead <= 173789) || + (173824 <= lookahead && lookahead <= 177972) || + (177984 <= lookahead && lookahead <= 178205) || + (178208 <= lookahead && lookahead <= 183969) || + (183984 <= lookahead && lookahead <= 191456) || + (194560 <= lookahead && lookahead <= 195101) || + (196608 <= lookahead && lookahead <= 201546) || + (917760 <= lookahead && lookahead <= 917999)) ADVANCE(166); END_STATE(); case 157: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') ADVANCE(158); - if (sym_identifier_character_set_7(lookahead)) ADVANCE(166); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 170 || + lookahead == 181 || + lookahead == 183 || + lookahead == 186 || + (192 <= lookahead && lookahead <= 214) || + (216 <= lookahead && lookahead <= 246) || + (248 <= lookahead && lookahead <= 705) || + (710 <= lookahead && lookahead <= 721) || + (736 <= lookahead && lookahead <= 740) || + lookahead == 748 || + lookahead == 750 || + (768 <= lookahead && lookahead <= 884) || + lookahead == 886 || + lookahead == 887 || + (891 <= lookahead && lookahead <= 893) || + lookahead == 895 || + (902 <= lookahead && lookahead <= 906) || + lookahead == 908 || + (910 <= lookahead && lookahead <= 929) || + (931 <= lookahead && lookahead <= 1013) || + (1015 <= lookahead && lookahead <= 1153) || + (1155 <= lookahead && lookahead <= 1159) || + (1162 <= lookahead && lookahead <= 1327) || + (1329 <= lookahead && lookahead <= 1366) || + lookahead == 1369 || + (1376 <= lookahead && lookahead <= 1416) || + (1425 <= lookahead && lookahead <= 1469) || + lookahead == 1471 || + lookahead == 1473 || + lookahead == 1474 || + lookahead == 1476 || + lookahead == 1477 || + lookahead == 1479 || + (1488 <= lookahead && lookahead <= 1514) || + (1519 <= lookahead && lookahead <= 1522) || + (1552 <= lookahead && lookahead <= 1562) || + (1568 <= lookahead && lookahead <= 1641) || + (1646 <= lookahead && lookahead <= 1747) || + (1749 <= lookahead && lookahead <= 1756) || + (1759 <= lookahead && lookahead <= 1768) || + (1770 <= lookahead && lookahead <= 1788) || + lookahead == 1791 || + (1808 <= lookahead && lookahead <= 1866) || + (1869 <= lookahead && lookahead <= 1969) || + (1984 <= lookahead && lookahead <= 2037) || + lookahead == 2042 || + lookahead == 2045 || + (2048 <= lookahead && lookahead <= 2093) || + (2112 <= lookahead && lookahead <= 2139) || + (2144 <= lookahead && lookahead <= 2154) || + (2208 <= lookahead && lookahead <= 2228) || + (2230 <= lookahead && lookahead <= 2247) || + (2259 <= lookahead && lookahead <= 2273) || + (2275 <= lookahead && lookahead <= 2403) || + (2406 <= lookahead && lookahead <= 2415) || + (2417 <= lookahead && lookahead <= 2435) || + (2437 <= lookahead && lookahead <= 2444) || + lookahead == 2447 || + lookahead == 2448 || + (2451 <= lookahead && lookahead <= 2472) || + (2474 <= lookahead && lookahead <= 2480) || + lookahead == 2482 || + (2486 <= lookahead && lookahead <= 2489) || + (2492 <= lookahead && lookahead <= 2500) || + lookahead == 2503 || + lookahead == 2504 || + (2507 <= lookahead && lookahead <= 2510) || + lookahead == 2519 || + lookahead == 2524 || + lookahead == 2525 || + (2527 <= lookahead && lookahead <= 2531) || + (2534 <= lookahead && lookahead <= 2545) || + lookahead == 2556 || + lookahead == 2558 || + (2561 <= lookahead && lookahead <= 2563) || + (2565 <= lookahead && lookahead <= 2570) || + lookahead == 2575 || + lookahead == 2576 || + (2579 <= lookahead && lookahead <= 2600) || + (2602 <= lookahead && lookahead <= 2608) || + lookahead == 2610 || + lookahead == 2611 || + lookahead == 2613 || + lookahead == 2614 || + lookahead == 2616 || + lookahead == 2617 || + lookahead == 2620 || + (2622 <= lookahead && lookahead <= 2626) || + lookahead == 2631 || + lookahead == 2632 || + (2635 <= lookahead && lookahead <= 2637) || + lookahead == 2641 || + (2649 <= lookahead && lookahead <= 2652) || + lookahead == 2654 || + (2662 <= lookahead && lookahead <= 2677) || + (2689 <= lookahead && lookahead <= 2691) || + (2693 <= lookahead && lookahead <= 2701) || + (2703 <= lookahead && lookahead <= 2705) || + (2707 <= lookahead && lookahead <= 2728) || + (2730 <= lookahead && lookahead <= 2736) || + lookahead == 2738 || + lookahead == 2739 || + (2741 <= lookahead && lookahead <= 2745) || + (2748 <= lookahead && lookahead <= 2757) || + (2759 <= lookahead && lookahead <= 2761) || + (2763 <= lookahead && lookahead <= 2765) || + lookahead == 2768 || + (2784 <= lookahead && lookahead <= 2787) || + (2790 <= lookahead && lookahead <= 2799) || + (2809 <= lookahead && lookahead <= 2815) || + (2817 <= lookahead && lookahead <= 2819) || + (2821 <= lookahead && lookahead <= 2828) || + lookahead == 2831 || + lookahead == 2832 || + (2835 <= lookahead && lookahead <= 2856) || + (2858 <= lookahead && lookahead <= 2864) || + lookahead == 2866 || + lookahead == 2867 || + (2869 <= lookahead && lookahead <= 2873) || + (2876 <= lookahead && lookahead <= 2884) || + lookahead == 2887 || + lookahead == 2888 || + (2891 <= lookahead && lookahead <= 2893) || + (2901 <= lookahead && lookahead <= 2903) || + lookahead == 2908 || + lookahead == 2909 || + (2911 <= lookahead && lookahead <= 2915) || + (2918 <= lookahead && lookahead <= 2927) || + lookahead == 2929 || + lookahead == 2946 || + lookahead == 2947 || + (2949 <= lookahead && lookahead <= 2954) || + (2958 <= lookahead && lookahead <= 2960) || + (2962 <= lookahead && lookahead <= 2965) || + lookahead == 2969 || + lookahead == 2970 || + lookahead == 2972 || + lookahead == 2974 || + lookahead == 2975 || + lookahead == 2979 || + lookahead == 2980 || + (2984 <= lookahead && lookahead <= 2986) || + (2990 <= lookahead && lookahead <= 3001) || + (3006 <= lookahead && lookahead <= 3010) || + (3014 <= lookahead && lookahead <= 3016) || + (3018 <= lookahead && lookahead <= 3021) || + lookahead == 3024 || + lookahead == 3031 || + (3046 <= lookahead && lookahead <= 3055) || + (3072 <= lookahead && lookahead <= 3084) || + (3086 <= lookahead && lookahead <= 3088) || + (3090 <= lookahead && lookahead <= 3112) || + (3114 <= lookahead && lookahead <= 3129) || + (3133 <= lookahead && lookahead <= 3140) || + (3142 <= lookahead && lookahead <= 3144) || + (3146 <= lookahead && lookahead <= 3149) || + lookahead == 3157 || + lookahead == 3158 || + (3160 <= lookahead && lookahead <= 3162) || + (3168 <= lookahead && lookahead <= 3171) || + (3174 <= lookahead && lookahead <= 3183) || + (3200 <= lookahead && lookahead <= 3203) || + (3205 <= lookahead && lookahead <= 3212) || + (3214 <= lookahead && lookahead <= 3216) || + (3218 <= lookahead && lookahead <= 3240) || + (3242 <= lookahead && lookahead <= 3251) || + (3253 <= lookahead && lookahead <= 3257) || + (3260 <= lookahead && lookahead <= 3268) || + (3270 <= lookahead && lookahead <= 3272) || + (3274 <= lookahead && lookahead <= 3277) || + lookahead == 3285 || + lookahead == 3286 || + lookahead == 3294 || + (3296 <= lookahead && lookahead <= 3299) || + (3302 <= lookahead && lookahead <= 3311) || + lookahead == 3313 || + lookahead == 3314 || + (3328 <= lookahead && lookahead <= 3340) || + (3342 <= lookahead && lookahead <= 3344) || + (3346 <= lookahead && lookahead <= 3396) || + (3398 <= lookahead && lookahead <= 3400) || + (3402 <= lookahead && lookahead <= 3406) || + (3412 <= lookahead && lookahead <= 3415) || + (3423 <= lookahead && lookahead <= 3427) || + (3430 <= lookahead && lookahead <= 3439) || + (3450 <= lookahead && lookahead <= 3455) || + (3457 <= lookahead && lookahead <= 3459) || + (3461 <= lookahead && lookahead <= 3478) || + (3482 <= lookahead && lookahead <= 3505) || + (3507 <= lookahead && lookahead <= 3515) || + lookahead == 3517 || + (3520 <= lookahead && lookahead <= 3526) || + lookahead == 3530 || + (3535 <= lookahead && lookahead <= 3540) || + lookahead == 3542 || + (3544 <= lookahead && lookahead <= 3551) || + (3558 <= lookahead && lookahead <= 3567) || + lookahead == 3570 || + lookahead == 3571 || + (3585 <= lookahead && lookahead <= 3642) || + (3648 <= lookahead && lookahead <= 3662) || + (3664 <= lookahead && lookahead <= 3673) || + lookahead == 3713 || + lookahead == 3714 || + lookahead == 3716 || + (3718 <= lookahead && lookahead <= 3722) || + (3724 <= lookahead && lookahead <= 3747) || + lookahead == 3749 || + (3751 <= lookahead && lookahead <= 3773) || + (3776 <= lookahead && lookahead <= 3780) || + lookahead == 3782 || + (3784 <= lookahead && lookahead <= 3789) || + (3792 <= lookahead && lookahead <= 3801) || + (3804 <= lookahead && lookahead <= 3807) || + lookahead == 3840 || + lookahead == 3864 || + lookahead == 3865 || + (3872 <= lookahead && lookahead <= 3881) || + lookahead == 3893 || + lookahead == 3895 || + lookahead == 3897 || + (3902 <= lookahead && lookahead <= 3911) || + (3913 <= lookahead && lookahead <= 3948) || + (3953 <= lookahead && lookahead <= 3972) || + (3974 <= lookahead && lookahead <= 3991) || + (3993 <= lookahead && lookahead <= 4028) || + lookahead == 4038 || + (4096 <= lookahead && lookahead <= 4169) || + (4176 <= lookahead && lookahead <= 4253) || + (4256 <= lookahead && lookahead <= 4293) || + lookahead == 4295 || + lookahead == 4301 || + (4304 <= lookahead && lookahead <= 4346) || + (4348 <= lookahead && lookahead <= 4680) || + (4682 <= lookahead && lookahead <= 4685) || + (4688 <= lookahead && lookahead <= 4694) || + lookahead == 4696 || + (4698 <= lookahead && lookahead <= 4701) || + (4704 <= lookahead && lookahead <= 4744) || + (4746 <= lookahead && lookahead <= 4749) || + (4752 <= lookahead && lookahead <= 4784) || + (4786 <= lookahead && lookahead <= 4789) || + (4792 <= lookahead && lookahead <= 4798) || + lookahead == 4800 || + (4802 <= lookahead && lookahead <= 4805) || + (4808 <= lookahead && lookahead <= 4822) || + (4824 <= lookahead && lookahead <= 4880) || + (4882 <= lookahead && lookahead <= 4885) || + (4888 <= lookahead && lookahead <= 4954) || + (4957 <= lookahead && lookahead <= 4959) || + (4969 <= lookahead && lookahead <= 4977) || + (4992 <= lookahead && lookahead <= 5007) || + (5024 <= lookahead && lookahead <= 5109) || + (5112 <= lookahead && lookahead <= 5117) || + (5121 <= lookahead && lookahead <= 5740) || + (5743 <= lookahead && lookahead <= 5759) || + (5761 <= lookahead && lookahead <= 5786) || + (5792 <= lookahead && lookahead <= 5866) || + (5870 <= lookahead && lookahead <= 5880) || + (5888 <= lookahead && lookahead <= 5900) || + (5902 <= lookahead && lookahead <= 5908) || + (5920 <= lookahead && lookahead <= 5940) || + (5952 <= lookahead && lookahead <= 5971) || + (5984 <= lookahead && lookahead <= 5996) || + (5998 <= lookahead && lookahead <= 6000) || + lookahead == 6002 || + lookahead == 6003 || + (6016 <= lookahead && lookahead <= 6099) || + lookahead == 6103 || + lookahead == 6108 || + lookahead == 6109 || + (6112 <= lookahead && lookahead <= 6121) || + (6155 <= lookahead && lookahead <= 6157) || + (6160 <= lookahead && lookahead <= 6169) || + (6176 <= lookahead && lookahead <= 6264) || + (6272 <= lookahead && lookahead <= 6314) || + (6320 <= lookahead && lookahead <= 6389) || + (6400 <= lookahead && lookahead <= 6430) || + (6432 <= lookahead && lookahead <= 6443) || + (6448 <= lookahead && lookahead <= 6459) || + (6470 <= lookahead && lookahead <= 6509) || + (6512 <= lookahead && lookahead <= 6516) || + (6528 <= lookahead && lookahead <= 6571) || + (6576 <= lookahead && lookahead <= 6601) || + (6608 <= lookahead && lookahead <= 6618) || + (6656 <= lookahead && lookahead <= 6683) || + (6688 <= lookahead && lookahead <= 6750) || + (6752 <= lookahead && lookahead <= 6780) || + (6783 <= lookahead && lookahead <= 6793) || + (6800 <= lookahead && lookahead <= 6809) || + lookahead == 6823 || + (6832 <= lookahead && lookahead <= 6845) || + lookahead == 6847 || + lookahead == 6848 || + (6912 <= lookahead && lookahead <= 6987) || + (6992 <= lookahead && lookahead <= 7001) || + (7019 <= lookahead && lookahead <= 7027) || + (7040 <= lookahead && lookahead <= 7155) || + (7168 <= lookahead && lookahead <= 7223) || + (7232 <= lookahead && lookahead <= 7241) || + (7245 <= lookahead && lookahead <= 7293) || + (7296 <= lookahead && lookahead <= 7304) || + (7312 <= lookahead && lookahead <= 7354) || + (7357 <= lookahead && lookahead <= 7359) || + (7376 <= lookahead && lookahead <= 7378) || + (7380 <= lookahead && lookahead <= 7418) || + (7424 <= lookahead && lookahead <= 7673) || + (7675 <= lookahead && lookahead <= 7957) || + (7960 <= lookahead && lookahead <= 7965) || + (7968 <= lookahead && lookahead <= 8005) || + (8008 <= lookahead && lookahead <= 8013) || + (8016 <= lookahead && lookahead <= 8023) || + lookahead == 8025 || + lookahead == 8027 || + lookahead == 8029 || + (8031 <= lookahead && lookahead <= 8061) || + (8064 <= lookahead && lookahead <= 8116) || + (8118 <= lookahead && lookahead <= 8124) || + lookahead == 8126 || + (8130 <= lookahead && lookahead <= 8132) || + (8134 <= lookahead && lookahead <= 8140) || + (8144 <= lookahead && lookahead <= 8147) || + (8150 <= lookahead && lookahead <= 8155) || + (8160 <= lookahead && lookahead <= 8172) || + (8178 <= lookahead && lookahead <= 8180) || + (8182 <= lookahead && lookahead <= 8188) || + lookahead == 8255 || + lookahead == 8256 || + lookahead == 8276 || + lookahead == 8305 || + lookahead == 8319 || + (8336 <= lookahead && lookahead <= 8348) || + (8400 <= lookahead && lookahead <= 8412) || + lookahead == 8417 || + (8421 <= lookahead && lookahead <= 8432) || + lookahead == 8450 || + lookahead == 8455 || + (8458 <= lookahead && lookahead <= 8467) || + lookahead == 8469 || + (8472 <= lookahead && lookahead <= 8477) || + lookahead == 8484 || + lookahead == 8486 || + lookahead == 8488 || + (8490 <= lookahead && lookahead <= 8505) || + (8508 <= lookahead && lookahead <= 8511) || + (8517 <= lookahead && lookahead <= 8521) || + lookahead == 8526 || + (8544 <= lookahead && lookahead <= 8584) || + (11264 <= lookahead && lookahead <= 11310) || + (11312 <= lookahead && lookahead <= 11358) || + (11360 <= lookahead && lookahead <= 11492) || + (11499 <= lookahead && lookahead <= 11507) || + (11520 <= lookahead && lookahead <= 11557) || + lookahead == 11559 || + lookahead == 11565 || + (11568 <= lookahead && lookahead <= 11623) || + lookahead == 11631 || + (11647 <= lookahead && lookahead <= 11670) || + (11680 <= lookahead && lookahead <= 11686) || + (11688 <= lookahead && lookahead <= 11694) || + (11696 <= lookahead && lookahead <= 11702) || + (11704 <= lookahead && lookahead <= 11710) || + (11712 <= lookahead && lookahead <= 11718) || + (11720 <= lookahead && lookahead <= 11726) || + (11728 <= lookahead && lookahead <= 11734) || + (11736 <= lookahead && lookahead <= 11742) || + (11744 <= lookahead && lookahead <= 11775) || + (12293 <= lookahead && lookahead <= 12295) || + (12321 <= lookahead && lookahead <= 12335) || + (12337 <= lookahead && lookahead <= 12341) || + (12344 <= lookahead && lookahead <= 12348) || + (12353 <= lookahead && lookahead <= 12438) || + lookahead == 12441 || + lookahead == 12442 || + (12445 <= lookahead && lookahead <= 12447) || + (12449 <= lookahead && lookahead <= 12538) || + (12540 <= lookahead && lookahead <= 12543) || + (12549 <= lookahead && lookahead <= 12591) || + (12593 <= lookahead && lookahead <= 12686) || + (12704 <= lookahead && lookahead <= 12735) || + (12784 <= lookahead && lookahead <= 12799) || + (13312 <= lookahead && lookahead <= 19903) || + (19968 <= lookahead && lookahead <= 40956) || + (40960 <= lookahead && lookahead <= 42124) || + (42192 <= lookahead && lookahead <= 42237) || + (42240 <= lookahead && lookahead <= 42508) || + (42512 <= lookahead && lookahead <= 42539) || + (42560 <= lookahead && lookahead <= 42607) || + (42612 <= lookahead && lookahead <= 42621) || + (42623 <= lookahead && lookahead <= 42737) || + (42775 <= lookahead && lookahead <= 42783) || + (42786 <= lookahead && lookahead <= 42888) || + (42891 <= lookahead && lookahead <= 42943) || + (42946 <= lookahead && lookahead <= 42954) || + (42997 <= lookahead && lookahead <= 43047) || + lookahead == 43052 || + (43072 <= lookahead && lookahead <= 43123) || + (43136 <= lookahead && lookahead <= 43205) || + (43216 <= lookahead && lookahead <= 43225) || + (43232 <= lookahead && lookahead <= 43255) || + lookahead == 43259 || + (43261 <= lookahead && lookahead <= 43309) || + (43312 <= lookahead && lookahead <= 43347) || + (43360 <= lookahead && lookahead <= 43388) || + (43392 <= lookahead && lookahead <= 43456) || + (43471 <= lookahead && lookahead <= 43481) || + (43488 <= lookahead && lookahead <= 43518) || + (43520 <= lookahead && lookahead <= 43574) || + (43584 <= lookahead && lookahead <= 43597) || + (43600 <= lookahead && lookahead <= 43609) || + (43616 <= lookahead && lookahead <= 43638) || + (43642 <= lookahead && lookahead <= 43714) || + (43739 <= lookahead && lookahead <= 43741) || + (43744 <= lookahead && lookahead <= 43759) || + (43762 <= lookahead && lookahead <= 43766) || + (43777 <= lookahead && lookahead <= 43782) || + (43785 <= lookahead && lookahead <= 43790) || + (43793 <= lookahead && lookahead <= 43798) || + (43808 <= lookahead && lookahead <= 43814) || + (43816 <= lookahead && lookahead <= 43822) || + (43824 <= lookahead && lookahead <= 43866) || + (43868 <= lookahead && lookahead <= 43881) || + (43888 <= lookahead && lookahead <= 44010) || + lookahead == 44012 || + lookahead == 44013 || + (44016 <= lookahead && lookahead <= 44025) || + (44032 <= lookahead && lookahead <= 55203) || + (55216 <= lookahead && lookahead <= 55238) || + (55243 <= lookahead && lookahead <= 55291) || + (63744 <= lookahead && lookahead <= 64109) || + (64112 <= lookahead && lookahead <= 64217) || + (64256 <= lookahead && lookahead <= 64262) || + (64275 <= lookahead && lookahead <= 64279) || + (64285 <= lookahead && lookahead <= 64296) || + (64298 <= lookahead && lookahead <= 64310) || + (64312 <= lookahead && lookahead <= 64316) || + lookahead == 64318 || + lookahead == 64320 || + lookahead == 64321 || + lookahead == 64323 || + lookahead == 64324 || + (64326 <= lookahead && lookahead <= 64433) || + (64467 <= lookahead && lookahead <= 64605) || + (64612 <= lookahead && lookahead <= 64829) || + (64848 <= lookahead && lookahead <= 64911) || + (64914 <= lookahead && lookahead <= 64967) || + (65008 <= lookahead && lookahead <= 65017) || + (65024 <= lookahead && lookahead <= 65039) || + (65056 <= lookahead && lookahead <= 65071) || + lookahead == 65075 || + lookahead == 65076 || + (65101 <= lookahead && lookahead <= 65103) || + lookahead == 65137 || + lookahead == 65139 || + lookahead == 65143 || + lookahead == 65145 || + lookahead == 65147 || + lookahead == 65149 || + (65151 <= lookahead && lookahead <= 65276) || + (65296 <= lookahead && lookahead <= 65305) || + (65313 <= lookahead && lookahead <= 65338) || + lookahead == 65343 || + (65345 <= lookahead && lookahead <= 65370) || + (65382 <= lookahead && lookahead <= 65470) || + (65474 <= lookahead && lookahead <= 65479) || + (65482 <= lookahead && lookahead <= 65487) || + (65490 <= lookahead && lookahead <= 65495) || + (65498 <= lookahead && lookahead <= 65500) || + (65536 <= lookahead && lookahead <= 65547) || + (65549 <= lookahead && lookahead <= 65574) || + (65576 <= lookahead && lookahead <= 65594) || + lookahead == 65596 || + lookahead == 65597 || + (65599 <= lookahead && lookahead <= 65613) || + (65616 <= lookahead && lookahead <= 65629) || + (65664 <= lookahead && lookahead <= 65786) || + (65856 <= lookahead && lookahead <= 65908) || + lookahead == 66045 || + (66176 <= lookahead && lookahead <= 66204) || + (66208 <= lookahead && lookahead <= 66256) || + lookahead == 66272 || + (66304 <= lookahead && lookahead <= 66335) || + (66349 <= lookahead && lookahead <= 66378) || + (66384 <= lookahead && lookahead <= 66426) || + (66432 <= lookahead && lookahead <= 66461) || + (66464 <= lookahead && lookahead <= 66499) || + (66504 <= lookahead && lookahead <= 66511) || + (66513 <= lookahead && lookahead <= 66517) || + (66560 <= lookahead && lookahead <= 66717) || + (66720 <= lookahead && lookahead <= 66729) || + (66736 <= lookahead && lookahead <= 66771) || + (66776 <= lookahead && lookahead <= 66811) || + (66816 <= lookahead && lookahead <= 66855) || + (66864 <= lookahead && lookahead <= 66915) || + (67072 <= lookahead && lookahead <= 67382) || + (67392 <= lookahead && lookahead <= 67413) || + (67424 <= lookahead && lookahead <= 67431) || + (67584 <= lookahead && lookahead <= 67589) || + lookahead == 67592 || + (67594 <= lookahead && lookahead <= 67637) || + lookahead == 67639 || + lookahead == 67640 || + lookahead == 67644 || + (67647 <= lookahead && lookahead <= 67669) || + (67680 <= lookahead && lookahead <= 67702) || + (67712 <= lookahead && lookahead <= 67742) || + (67808 <= lookahead && lookahead <= 67826) || + lookahead == 67828 || + lookahead == 67829 || + (67840 <= lookahead && lookahead <= 67861) || + (67872 <= lookahead && lookahead <= 67897) || + (67968 <= lookahead && lookahead <= 68023) || + lookahead == 68030 || + lookahead == 68031 || + (68096 <= lookahead && lookahead <= 68099) || + lookahead == 68101 || + lookahead == 68102 || + (68108 <= lookahead && lookahead <= 68115) || + (68117 <= lookahead && lookahead <= 68119) || + (68121 <= lookahead && lookahead <= 68149) || + (68152 <= lookahead && lookahead <= 68154) || + lookahead == 68159 || + (68192 <= lookahead && lookahead <= 68220) || + (68224 <= lookahead && lookahead <= 68252) || + (68288 <= lookahead && lookahead <= 68295) || + (68297 <= lookahead && lookahead <= 68326) || + (68352 <= lookahead && lookahead <= 68405) || + (68416 <= lookahead && lookahead <= 68437) || + (68448 <= lookahead && lookahead <= 68466) || + (68480 <= lookahead && lookahead <= 68497) || + (68608 <= lookahead && lookahead <= 68680) || + (68736 <= lookahead && lookahead <= 68786) || + (68800 <= lookahead && lookahead <= 68850) || + (68864 <= lookahead && lookahead <= 68903) || + (68912 <= lookahead && lookahead <= 68921) || + (69248 <= lookahead && lookahead <= 69289) || + lookahead == 69291 || + lookahead == 69292 || + lookahead == 69296 || + lookahead == 69297 || + (69376 <= lookahead && lookahead <= 69404) || + lookahead == 69415 || + (69424 <= lookahead && lookahead <= 69456) || + (69552 <= lookahead && lookahead <= 69572) || + (69600 <= lookahead && lookahead <= 69622) || + (69632 <= lookahead && lookahead <= 69702) || + (69734 <= lookahead && lookahead <= 69743) || + (69759 <= lookahead && lookahead <= 69818) || + (69840 <= lookahead && lookahead <= 69864) || + (69872 <= lookahead && lookahead <= 69881) || + (69888 <= lookahead && lookahead <= 69940) || + (69942 <= lookahead && lookahead <= 69951) || + (69956 <= lookahead && lookahead <= 69959) || + (69968 <= lookahead && lookahead <= 70003) || + lookahead == 70006 || + (70016 <= lookahead && lookahead <= 70084) || + (70089 <= lookahead && lookahead <= 70092) || + (70094 <= lookahead && lookahead <= 70106) || + lookahead == 70108 || + (70144 <= lookahead && lookahead <= 70161) || + (70163 <= lookahead && lookahead <= 70199) || + lookahead == 70206 || + (70272 <= lookahead && lookahead <= 70278) || + lookahead == 70280 || + (70282 <= lookahead && lookahead <= 70285) || + (70287 <= lookahead && lookahead <= 70301) || + (70303 <= lookahead && lookahead <= 70312) || + (70320 <= lookahead && lookahead <= 70378) || + (70384 <= lookahead && lookahead <= 70393) || + (70400 <= lookahead && lookahead <= 70403) || + (70405 <= lookahead && lookahead <= 70412) || + lookahead == 70415 || + lookahead == 70416 || + (70419 <= lookahead && lookahead <= 70440) || + (70442 <= lookahead && lookahead <= 70448) || + lookahead == 70450 || + lookahead == 70451 || + (70453 <= lookahead && lookahead <= 70457) || + (70459 <= lookahead && lookahead <= 70468) || + lookahead == 70471 || + lookahead == 70472 || + (70475 <= lookahead && lookahead <= 70477) || + lookahead == 70480 || + lookahead == 70487 || + (70493 <= lookahead && lookahead <= 70499) || + (70502 <= lookahead && lookahead <= 70508) || + (70512 <= lookahead && lookahead <= 70516) || + (70656 <= lookahead && lookahead <= 70730) || + (70736 <= lookahead && lookahead <= 70745) || + (70750 <= lookahead && lookahead <= 70753) || + (70784 <= lookahead && lookahead <= 70853) || + lookahead == 70855 || + (70864 <= lookahead && lookahead <= 70873) || + (71040 <= lookahead && lookahead <= 71093) || + (71096 <= lookahead && lookahead <= 71104) || + (71128 <= lookahead && lookahead <= 71133) || + (71168 <= lookahead && lookahead <= 71232) || + lookahead == 71236 || + (71248 <= lookahead && lookahead <= 71257) || + (71296 <= lookahead && lookahead <= 71352) || + (71360 <= lookahead && lookahead <= 71369) || + (71424 <= lookahead && lookahead <= 71450) || + (71453 <= lookahead && lookahead <= 71467) || + (71472 <= lookahead && lookahead <= 71481) || + (71680 <= lookahead && lookahead <= 71738) || + (71840 <= lookahead && lookahead <= 71913) || + (71935 <= lookahead && lookahead <= 71942) || + lookahead == 71945 || + (71948 <= lookahead && lookahead <= 71955) || + lookahead == 71957 || + lookahead == 71958 || + (71960 <= lookahead && lookahead <= 71989) || + lookahead == 71991 || + lookahead == 71992 || + (71995 <= lookahead && lookahead <= 72003) || + (72016 <= lookahead && lookahead <= 72025) || + (72096 <= lookahead && lookahead <= 72103) || + (72106 <= lookahead && lookahead <= 72151) || + (72154 <= lookahead && lookahead <= 72161) || + lookahead == 72163 || + lookahead == 72164 || + (72192 <= lookahead && lookahead <= 72254) || + lookahead == 72263 || + (72272 <= lookahead && lookahead <= 72345) || + lookahead == 72349 || + (72384 <= lookahead && lookahead <= 72440) || + (72704 <= lookahead && lookahead <= 72712) || + (72714 <= lookahead && lookahead <= 72758) || + (72760 <= lookahead && lookahead <= 72768) || + (72784 <= lookahead && lookahead <= 72793) || + (72818 <= lookahead && lookahead <= 72847) || + (72850 <= lookahead && lookahead <= 72871) || + (72873 <= lookahead && lookahead <= 72886) || + (72960 <= lookahead && lookahead <= 72966) || + lookahead == 72968 || + lookahead == 72969 || + (72971 <= lookahead && lookahead <= 73014) || + lookahead == 73018 || + lookahead == 73020 || + lookahead == 73021 || + (73023 <= lookahead && lookahead <= 73031) || + (73040 <= lookahead && lookahead <= 73049) || + (73056 <= lookahead && lookahead <= 73061) || + lookahead == 73063 || + lookahead == 73064 || + (73066 <= lookahead && lookahead <= 73102) || + lookahead == 73104 || + lookahead == 73105 || + (73107 <= lookahead && lookahead <= 73112) || + (73120 <= lookahead && lookahead <= 73129) || + (73440 <= lookahead && lookahead <= 73462) || + lookahead == 73648 || + (73728 <= lookahead && lookahead <= 74649) || + (74752 <= lookahead && lookahead <= 74862) || + (74880 <= lookahead && lookahead <= 75075) || + (77824 <= lookahead && lookahead <= 78894) || + (82944 <= lookahead && lookahead <= 83526) || + (92160 <= lookahead && lookahead <= 92728) || + (92736 <= lookahead && lookahead <= 92766) || + (92768 <= lookahead && lookahead <= 92777) || + (92880 <= lookahead && lookahead <= 92909) || + (92912 <= lookahead && lookahead <= 92916) || + (92928 <= lookahead && lookahead <= 92982) || + (92992 <= lookahead && lookahead <= 92995) || + (93008 <= lookahead && lookahead <= 93017) || + (93027 <= lookahead && lookahead <= 93047) || + (93053 <= lookahead && lookahead <= 93071) || + (93760 <= lookahead && lookahead <= 93823) || + (93952 <= lookahead && lookahead <= 94026) || + (94031 <= lookahead && lookahead <= 94087) || + (94095 <= lookahead && lookahead <= 94111) || + lookahead == 94176 || + lookahead == 94177 || + lookahead == 94179 || + lookahead == 94180 || + lookahead == 94192 || + lookahead == 94193 || + (94208 <= lookahead && lookahead <= 100343) || + (100352 <= lookahead && lookahead <= 101589) || + (101632 <= lookahead && lookahead <= 101640) || + (110592 <= lookahead && lookahead <= 110878) || + (110928 <= lookahead && lookahead <= 110930) || + (110948 <= lookahead && lookahead <= 110951) || + (110960 <= lookahead && lookahead <= 111355) || + (113664 <= lookahead && lookahead <= 113770) || + (113776 <= lookahead && lookahead <= 113788) || + (113792 <= lookahead && lookahead <= 113800) || + (113808 <= lookahead && lookahead <= 113817) || + lookahead == 113821 || + lookahead == 113822 || + (119141 <= lookahead && lookahead <= 119145) || + (119149 <= lookahead && lookahead <= 119154) || + (119163 <= lookahead && lookahead <= 119170) || + (119173 <= lookahead && lookahead <= 119179) || + (119210 <= lookahead && lookahead <= 119213) || + (119362 <= lookahead && lookahead <= 119364) || + (119808 <= lookahead && lookahead <= 119892) || + (119894 <= lookahead && lookahead <= 119964) || + lookahead == 119966 || + lookahead == 119967 || + lookahead == 119970 || + lookahead == 119973 || + lookahead == 119974 || + (119977 <= lookahead && lookahead <= 119980) || + (119982 <= lookahead && lookahead <= 119993) || + lookahead == 119995 || + (119997 <= lookahead && lookahead <= 120003) || + (120005 <= lookahead && lookahead <= 120069) || + (120071 <= lookahead && lookahead <= 120074) || + (120077 <= lookahead && lookahead <= 120084) || + (120086 <= lookahead && lookahead <= 120092) || + (120094 <= lookahead && lookahead <= 120121) || + (120123 <= lookahead && lookahead <= 120126) || + (120128 <= lookahead && lookahead <= 120132) || + lookahead == 120134 || + (120138 <= lookahead && lookahead <= 120144) || + (120146 <= lookahead && lookahead <= 120485) || + (120488 <= lookahead && lookahead <= 120512) || + (120514 <= lookahead && lookahead <= 120538) || + (120540 <= lookahead && lookahead <= 120570) || + (120572 <= lookahead && lookahead <= 120596) || + (120598 <= lookahead && lookahead <= 120628) || + (120630 <= lookahead && lookahead <= 120654) || + (120656 <= lookahead && lookahead <= 120686) || + (120688 <= lookahead && lookahead <= 120712) || + (120714 <= lookahead && lookahead <= 120744) || + (120746 <= lookahead && lookahead <= 120770) || + (120772 <= lookahead && lookahead <= 120779) || + (120782 <= lookahead && lookahead <= 120831) || + (121344 <= lookahead && lookahead <= 121398) || + (121403 <= lookahead && lookahead <= 121452) || + lookahead == 121461 || + lookahead == 121476 || + (121499 <= lookahead && lookahead <= 121503) || + (121505 <= lookahead && lookahead <= 121519) || + (122880 <= lookahead && lookahead <= 122886) || + (122888 <= lookahead && lookahead <= 122904) || + (122907 <= lookahead && lookahead <= 122913) || + lookahead == 122915 || + lookahead == 122916 || + (122918 <= lookahead && lookahead <= 122922) || + (123136 <= lookahead && lookahead <= 123180) || + (123184 <= lookahead && lookahead <= 123197) || + (123200 <= lookahead && lookahead <= 123209) || + lookahead == 123214 || + (123584 <= lookahead && lookahead <= 123641) || + (124928 <= lookahead && lookahead <= 125124) || + (125136 <= lookahead && lookahead <= 125142) || + (125184 <= lookahead && lookahead <= 125259) || + (125264 <= lookahead && lookahead <= 125273) || + (126464 <= lookahead && lookahead <= 126467) || + (126469 <= lookahead && lookahead <= 126495) || + lookahead == 126497 || + lookahead == 126498 || + lookahead == 126500 || + lookahead == 126503 || + (126505 <= lookahead && lookahead <= 126514) || + (126516 <= lookahead && lookahead <= 126519) || + lookahead == 126521 || + lookahead == 126523 || + lookahead == 126530 || + lookahead == 126535 || + lookahead == 126537 || + lookahead == 126539 || + (126541 <= lookahead && lookahead <= 126543) || + lookahead == 126545 || + lookahead == 126546 || + lookahead == 126548 || + lookahead == 126551 || + lookahead == 126553 || + lookahead == 126555 || + lookahead == 126557 || + lookahead == 126559 || + lookahead == 126561 || + lookahead == 126562 || + lookahead == 126564 || + (126567 <= lookahead && lookahead <= 126570) || + (126572 <= lookahead && lookahead <= 126578) || + (126580 <= lookahead && lookahead <= 126583) || + (126585 <= lookahead && lookahead <= 126588) || + lookahead == 126590 || + (126592 <= lookahead && lookahead <= 126601) || + (126603 <= lookahead && lookahead <= 126619) || + (126625 <= lookahead && lookahead <= 126627) || + (126629 <= lookahead && lookahead <= 126633) || + (126635 <= lookahead && lookahead <= 126651) || + (130032 <= lookahead && lookahead <= 130041) || + (131072 <= lookahead && lookahead <= 173789) || + (173824 <= lookahead && lookahead <= 177972) || + (177984 <= lookahead && lookahead <= 178205) || + (178208 <= lookahead && lookahead <= 183969) || + (183984 <= lookahead && lookahead <= 191456) || + (194560 <= lookahead && lookahead <= 195101) || + (196608 <= lookahead && lookahead <= 201546) || + (917760 <= lookahead && lookahead <= 917999)) ADVANCE(166); END_STATE(); case 158: ACCEPT_TOKEN(sym_identifier); @@ -11574,50 +11039,50 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [28] = {.lex_state = 5, .external_lex_state = 2}, [29] = {.lex_state = 5, .external_lex_state = 2}, [30] = {.lex_state = 5, .external_lex_state = 2}, - [31] = {.lex_state = 5, .external_lex_state = 2}, - [32] = {.lex_state = 56, .external_lex_state = 2}, - [33] = {.lex_state = 5, .external_lex_state = 2}, - [34] = {.lex_state = 56, .external_lex_state = 2}, + [31] = {.lex_state = 56, .external_lex_state = 2}, + [32] = {.lex_state = 5, .external_lex_state = 2}, + [33] = {.lex_state = 56, .external_lex_state = 2}, + [34] = {.lex_state = 5, .external_lex_state = 2}, [35] = {.lex_state = 5, .external_lex_state = 2}, - [36] = {.lex_state = 56, .external_lex_state = 2}, - [37] = {.lex_state = 5, .external_lex_state = 2}, + [36] = {.lex_state = 5, .external_lex_state = 2}, + [37] = {.lex_state = 56, .external_lex_state = 2}, [38] = {.lex_state = 56, .external_lex_state = 2}, [39] = {.lex_state = 5, .external_lex_state = 2}, - [40] = {.lex_state = 56, .external_lex_state = 2}, + [40] = {.lex_state = 5, .external_lex_state = 2}, [41] = {.lex_state = 5, .external_lex_state = 2}, - [42] = {.lex_state = 5, .external_lex_state = 2}, + [42] = {.lex_state = 56, .external_lex_state = 2}, [43] = {.lex_state = 56, .external_lex_state = 2}, [44] = {.lex_state = 56, .external_lex_state = 2}, [45] = {.lex_state = 56, .external_lex_state = 2}, [46] = {.lex_state = 56, .external_lex_state = 2}, - [47] = {.lex_state = 56, .external_lex_state = 2}, - [48] = {.lex_state = 5, .external_lex_state = 2}, + [47] = {.lex_state = 5, .external_lex_state = 2}, + [48] = {.lex_state = 56, .external_lex_state = 2}, [49] = {.lex_state = 56, .external_lex_state = 2}, [50] = {.lex_state = 56, .external_lex_state = 2}, [51] = {.lex_state = 56, .external_lex_state = 2}, - [52] = {.lex_state = 56, .external_lex_state = 2}, + [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 56, .external_lex_state = 2}, [54] = {.lex_state = 56, .external_lex_state = 2}, [55] = {.lex_state = 56, .external_lex_state = 2}, - [56] = {.lex_state = 56, .external_lex_state = 2}, + [56] = {.lex_state = 5, .external_lex_state = 2}, [57] = {.lex_state = 56, .external_lex_state = 2}, [58] = {.lex_state = 56, .external_lex_state = 2}, - [59] = {.lex_state = 56, .external_lex_state = 2}, + [59] = {.lex_state = 5, .external_lex_state = 2}, [60] = {.lex_state = 56, .external_lex_state = 2}, [61] = {.lex_state = 56, .external_lex_state = 2}, [62] = {.lex_state = 56, .external_lex_state = 2}, [63] = {.lex_state = 5, .external_lex_state = 2}, - [64] = {.lex_state = 5, .external_lex_state = 2}, + [64] = {.lex_state = 56, .external_lex_state = 2}, [65] = {.lex_state = 56, .external_lex_state = 2}, [66] = {.lex_state = 56, .external_lex_state = 2}, [67] = {.lex_state = 56, .external_lex_state = 2}, [68] = {.lex_state = 56, .external_lex_state = 2}, [69] = {.lex_state = 56, .external_lex_state = 2}, [70] = {.lex_state = 56, .external_lex_state = 2}, - [71] = {.lex_state = 5, .external_lex_state = 2}, - [72] = {.lex_state = 5, .external_lex_state = 2}, - [73] = {.lex_state = 5, .external_lex_state = 2}, - [74] = {.lex_state = 56, .external_lex_state = 2}, + [71] = {.lex_state = 56, .external_lex_state = 2}, + [72] = {.lex_state = 56, .external_lex_state = 2}, + [73] = {.lex_state = 56, .external_lex_state = 2}, + [74] = {.lex_state = 5, .external_lex_state = 2}, [75] = {.lex_state = 5, .external_lex_state = 2}, [76] = {.lex_state = 5, .external_lex_state = 2}, [77] = {.lex_state = 5, .external_lex_state = 2}, @@ -11636,8 +11101,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [90] = {.lex_state = 5, .external_lex_state = 2}, [91] = {.lex_state = 5, .external_lex_state = 2}, [92] = {.lex_state = 5, .external_lex_state = 2}, - [93] = {.lex_state = 5, .external_lex_state = 2}, - [94] = {.lex_state = 5, .external_lex_state = 2}, + [93] = {.lex_state = 6, .external_lex_state = 2}, + [94] = {.lex_state = 6, .external_lex_state = 2}, [95] = {.lex_state = 5, .external_lex_state = 2}, [96] = {.lex_state = 5, .external_lex_state = 2}, [97] = {.lex_state = 5, .external_lex_state = 2}, @@ -11656,11 +11121,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [110] = {.lex_state = 5, .external_lex_state = 2}, [111] = {.lex_state = 5, .external_lex_state = 2}, [112] = {.lex_state = 5, .external_lex_state = 2}, - [113] = {.lex_state = 5, .external_lex_state = 2}, + [113] = {.lex_state = 6, .external_lex_state = 2}, [114] = {.lex_state = 5, .external_lex_state = 2}, [115] = {.lex_state = 5, .external_lex_state = 2}, [116] = {.lex_state = 5, .external_lex_state = 2}, - [117] = {.lex_state = 5, .external_lex_state = 2}, + [117] = {.lex_state = 6, .external_lex_state = 2}, [118] = {.lex_state = 5, .external_lex_state = 2}, [119] = {.lex_state = 5, .external_lex_state = 2}, [120] = {.lex_state = 5, .external_lex_state = 2}, @@ -11680,9 +11145,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [134] = {.lex_state = 5, .external_lex_state = 2}, [135] = {.lex_state = 5, .external_lex_state = 2}, [136] = {.lex_state = 5, .external_lex_state = 2}, - [137] = {.lex_state = 6, .external_lex_state = 2}, - [138] = {.lex_state = 6, .external_lex_state = 2}, - [139] = {.lex_state = 6, .external_lex_state = 2}, + [137] = {.lex_state = 5, .external_lex_state = 2}, + [138] = {.lex_state = 5, .external_lex_state = 2}, + [139] = {.lex_state = 5, .external_lex_state = 2}, [140] = {.lex_state = 5, .external_lex_state = 2}, [141] = {.lex_state = 5, .external_lex_state = 2}, [142] = {.lex_state = 5, .external_lex_state = 2}, @@ -11700,14 +11165,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [154] = {.lex_state = 5, .external_lex_state = 2}, [155] = {.lex_state = 5, .external_lex_state = 2}, [156] = {.lex_state = 5, .external_lex_state = 2}, - [157] = {.lex_state = 6, .external_lex_state = 2}, + [157] = {.lex_state = 5, .external_lex_state = 2}, [158] = {.lex_state = 5, .external_lex_state = 2}, [159] = {.lex_state = 5, .external_lex_state = 2}, [160] = {.lex_state = 5, .external_lex_state = 2}, [161] = {.lex_state = 5, .external_lex_state = 2}, [162] = {.lex_state = 5, .external_lex_state = 2}, [163] = {.lex_state = 5, .external_lex_state = 2}, - [164] = {.lex_state = 5, .external_lex_state = 2}, + [164] = {.lex_state = 6, .external_lex_state = 2}, [165] = {.lex_state = 5, .external_lex_state = 2}, [166] = {.lex_state = 5, .external_lex_state = 2}, [167] = {.lex_state = 5, .external_lex_state = 2}, @@ -11720,7 +11185,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [174] = {.lex_state = 5, .external_lex_state = 2}, [175] = {.lex_state = 5, .external_lex_state = 2}, [176] = {.lex_state = 5, .external_lex_state = 2}, - [177] = {.lex_state = 6, .external_lex_state = 2}, + [177] = {.lex_state = 5, .external_lex_state = 2}, [178] = {.lex_state = 5, .external_lex_state = 2}, [179] = {.lex_state = 5, .external_lex_state = 2}, [180] = {.lex_state = 5, .external_lex_state = 2}, @@ -11739,14 +11204,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [193] = {.lex_state = 5, .external_lex_state = 2}, [194] = {.lex_state = 5, .external_lex_state = 2}, [195] = {.lex_state = 5, .external_lex_state = 2}, - [196] = {.lex_state = 1, .external_lex_state = 2}, + [196] = {.lex_state = 5, .external_lex_state = 2}, [197] = {.lex_state = 5, .external_lex_state = 2}, [198] = {.lex_state = 5, .external_lex_state = 2}, [199] = {.lex_state = 5, .external_lex_state = 2}, [200] = {.lex_state = 5, .external_lex_state = 2}, [201] = {.lex_state = 5, .external_lex_state = 2}, [202] = {.lex_state = 5, .external_lex_state = 2}, - [203] = {.lex_state = 5, .external_lex_state = 2}, + [203] = {.lex_state = 1, .external_lex_state = 2}, [204] = {.lex_state = 5, .external_lex_state = 2}, [205] = {.lex_state = 5, .external_lex_state = 2}, [206] = {.lex_state = 5, .external_lex_state = 2}, @@ -11755,10 +11220,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [209] = {.lex_state = 1, .external_lex_state = 2}, [210] = {.lex_state = 1, .external_lex_state = 2}, [211] = {.lex_state = 1, .external_lex_state = 2}, - [212] = {.lex_state = 1, .external_lex_state = 2}, + [212] = {.lex_state = 5, .external_lex_state = 2}, [213] = {.lex_state = 1, .external_lex_state = 2}, - [214] = {.lex_state = 1, .external_lex_state = 2}, - [215] = {.lex_state = 1, .external_lex_state = 2}, + [214] = {.lex_state = 5, .external_lex_state = 2}, + [215] = {.lex_state = 5, .external_lex_state = 2}, [216] = {.lex_state = 1, .external_lex_state = 2}, [217] = {.lex_state = 1, .external_lex_state = 2}, [218] = {.lex_state = 1, .external_lex_state = 2}, @@ -11766,18 +11231,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [220] = {.lex_state = 1, .external_lex_state = 2}, [221] = {.lex_state = 1, .external_lex_state = 2}, [222] = {.lex_state = 1, .external_lex_state = 2}, - [223] = {.lex_state = 5, .external_lex_state = 2}, + [223] = {.lex_state = 1, .external_lex_state = 2}, [224] = {.lex_state = 1, .external_lex_state = 2}, [225] = {.lex_state = 1, .external_lex_state = 2}, - [226] = {.lex_state = 1, .external_lex_state = 2}, + [226] = {.lex_state = 5, .external_lex_state = 2}, [227] = {.lex_state = 1, .external_lex_state = 2}, [228] = {.lex_state = 1, .external_lex_state = 2}, [229] = {.lex_state = 1, .external_lex_state = 2}, - [230] = {.lex_state = 5, .external_lex_state = 2}, + [230] = {.lex_state = 1, .external_lex_state = 2}, [231] = {.lex_state = 1, .external_lex_state = 2}, [232] = {.lex_state = 1, .external_lex_state = 2}, - [233] = {.lex_state = 5, .external_lex_state = 2}, - [234] = {.lex_state = 5, .external_lex_state = 2}, + [233] = {.lex_state = 1, .external_lex_state = 2}, + [234] = {.lex_state = 1, .external_lex_state = 2}, [235] = {.lex_state = 1, .external_lex_state = 2}, [236] = {.lex_state = 1, .external_lex_state = 2}, [237] = {.lex_state = 5, .external_lex_state = 2}, @@ -11785,8 +11250,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [239] = {.lex_state = 5, .external_lex_state = 2}, [240] = {.lex_state = 4, .external_lex_state = 3}, [241] = {.lex_state = 4, .external_lex_state = 3}, - [242] = {.lex_state = 4, .external_lex_state = 3}, - [243] = {.lex_state = 12, .external_lex_state = 2}, + [242] = {.lex_state = 12, .external_lex_state = 2}, + [243] = {.lex_state = 4, .external_lex_state = 3}, [244] = {.lex_state = 4, .external_lex_state = 3}, [245] = {.lex_state = 4, .external_lex_state = 3}, [246] = {.lex_state = 5, .external_lex_state = 2}, @@ -11814,29 +11279,29 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [268] = {.lex_state = 57, .external_lex_state = 2}, [269] = {.lex_state = 57, .external_lex_state = 2}, [270] = {.lex_state = 57, .external_lex_state = 2}, - [271] = {.lex_state = 12, .external_lex_state = 2}, + [271] = {.lex_state = 57, .external_lex_state = 2}, [272] = {.lex_state = 57, .external_lex_state = 2}, - [273] = {.lex_state = 12, .external_lex_state = 2}, + [273] = {.lex_state = 57, .external_lex_state = 2}, [274] = {.lex_state = 57, .external_lex_state = 2}, [275] = {.lex_state = 57, .external_lex_state = 2}, [276] = {.lex_state = 57, .external_lex_state = 2}, [277] = {.lex_state = 57, .external_lex_state = 2}, [278] = {.lex_state = 57, .external_lex_state = 2}, [279] = {.lex_state = 57, .external_lex_state = 2}, - [280] = {.lex_state = 12, .external_lex_state = 2}, + [280] = {.lex_state = 57, .external_lex_state = 2}, [281] = {.lex_state = 57, .external_lex_state = 2}, [282] = {.lex_state = 57, .external_lex_state = 2}, [283] = {.lex_state = 57, .external_lex_state = 2}, [284] = {.lex_state = 57, .external_lex_state = 2}, [285] = {.lex_state = 57, .external_lex_state = 2}, [286] = {.lex_state = 57, .external_lex_state = 2}, - [287] = {.lex_state = 12, .external_lex_state = 2}, + [287] = {.lex_state = 57, .external_lex_state = 2}, [288] = {.lex_state = 57, .external_lex_state = 2}, [289] = {.lex_state = 57, .external_lex_state = 2}, - [290] = {.lex_state = 5, .external_lex_state = 2}, + [290] = {.lex_state = 57, .external_lex_state = 2}, [291] = {.lex_state = 57, .external_lex_state = 2}, [292] = {.lex_state = 57, .external_lex_state = 2}, - [293] = {.lex_state = 5, .external_lex_state = 2}, + [293] = {.lex_state = 57, .external_lex_state = 2}, [294] = {.lex_state = 57, .external_lex_state = 2}, [295] = {.lex_state = 57, .external_lex_state = 2}, [296] = {.lex_state = 57, .external_lex_state = 2}, @@ -11861,9 +11326,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [315] = {.lex_state = 57, .external_lex_state = 2}, [316] = {.lex_state = 57, .external_lex_state = 2}, [317] = {.lex_state = 57, .external_lex_state = 2}, - [318] = {.lex_state = 12, .external_lex_state = 2}, - [319] = {.lex_state = 12, .external_lex_state = 2}, - [320] = {.lex_state = 12, .external_lex_state = 2}, + [318] = {.lex_state = 57, .external_lex_state = 2}, + [319] = {.lex_state = 57, .external_lex_state = 2}, + [320] = {.lex_state = 57, .external_lex_state = 2}, [321] = {.lex_state = 57, .external_lex_state = 2}, [322] = {.lex_state = 57, .external_lex_state = 2}, [323] = {.lex_state = 57, .external_lex_state = 2}, @@ -11873,10 +11338,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [327] = {.lex_state = 57, .external_lex_state = 2}, [328] = {.lex_state = 57, .external_lex_state = 2}, [329] = {.lex_state = 57, .external_lex_state = 2}, - [330] = {.lex_state = 12, .external_lex_state = 2}, - [331] = {.lex_state = 12, .external_lex_state = 2}, + [330] = {.lex_state = 57, .external_lex_state = 2}, + [331] = {.lex_state = 57, .external_lex_state = 2}, [332] = {.lex_state = 57, .external_lex_state = 2}, - [333] = {.lex_state = 12, .external_lex_state = 2}, + [333] = {.lex_state = 57, .external_lex_state = 2}, [334] = {.lex_state = 57, .external_lex_state = 2}, [335] = {.lex_state = 57, .external_lex_state = 2}, [336] = {.lex_state = 57, .external_lex_state = 2}, @@ -11888,18 +11353,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [342] = {.lex_state = 57, .external_lex_state = 2}, [343] = {.lex_state = 57, .external_lex_state = 2}, [344] = {.lex_state = 57, .external_lex_state = 2}, - [345] = {.lex_state = 57, .external_lex_state = 2}, + [345] = {.lex_state = 12, .external_lex_state = 2}, [346] = {.lex_state = 57, .external_lex_state = 2}, [347] = {.lex_state = 57, .external_lex_state = 2}, [348] = {.lex_state = 57, .external_lex_state = 2}, [349] = {.lex_state = 12, .external_lex_state = 2}, [350] = {.lex_state = 57, .external_lex_state = 2}, - [351] = {.lex_state = 57, .external_lex_state = 2}, + [351] = {.lex_state = 12, .external_lex_state = 2}, [352] = {.lex_state = 57, .external_lex_state = 2}, - [353] = {.lex_state = 5, .external_lex_state = 2}, - [354] = {.lex_state = 57, .external_lex_state = 2}, + [353] = {.lex_state = 57, .external_lex_state = 2}, + [354] = {.lex_state = 5, .external_lex_state = 2}, [355] = {.lex_state = 57, .external_lex_state = 2}, - [356] = {.lex_state = 57, .external_lex_state = 2}, + [356] = {.lex_state = 12, .external_lex_state = 2}, [357] = {.lex_state = 57, .external_lex_state = 2}, [358] = {.lex_state = 57, .external_lex_state = 2}, [359] = {.lex_state = 57, .external_lex_state = 2}, @@ -11911,21 +11376,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [365] = {.lex_state = 57, .external_lex_state = 2}, [366] = {.lex_state = 57, .external_lex_state = 2}, [367] = {.lex_state = 57, .external_lex_state = 2}, - [368] = {.lex_state = 57, .external_lex_state = 2}, + [368] = {.lex_state = 12, .external_lex_state = 2}, [369] = {.lex_state = 57, .external_lex_state = 2}, [370] = {.lex_state = 57, .external_lex_state = 2}, [371] = {.lex_state = 57, .external_lex_state = 2}, [372] = {.lex_state = 57, .external_lex_state = 2}, [373] = {.lex_state = 57, .external_lex_state = 2}, [374] = {.lex_state = 57, .external_lex_state = 2}, - [375] = {.lex_state = 57, .external_lex_state = 2}, + [375] = {.lex_state = 12, .external_lex_state = 2}, [376] = {.lex_state = 57, .external_lex_state = 2}, [377] = {.lex_state = 57, .external_lex_state = 2}, - [378] = {.lex_state = 57, .external_lex_state = 2}, - [379] = {.lex_state = 57, .external_lex_state = 2}, + [378] = {.lex_state = 12, .external_lex_state = 2}, + [379] = {.lex_state = 12, .external_lex_state = 2}, [380] = {.lex_state = 57, .external_lex_state = 2}, [381] = {.lex_state = 57, .external_lex_state = 2}, - [382] = {.lex_state = 57, .external_lex_state = 2}, + [382] = {.lex_state = 12, .external_lex_state = 2}, [383] = {.lex_state = 57, .external_lex_state = 2}, [384] = {.lex_state = 57, .external_lex_state = 2}, [385] = {.lex_state = 57, .external_lex_state = 2}, @@ -11934,11 +11399,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [388] = {.lex_state = 57, .external_lex_state = 2}, [389] = {.lex_state = 57, .external_lex_state = 2}, [390] = {.lex_state = 57, .external_lex_state = 2}, - [391] = {.lex_state = 57, .external_lex_state = 2}, - [392] = {.lex_state = 57, .external_lex_state = 2}, + [391] = {.lex_state = 12, .external_lex_state = 2}, + [392] = {.lex_state = 12, .external_lex_state = 2}, [393] = {.lex_state = 57, .external_lex_state = 2}, [394] = {.lex_state = 57, .external_lex_state = 2}, - [395] = {.lex_state = 57, .external_lex_state = 2}, + [395] = {.lex_state = 12, .external_lex_state = 2}, [396] = {.lex_state = 57, .external_lex_state = 2}, [397] = {.lex_state = 57, .external_lex_state = 2}, [398] = {.lex_state = 57, .external_lex_state = 2}, @@ -11951,7 +11416,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [405] = {.lex_state = 57, .external_lex_state = 2}, [406] = {.lex_state = 57, .external_lex_state = 2}, [407] = {.lex_state = 57, .external_lex_state = 2}, - [408] = {.lex_state = 57, .external_lex_state = 2}, + [408] = {.lex_state = 5, .external_lex_state = 2}, [409] = {.lex_state = 57, .external_lex_state = 2}, [410] = {.lex_state = 57, .external_lex_state = 2}, [411] = {.lex_state = 57, .external_lex_state = 2}, @@ -11964,26 +11429,26 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [418] = {.lex_state = 57, .external_lex_state = 2}, [419] = {.lex_state = 57, .external_lex_state = 2}, [420] = {.lex_state = 57, .external_lex_state = 2}, - [421] = {.lex_state = 57, .external_lex_state = 2}, - [422] = {.lex_state = 57, .external_lex_state = 2}, + [421] = {.lex_state = 12, .external_lex_state = 2}, + [422] = {.lex_state = 5, .external_lex_state = 2}, [423] = {.lex_state = 57, .external_lex_state = 2}, [424] = {.lex_state = 57, .external_lex_state = 2}, [425] = {.lex_state = 57, .external_lex_state = 2}, [426] = {.lex_state = 57, .external_lex_state = 2}, [427] = {.lex_state = 57, .external_lex_state = 2}, - [428] = {.lex_state = 12, .external_lex_state = 2}, - [429] = {.lex_state = 12, .external_lex_state = 2}, + [428] = {.lex_state = 57, .external_lex_state = 2}, + [429] = {.lex_state = 57, .external_lex_state = 2}, [430] = {.lex_state = 57, .external_lex_state = 2}, - [431] = {.lex_state = 12, .external_lex_state = 2}, + [431] = {.lex_state = 57, .external_lex_state = 2}, [432] = {.lex_state = 57, .external_lex_state = 2}, [433] = {.lex_state = 57, .external_lex_state = 2}, [434] = {.lex_state = 57, .external_lex_state = 2}, [435] = {.lex_state = 57, .external_lex_state = 2}, - [436] = {.lex_state = 57, .external_lex_state = 2}, + [436] = {.lex_state = 12, .external_lex_state = 2}, [437] = {.lex_state = 57, .external_lex_state = 2}, [438] = {.lex_state = 57, .external_lex_state = 2}, [439] = {.lex_state = 57, .external_lex_state = 2}, - [440] = {.lex_state = 57, .external_lex_state = 2}, + [440] = {.lex_state = 12, .external_lex_state = 2}, [441] = {.lex_state = 57, .external_lex_state = 2}, [442] = {.lex_state = 57, .external_lex_state = 2}, [443] = {.lex_state = 57, .external_lex_state = 2}, @@ -12004,36 +11469,36 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [458] = {.lex_state = 57, .external_lex_state = 2}, [459] = {.lex_state = 57, .external_lex_state = 2}, [460] = {.lex_state = 57, .external_lex_state = 2}, - [461] = {.lex_state = 12, .external_lex_state = 2}, + [461] = {.lex_state = 57, .external_lex_state = 2}, [462] = {.lex_state = 57, .external_lex_state = 2}, [463] = {.lex_state = 57, .external_lex_state = 2}, [464] = {.lex_state = 57, .external_lex_state = 2}, [465] = {.lex_state = 57, .external_lex_state = 2}, - [466] = {.lex_state = 5, .external_lex_state = 2}, - [467] = {.lex_state = 12, .external_lex_state = 2}, - [468] = {.lex_state = 12, .external_lex_state = 2}, - [469] = {.lex_state = 12, .external_lex_state = 2}, - [470] = {.lex_state = 12, .external_lex_state = 2}, - [471] = {.lex_state = 12, .external_lex_state = 2}, - [472] = {.lex_state = 12, .external_lex_state = 2}, - [473] = {.lex_state = 12, .external_lex_state = 2}, - [474] = {.lex_state = 12, .external_lex_state = 2}, - [475] = {.lex_state = 12, .external_lex_state = 2}, - [476] = {.lex_state = 12, .external_lex_state = 2}, - [477] = {.lex_state = 12, .external_lex_state = 2}, - [478] = {.lex_state = 12, .external_lex_state = 2}, - [479] = {.lex_state = 12, .external_lex_state = 2}, - [480] = {.lex_state = 12, .external_lex_state = 2}, - [481] = {.lex_state = 12, .external_lex_state = 2}, - [482] = {.lex_state = 12, .external_lex_state = 2}, - [483] = {.lex_state = 12, .external_lex_state = 2}, - [484] = {.lex_state = 12, .external_lex_state = 2}, - [485] = {.lex_state = 12, .external_lex_state = 2}, - [486] = {.lex_state = 12, .external_lex_state = 2}, - [487] = {.lex_state = 12, .external_lex_state = 2}, - [488] = {.lex_state = 12, .external_lex_state = 2}, - [489] = {.lex_state = 12, .external_lex_state = 2}, - [490] = {.lex_state = 12, .external_lex_state = 2}, + [466] = {.lex_state = 57, .external_lex_state = 2}, + [467] = {.lex_state = 57, .external_lex_state = 2}, + [468] = {.lex_state = 57, .external_lex_state = 2}, + [469] = {.lex_state = 57, .external_lex_state = 2}, + [470] = {.lex_state = 57, .external_lex_state = 2}, + [471] = {.lex_state = 57, .external_lex_state = 2}, + [472] = {.lex_state = 57, .external_lex_state = 2}, + [473] = {.lex_state = 57, .external_lex_state = 2}, + [474] = {.lex_state = 57, .external_lex_state = 2}, + [475] = {.lex_state = 57, .external_lex_state = 2}, + [476] = {.lex_state = 57, .external_lex_state = 2}, + [477] = {.lex_state = 57, .external_lex_state = 2}, + [478] = {.lex_state = 57, .external_lex_state = 2}, + [479] = {.lex_state = 57, .external_lex_state = 2}, + [480] = {.lex_state = 57, .external_lex_state = 2}, + [481] = {.lex_state = 57, .external_lex_state = 2}, + [482] = {.lex_state = 57, .external_lex_state = 2}, + [483] = {.lex_state = 57, .external_lex_state = 2}, + [484] = {.lex_state = 57, .external_lex_state = 2}, + [485] = {.lex_state = 57, .external_lex_state = 2}, + [486] = {.lex_state = 57, .external_lex_state = 2}, + [487] = {.lex_state = 57, .external_lex_state = 2}, + [488] = {.lex_state = 57, .external_lex_state = 2}, + [489] = {.lex_state = 57, .external_lex_state = 2}, + [490] = {.lex_state = 5, .external_lex_state = 2}, [491] = {.lex_state = 12, .external_lex_state = 2}, [492] = {.lex_state = 12, .external_lex_state = 2}, [493] = {.lex_state = 12, .external_lex_state = 2}, @@ -12042,76 +11507,76 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [496] = {.lex_state = 12, .external_lex_state = 2}, [497] = {.lex_state = 12, .external_lex_state = 2}, [498] = {.lex_state = 12, .external_lex_state = 2}, - [499] = {.lex_state = 5, .external_lex_state = 2}, - [500] = {.lex_state = 5, .external_lex_state = 2}, - [501] = {.lex_state = 7, .external_lex_state = 3}, - [502] = {.lex_state = 7, .external_lex_state = 3}, - [503] = {.lex_state = 7, .external_lex_state = 3}, - [504] = {.lex_state = 7, .external_lex_state = 3}, - [505] = {.lex_state = 7, .external_lex_state = 3}, - [506] = {.lex_state = 7, .external_lex_state = 3}, - [507] = {.lex_state = 7, .external_lex_state = 3}, - [508] = {.lex_state = 7, .external_lex_state = 3}, - [509] = {.lex_state = 11, .external_lex_state = 2}, - [510] = {.lex_state = 7, .external_lex_state = 3}, - [511] = {.lex_state = 7, .external_lex_state = 3}, + [499] = {.lex_state = 12, .external_lex_state = 2}, + [500] = {.lex_state = 12, .external_lex_state = 2}, + [501] = {.lex_state = 12, .external_lex_state = 2}, + [502] = {.lex_state = 12, .external_lex_state = 2}, + [503] = {.lex_state = 12, .external_lex_state = 2}, + [504] = {.lex_state = 12, .external_lex_state = 2}, + [505] = {.lex_state = 12, .external_lex_state = 2}, + [506] = {.lex_state = 12, .external_lex_state = 2}, + [507] = {.lex_state = 12, .external_lex_state = 2}, + [508] = {.lex_state = 12, .external_lex_state = 2}, + [509] = {.lex_state = 12, .external_lex_state = 2}, + [510] = {.lex_state = 12, .external_lex_state = 2}, + [511] = {.lex_state = 12, .external_lex_state = 2}, [512] = {.lex_state = 12, .external_lex_state = 2}, [513] = {.lex_state = 12, .external_lex_state = 2}, [514] = {.lex_state = 12, .external_lex_state = 2}, - [515] = {.lex_state = 7, .external_lex_state = 3}, + [515] = {.lex_state = 12, .external_lex_state = 2}, [516] = {.lex_state = 12, .external_lex_state = 2}, [517] = {.lex_state = 12, .external_lex_state = 2}, [518] = {.lex_state = 12, .external_lex_state = 2}, [519] = {.lex_state = 12, .external_lex_state = 2}, [520] = {.lex_state = 12, .external_lex_state = 2}, - [521] = {.lex_state = 5, .external_lex_state = 2}, - [522] = {.lex_state = 5, .external_lex_state = 2}, + [521] = {.lex_state = 12, .external_lex_state = 2}, + [522] = {.lex_state = 12, .external_lex_state = 2}, [523] = {.lex_state = 5, .external_lex_state = 2}, - [524] = {.lex_state = 12, .external_lex_state = 2}, - [525] = {.lex_state = 12, .external_lex_state = 2}, - [526] = {.lex_state = 5, .external_lex_state = 2}, - [527] = {.lex_state = 12, .external_lex_state = 2}, - [528] = {.lex_state = 12, .external_lex_state = 2}, - [529] = {.lex_state = 12, .external_lex_state = 2}, - [530] = {.lex_state = 12, .external_lex_state = 2}, - [531] = {.lex_state = 12, .external_lex_state = 2}, - [532] = {.lex_state = 12, .external_lex_state = 2}, - [533] = {.lex_state = 5, .external_lex_state = 2}, - [534] = {.lex_state = 5, .external_lex_state = 2}, - [535] = {.lex_state = 5, .external_lex_state = 2}, - [536] = {.lex_state = 5, .external_lex_state = 2}, - [537] = {.lex_state = 7, .external_lex_state = 3}, - [538] = {.lex_state = 7, .external_lex_state = 3}, - [539] = {.lex_state = 5, .external_lex_state = 2}, - [540] = {.lex_state = 5, .external_lex_state = 2}, + [524] = {.lex_state = 5, .external_lex_state = 2}, + [525] = {.lex_state = 7, .external_lex_state = 3}, + [526] = {.lex_state = 7, .external_lex_state = 3}, + [527] = {.lex_state = 7, .external_lex_state = 3}, + [528] = {.lex_state = 7, .external_lex_state = 3}, + [529] = {.lex_state = 7, .external_lex_state = 3}, + [530] = {.lex_state = 7, .external_lex_state = 3}, + [531] = {.lex_state = 7, .external_lex_state = 3}, + [532] = {.lex_state = 7, .external_lex_state = 3}, + [533] = {.lex_state = 7, .external_lex_state = 3}, + [534] = {.lex_state = 11, .external_lex_state = 2}, + [535] = {.lex_state = 7, .external_lex_state = 3}, + [536] = {.lex_state = 12, .external_lex_state = 2}, + [537] = {.lex_state = 12, .external_lex_state = 2}, + [538] = {.lex_state = 12, .external_lex_state = 2}, + [539] = {.lex_state = 12, .external_lex_state = 2}, + [540] = {.lex_state = 12, .external_lex_state = 2}, [541] = {.lex_state = 7, .external_lex_state = 3}, - [542] = {.lex_state = 7, .external_lex_state = 3}, - [543] = {.lex_state = 5, .external_lex_state = 2}, - [544] = {.lex_state = 5, .external_lex_state = 2}, + [542] = {.lex_state = 5, .external_lex_state = 2}, + [543] = {.lex_state = 12, .external_lex_state = 2}, + [544] = {.lex_state = 12, .external_lex_state = 2}, [545] = {.lex_state = 5, .external_lex_state = 2}, - [546] = {.lex_state = 5, .external_lex_state = 2}, - [547] = {.lex_state = 5, .external_lex_state = 2}, - [548] = {.lex_state = 7, .external_lex_state = 3}, - [549] = {.lex_state = 5, .external_lex_state = 2}, + [546] = {.lex_state = 12, .external_lex_state = 2}, + [547] = {.lex_state = 12, .external_lex_state = 2}, + [548] = {.lex_state = 12, .external_lex_state = 2}, + [549] = {.lex_state = 12, .external_lex_state = 2}, [550] = {.lex_state = 5, .external_lex_state = 2}, - [551] = {.lex_state = 5, .external_lex_state = 2}, - [552] = {.lex_state = 5, .external_lex_state = 2}, - [553] = {.lex_state = 5, .external_lex_state = 2}, - [554] = {.lex_state = 5, .external_lex_state = 2}, - [555] = {.lex_state = 7, .external_lex_state = 3}, - [556] = {.lex_state = 7, .external_lex_state = 3}, + [551] = {.lex_state = 12, .external_lex_state = 2}, + [552] = {.lex_state = 12, .external_lex_state = 2}, + [553] = {.lex_state = 12, .external_lex_state = 2}, + [554] = {.lex_state = 12, .external_lex_state = 2}, + [555] = {.lex_state = 5, .external_lex_state = 2}, + [556] = {.lex_state = 12, .external_lex_state = 2}, [557] = {.lex_state = 5, .external_lex_state = 2}, - [558] = {.lex_state = 5, .external_lex_state = 2}, + [558] = {.lex_state = 7, .external_lex_state = 3}, [559] = {.lex_state = 5, .external_lex_state = 2}, - [560] = {.lex_state = 5, .external_lex_state = 2}, - [561] = {.lex_state = 5, .external_lex_state = 2}, + [560] = {.lex_state = 7, .external_lex_state = 3}, + [561] = {.lex_state = 7, .external_lex_state = 3}, [562] = {.lex_state = 5, .external_lex_state = 2}, - [563] = {.lex_state = 5, .external_lex_state = 2}, + [563] = {.lex_state = 7, .external_lex_state = 3}, [564] = {.lex_state = 5, .external_lex_state = 2}, [565] = {.lex_state = 5, .external_lex_state = 2}, [566] = {.lex_state = 5, .external_lex_state = 2}, [567] = {.lex_state = 5, .external_lex_state = 2}, - [568] = {.lex_state = 7, .external_lex_state = 3}, + [568] = {.lex_state = 5, .external_lex_state = 2}, [569] = {.lex_state = 5, .external_lex_state = 2}, [570] = {.lex_state = 5, .external_lex_state = 2}, [571] = {.lex_state = 5, .external_lex_state = 2}, @@ -12122,29 +11587,29 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [576] = {.lex_state = 5, .external_lex_state = 2}, [577] = {.lex_state = 5, .external_lex_state = 2}, [578] = {.lex_state = 5, .external_lex_state = 2}, - [579] = {.lex_state = 7, .external_lex_state = 3}, - [580] = {.lex_state = 7, .external_lex_state = 3}, - [581] = {.lex_state = 7, .external_lex_state = 3}, - [582] = {.lex_state = 7, .external_lex_state = 3}, - [583] = {.lex_state = 7, .external_lex_state = 3}, - [584] = {.lex_state = 7, .external_lex_state = 3}, + [579] = {.lex_state = 5, .external_lex_state = 2}, + [580] = {.lex_state = 5, .external_lex_state = 2}, + [581] = {.lex_state = 5, .external_lex_state = 2}, + [582] = {.lex_state = 5, .external_lex_state = 2}, + [583] = {.lex_state = 5, .external_lex_state = 2}, + [584] = {.lex_state = 5, .external_lex_state = 2}, [585] = {.lex_state = 7, .external_lex_state = 3}, - [586] = {.lex_state = 7, .external_lex_state = 3}, - [587] = {.lex_state = 7, .external_lex_state = 3}, - [588] = {.lex_state = 7, .external_lex_state = 3}, + [586] = {.lex_state = 5, .external_lex_state = 2}, + [587] = {.lex_state = 5, .external_lex_state = 2}, + [588] = {.lex_state = 5, .external_lex_state = 2}, [589] = {.lex_state = 7, .external_lex_state = 3}, - [590] = {.lex_state = 7, .external_lex_state = 3}, - [591] = {.lex_state = 7, .external_lex_state = 3}, + [590] = {.lex_state = 5, .external_lex_state = 2}, + [591] = {.lex_state = 5, .external_lex_state = 2}, [592] = {.lex_state = 5, .external_lex_state = 2}, - [593] = {.lex_state = 7, .external_lex_state = 3}, - [594] = {.lex_state = 7, .external_lex_state = 3}, - [595] = {.lex_state = 7, .external_lex_state = 3}, + [593] = {.lex_state = 5, .external_lex_state = 2}, + [594] = {.lex_state = 5, .external_lex_state = 2}, + [595] = {.lex_state = 5, .external_lex_state = 2}, [596] = {.lex_state = 7, .external_lex_state = 3}, - [597] = {.lex_state = 7, .external_lex_state = 3}, - [598] = {.lex_state = 7, .external_lex_state = 3}, - [599] = {.lex_state = 7, .external_lex_state = 3}, - [600] = {.lex_state = 7, .external_lex_state = 3}, - [601] = {.lex_state = 7, .external_lex_state = 3}, + [597] = {.lex_state = 5, .external_lex_state = 2}, + [598] = {.lex_state = 5, .external_lex_state = 2}, + [599] = {.lex_state = 5, .external_lex_state = 2}, + [600] = {.lex_state = 5, .external_lex_state = 2}, + [601] = {.lex_state = 5, .external_lex_state = 2}, [602] = {.lex_state = 7, .external_lex_state = 3}, [603] = {.lex_state = 7, .external_lex_state = 3}, [604] = {.lex_state = 7, .external_lex_state = 3}, @@ -12152,7 +11617,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [606] = {.lex_state = 7, .external_lex_state = 3}, [607] = {.lex_state = 7, .external_lex_state = 3}, [608] = {.lex_state = 7, .external_lex_state = 3}, - [609] = {.lex_state = 7, .external_lex_state = 3}, + [609] = {.lex_state = 5, .external_lex_state = 2}, [610] = {.lex_state = 7, .external_lex_state = 3}, [611] = {.lex_state = 7, .external_lex_state = 3}, [612] = {.lex_state = 7, .external_lex_state = 3}, @@ -12245,80 +11710,80 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [699] = {.lex_state = 7, .external_lex_state = 3}, [700] = {.lex_state = 7, .external_lex_state = 3}, [701] = {.lex_state = 7, .external_lex_state = 3}, - [702] = {.lex_state = 5, .external_lex_state = 2}, - [703] = {.lex_state = 5, .external_lex_state = 2}, - [704] = {.lex_state = 5, .external_lex_state = 2}, - [705] = {.lex_state = 5, .external_lex_state = 2}, - [706] = {.lex_state = 5, .external_lex_state = 2}, - [707] = {.lex_state = 6, .external_lex_state = 2}, - [708] = {.lex_state = 3, .external_lex_state = 3}, - [709] = {.lex_state = 3, .external_lex_state = 3}, - [710] = {.lex_state = 3, .external_lex_state = 3}, - [711] = {.lex_state = 3, .external_lex_state = 3}, - [712] = {.lex_state = 2, .external_lex_state = 3}, - [713] = {.lex_state = 4, .external_lex_state = 3}, - [714] = {.lex_state = 4, .external_lex_state = 3}, - [715] = {.lex_state = 3, .external_lex_state = 3}, - [716] = {.lex_state = 3, .external_lex_state = 3}, - [717] = {.lex_state = 4, .external_lex_state = 3}, - [718] = {.lex_state = 3, .external_lex_state = 3}, - [719] = {.lex_state = 3, .external_lex_state = 3}, - [720] = {.lex_state = 2, .external_lex_state = 3}, - [721] = {.lex_state = 3, .external_lex_state = 3}, - [722] = {.lex_state = 4, .external_lex_state = 3}, - [723] = {.lex_state = 4, .external_lex_state = 3}, - [724] = {.lex_state = 3, .external_lex_state = 3}, - [725] = {.lex_state = 2, .external_lex_state = 3}, - [726] = {.lex_state = 2, .external_lex_state = 3}, - [727] = {.lex_state = 2, .external_lex_state = 3}, - [728] = {.lex_state = 2, .external_lex_state = 3}, - [729] = {.lex_state = 2, .external_lex_state = 3}, - [730] = {.lex_state = 2, .external_lex_state = 3}, - [731] = {.lex_state = 2, .external_lex_state = 3}, - [732] = {.lex_state = 2, .external_lex_state = 3}, - [733] = {.lex_state = 4, .external_lex_state = 3}, - [734] = {.lex_state = 4, .external_lex_state = 3}, - [735] = {.lex_state = 2, .external_lex_state = 3}, - [736] = {.lex_state = 4, .external_lex_state = 3}, - [737] = {.lex_state = 4, .external_lex_state = 3}, + [702] = {.lex_state = 7, .external_lex_state = 3}, + [703] = {.lex_state = 7, .external_lex_state = 3}, + [704] = {.lex_state = 7, .external_lex_state = 3}, + [705] = {.lex_state = 7, .external_lex_state = 3}, + [706] = {.lex_state = 7, .external_lex_state = 3}, + [707] = {.lex_state = 7, .external_lex_state = 3}, + [708] = {.lex_state = 7, .external_lex_state = 3}, + [709] = {.lex_state = 7, .external_lex_state = 3}, + [710] = {.lex_state = 7, .external_lex_state = 3}, + [711] = {.lex_state = 7, .external_lex_state = 3}, + [712] = {.lex_state = 7, .external_lex_state = 3}, + [713] = {.lex_state = 7, .external_lex_state = 3}, + [714] = {.lex_state = 7, .external_lex_state = 3}, + [715] = {.lex_state = 7, .external_lex_state = 3}, + [716] = {.lex_state = 7, .external_lex_state = 3}, + [717] = {.lex_state = 7, .external_lex_state = 3}, + [718] = {.lex_state = 7, .external_lex_state = 3}, + [719] = {.lex_state = 7, .external_lex_state = 3}, + [720] = {.lex_state = 7, .external_lex_state = 3}, + [721] = {.lex_state = 7, .external_lex_state = 3}, + [722] = {.lex_state = 7, .external_lex_state = 3}, + [723] = {.lex_state = 7, .external_lex_state = 3}, + [724] = {.lex_state = 7, .external_lex_state = 3}, + [725] = {.lex_state = 7, .external_lex_state = 3}, + [726] = {.lex_state = 5, .external_lex_state = 2}, + [727] = {.lex_state = 5, .external_lex_state = 2}, + [728] = {.lex_state = 5, .external_lex_state = 2}, + [729] = {.lex_state = 5, .external_lex_state = 2}, + [730] = {.lex_state = 5, .external_lex_state = 2}, + [731] = {.lex_state = 6, .external_lex_state = 2}, + [732] = {.lex_state = 3, .external_lex_state = 3}, + [733] = {.lex_state = 3, .external_lex_state = 3}, + [734] = {.lex_state = 3, .external_lex_state = 3}, + [735] = {.lex_state = 4, .external_lex_state = 3}, + [736] = {.lex_state = 3, .external_lex_state = 3}, + [737] = {.lex_state = 2, .external_lex_state = 3}, [738] = {.lex_state = 4, .external_lex_state = 3}, [739] = {.lex_state = 4, .external_lex_state = 3}, - [740] = {.lex_state = 4, .external_lex_state = 3}, + [740] = {.lex_state = 3, .external_lex_state = 3}, [741] = {.lex_state = 4, .external_lex_state = 3}, - [742] = {.lex_state = 4, .external_lex_state = 3}, - [743] = {.lex_state = 4, .external_lex_state = 3}, - [744] = {.lex_state = 4, .external_lex_state = 3}, + [742] = {.lex_state = 3, .external_lex_state = 3}, + [743] = {.lex_state = 3, .external_lex_state = 3}, + [744] = {.lex_state = 3, .external_lex_state = 3}, [745] = {.lex_state = 4, .external_lex_state = 3}, - [746] = {.lex_state = 2, .external_lex_state = 3}, + [746] = {.lex_state = 3, .external_lex_state = 3}, [747] = {.lex_state = 2, .external_lex_state = 3}, - [748] = {.lex_state = 4, .external_lex_state = 3}, - [749] = {.lex_state = 4, .external_lex_state = 3}, - [750] = {.lex_state = 4, .external_lex_state = 3}, - [751] = {.lex_state = 4, .external_lex_state = 3}, - [752] = {.lex_state = 4, .external_lex_state = 3}, - [753] = {.lex_state = 4, .external_lex_state = 3}, - [754] = {.lex_state = 4, .external_lex_state = 3}, - [755] = {.lex_state = 4, .external_lex_state = 3}, - [756] = {.lex_state = 4, .external_lex_state = 3}, - [757] = {.lex_state = 4, .external_lex_state = 3}, + [748] = {.lex_state = 3, .external_lex_state = 3}, + [749] = {.lex_state = 2, .external_lex_state = 3}, + [750] = {.lex_state = 2, .external_lex_state = 3}, + [751] = {.lex_state = 2, .external_lex_state = 3}, + [752] = {.lex_state = 2, .external_lex_state = 3}, + [753] = {.lex_state = 2, .external_lex_state = 3}, + [754] = {.lex_state = 2, .external_lex_state = 3}, + [755] = {.lex_state = 2, .external_lex_state = 3}, + [756] = {.lex_state = 2, .external_lex_state = 3}, + [757] = {.lex_state = 2, .external_lex_state = 3}, [758] = {.lex_state = 4, .external_lex_state = 3}, [759] = {.lex_state = 4, .external_lex_state = 3}, - [760] = {.lex_state = 4, .external_lex_state = 3}, - [761] = {.lex_state = 2, .external_lex_state = 3}, + [760] = {.lex_state = 2, .external_lex_state = 3}, + [761] = {.lex_state = 4, .external_lex_state = 3}, [762] = {.lex_state = 4, .external_lex_state = 3}, - [763] = {.lex_state = 2, .external_lex_state = 3}, + [763] = {.lex_state = 4, .external_lex_state = 3}, [764] = {.lex_state = 4, .external_lex_state = 3}, [765] = {.lex_state = 4, .external_lex_state = 3}, - [766] = {.lex_state = 4, .external_lex_state = 3}, - [767] = {.lex_state = 4, .external_lex_state = 3}, - [768] = {.lex_state = 2, .external_lex_state = 3}, + [766] = {.lex_state = 2, .external_lex_state = 3}, + [767] = {.lex_state = 2, .external_lex_state = 3}, + [768] = {.lex_state = 4, .external_lex_state = 3}, [769] = {.lex_state = 4, .external_lex_state = 3}, [770] = {.lex_state = 4, .external_lex_state = 3}, [771] = {.lex_state = 4, .external_lex_state = 3}, [772] = {.lex_state = 4, .external_lex_state = 3}, [773] = {.lex_state = 4, .external_lex_state = 3}, - [774] = {.lex_state = 4, .external_lex_state = 3}, - [775] = {.lex_state = 4, .external_lex_state = 3}, + [774] = {.lex_state = 2, .external_lex_state = 3}, + [775] = {.lex_state = 2, .external_lex_state = 3}, [776] = {.lex_state = 4, .external_lex_state = 3}, [777] = {.lex_state = 4, .external_lex_state = 3}, [778] = {.lex_state = 4, .external_lex_state = 3}, @@ -12326,81 +11791,81 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [780] = {.lex_state = 4, .external_lex_state = 3}, [781] = {.lex_state = 4, .external_lex_state = 3}, [782] = {.lex_state = 4, .external_lex_state = 3}, - [783] = {.lex_state = 4, .external_lex_state = 3}, - [784] = {.lex_state = 4, .external_lex_state = 3}, + [783] = {.lex_state = 2, .external_lex_state = 3}, + [784] = {.lex_state = 2, .external_lex_state = 3}, [785] = {.lex_state = 4, .external_lex_state = 3}, [786] = {.lex_state = 4, .external_lex_state = 3}, [787] = {.lex_state = 4, .external_lex_state = 3}, - [788] = {.lex_state = 4, .external_lex_state = 3}, + [788] = {.lex_state = 2, .external_lex_state = 3}, [789] = {.lex_state = 4, .external_lex_state = 3}, - [790] = {.lex_state = 4, .external_lex_state = 3}, + [790] = {.lex_state = 2, .external_lex_state = 3}, [791] = {.lex_state = 4, .external_lex_state = 3}, [792] = {.lex_state = 4, .external_lex_state = 3}, [793] = {.lex_state = 4, .external_lex_state = 3}, - [794] = {.lex_state = 4, .external_lex_state = 3}, + [794] = {.lex_state = 2, .external_lex_state = 3}, [795] = {.lex_state = 4, .external_lex_state = 3}, - [796] = {.lex_state = 2, .external_lex_state = 3}, - [797] = {.lex_state = 2, .external_lex_state = 3}, - [798] = {.lex_state = 2, .external_lex_state = 3}, - [799] = {.lex_state = 2, .external_lex_state = 3}, + [796] = {.lex_state = 4, .external_lex_state = 3}, + [797] = {.lex_state = 4, .external_lex_state = 3}, + [798] = {.lex_state = 4, .external_lex_state = 3}, + [799] = {.lex_state = 4, .external_lex_state = 3}, [800] = {.lex_state = 4, .external_lex_state = 3}, - [801] = {.lex_state = 4, .external_lex_state = 3}, - [802] = {.lex_state = 4, .external_lex_state = 3}, + [801] = {.lex_state = 2, .external_lex_state = 3}, + [802] = {.lex_state = 2, .external_lex_state = 3}, [803] = {.lex_state = 4, .external_lex_state = 3}, [804] = {.lex_state = 4, .external_lex_state = 3}, - [805] = {.lex_state = 4, .external_lex_state = 3}, + [805] = {.lex_state = 2, .external_lex_state = 3}, [806] = {.lex_state = 4, .external_lex_state = 3}, - [807] = {.lex_state = 2, .external_lex_state = 3}, + [807] = {.lex_state = 4, .external_lex_state = 3}, [808] = {.lex_state = 4, .external_lex_state = 3}, - [809] = {.lex_state = 2, .external_lex_state = 3}, - [810] = {.lex_state = 2, .external_lex_state = 3}, - [811] = {.lex_state = 2, .external_lex_state = 3}, + [809] = {.lex_state = 4, .external_lex_state = 3}, + [810] = {.lex_state = 4, .external_lex_state = 3}, + [811] = {.lex_state = 4, .external_lex_state = 3}, [812] = {.lex_state = 4, .external_lex_state = 3}, [813] = {.lex_state = 4, .external_lex_state = 3}, [814] = {.lex_state = 4, .external_lex_state = 3}, [815] = {.lex_state = 4, .external_lex_state = 3}, - [816] = {.lex_state = 2, .external_lex_state = 3}, + [816] = {.lex_state = 4, .external_lex_state = 3}, [817] = {.lex_state = 4, .external_lex_state = 3}, [818] = {.lex_state = 4, .external_lex_state = 3}, - [819] = {.lex_state = 2, .external_lex_state = 3}, - [820] = {.lex_state = 2, .external_lex_state = 3}, + [819] = {.lex_state = 4, .external_lex_state = 3}, + [820] = {.lex_state = 4, .external_lex_state = 3}, [821] = {.lex_state = 4, .external_lex_state = 3}, - [822] = {.lex_state = 2, .external_lex_state = 3}, - [823] = {.lex_state = 2, .external_lex_state = 3}, + [822] = {.lex_state = 4, .external_lex_state = 3}, + [823] = {.lex_state = 4, .external_lex_state = 3}, [824] = {.lex_state = 4, .external_lex_state = 3}, - [825] = {.lex_state = 2, .external_lex_state = 3}, - [826] = {.lex_state = 2, .external_lex_state = 3}, + [825] = {.lex_state = 4, .external_lex_state = 3}, + [826] = {.lex_state = 4, .external_lex_state = 3}, [827] = {.lex_state = 4, .external_lex_state = 3}, [828] = {.lex_state = 4, .external_lex_state = 3}, [829] = {.lex_state = 2, .external_lex_state = 3}, [830] = {.lex_state = 4, .external_lex_state = 3}, [831] = {.lex_state = 4, .external_lex_state = 3}, - [832] = {.lex_state = 4, .external_lex_state = 3}, + [832] = {.lex_state = 2, .external_lex_state = 3}, [833] = {.lex_state = 4, .external_lex_state = 3}, [834] = {.lex_state = 4, .external_lex_state = 3}, [835] = {.lex_state = 4, .external_lex_state = 3}, [836] = {.lex_state = 4, .external_lex_state = 3}, - [837] = {.lex_state = 4, .external_lex_state = 3}, + [837] = {.lex_state = 2, .external_lex_state = 3}, [838] = {.lex_state = 4, .external_lex_state = 3}, [839] = {.lex_state = 4, .external_lex_state = 3}, [840] = {.lex_state = 4, .external_lex_state = 3}, [841] = {.lex_state = 4, .external_lex_state = 3}, - [842] = {.lex_state = 4, .external_lex_state = 3}, + [842] = {.lex_state = 2, .external_lex_state = 3}, [843] = {.lex_state = 4, .external_lex_state = 3}, [844] = {.lex_state = 4, .external_lex_state = 3}, [845] = {.lex_state = 4, .external_lex_state = 3}, - [846] = {.lex_state = 4, .external_lex_state = 3}, + [846] = {.lex_state = 2, .external_lex_state = 3}, [847] = {.lex_state = 4, .external_lex_state = 3}, [848] = {.lex_state = 4, .external_lex_state = 3}, [849] = {.lex_state = 4, .external_lex_state = 3}, [850] = {.lex_state = 4, .external_lex_state = 3}, [851] = {.lex_state = 4, .external_lex_state = 3}, [852] = {.lex_state = 4, .external_lex_state = 3}, - [853] = {.lex_state = 10, .external_lex_state = 3}, - [854] = {.lex_state = 4, .external_lex_state = 3}, + [853] = {.lex_state = 4, .external_lex_state = 3}, + [854] = {.lex_state = 2, .external_lex_state = 3}, [855] = {.lex_state = 4, .external_lex_state = 3}, [856] = {.lex_state = 4, .external_lex_state = 3}, - [857] = {.lex_state = 4, .external_lex_state = 3}, + [857] = {.lex_state = 2, .external_lex_state = 3}, [858] = {.lex_state = 4, .external_lex_state = 3}, [859] = {.lex_state = 4, .external_lex_state = 3}, [860] = {.lex_state = 4, .external_lex_state = 3}, @@ -12413,22 +11878,22 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [867] = {.lex_state = 4, .external_lex_state = 3}, [868] = {.lex_state = 4, .external_lex_state = 3}, [869] = {.lex_state = 4, .external_lex_state = 3}, - [870] = {.lex_state = 4, .external_lex_state = 3}, + [870] = {.lex_state = 2, .external_lex_state = 3}, [871] = {.lex_state = 4, .external_lex_state = 3}, [872] = {.lex_state = 4, .external_lex_state = 3}, [873] = {.lex_state = 4, .external_lex_state = 3}, [874] = {.lex_state = 4, .external_lex_state = 3}, [875] = {.lex_state = 4, .external_lex_state = 3}, [876] = {.lex_state = 4, .external_lex_state = 3}, - [877] = {.lex_state = 2, .external_lex_state = 3}, + [877] = {.lex_state = 4, .external_lex_state = 3}, [878] = {.lex_state = 4, .external_lex_state = 3}, [879] = {.lex_state = 4, .external_lex_state = 3}, - [880] = {.lex_state = 2, .external_lex_state = 3}, - [881] = {.lex_state = 4, .external_lex_state = 3}, + [880] = {.lex_state = 4, .external_lex_state = 3}, + [881] = {.lex_state = 2, .external_lex_state = 3}, [882] = {.lex_state = 4, .external_lex_state = 3}, [883] = {.lex_state = 4, .external_lex_state = 3}, [884] = {.lex_state = 4, .external_lex_state = 3}, - [885] = {.lex_state = 2, .external_lex_state = 3}, + [885] = {.lex_state = 4, .external_lex_state = 3}, [886] = {.lex_state = 4, .external_lex_state = 3}, [887] = {.lex_state = 4, .external_lex_state = 3}, [888] = {.lex_state = 4, .external_lex_state = 3}, @@ -12437,8 +11902,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [891] = {.lex_state = 4, .external_lex_state = 3}, [892] = {.lex_state = 4, .external_lex_state = 3}, [893] = {.lex_state = 4, .external_lex_state = 3}, - [894] = {.lex_state = 2, .external_lex_state = 3}, - [895] = {.lex_state = 4, .external_lex_state = 3}, + [894] = {.lex_state = 4, .external_lex_state = 3}, + [895] = {.lex_state = 2, .external_lex_state = 3}, [896] = {.lex_state = 4, .external_lex_state = 3}, [897] = {.lex_state = 4, .external_lex_state = 3}, [898] = {.lex_state = 4, .external_lex_state = 3}, @@ -12448,34 +11913,34 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [902] = {.lex_state = 4, .external_lex_state = 3}, [903] = {.lex_state = 4, .external_lex_state = 3}, [904] = {.lex_state = 4, .external_lex_state = 3}, - [905] = {.lex_state = 4, .external_lex_state = 3}, + [905] = {.lex_state = 2, .external_lex_state = 3}, [906] = {.lex_state = 4, .external_lex_state = 3}, [907] = {.lex_state = 4, .external_lex_state = 3}, [908] = {.lex_state = 4, .external_lex_state = 3}, [909] = {.lex_state = 4, .external_lex_state = 3}, - [910] = {.lex_state = 2, .external_lex_state = 3}, + [910] = {.lex_state = 4, .external_lex_state = 3}, [911] = {.lex_state = 4, .external_lex_state = 3}, [912] = {.lex_state = 4, .external_lex_state = 3}, [913] = {.lex_state = 4, .external_lex_state = 3}, - [914] = {.lex_state = 3, .external_lex_state = 3}, + [914] = {.lex_state = 4, .external_lex_state = 3}, [915] = {.lex_state = 4, .external_lex_state = 3}, [916] = {.lex_state = 4, .external_lex_state = 3}, [917] = {.lex_state = 4, .external_lex_state = 3}, [918] = {.lex_state = 4, .external_lex_state = 3}, [919] = {.lex_state = 4, .external_lex_state = 3}, [920] = {.lex_state = 4, .external_lex_state = 3}, - [921] = {.lex_state = 4, .external_lex_state = 3}, - [922] = {.lex_state = 2, .external_lex_state = 3}, + [921] = {.lex_state = 10, .external_lex_state = 3}, + [922] = {.lex_state = 4, .external_lex_state = 3}, [923] = {.lex_state = 4, .external_lex_state = 3}, [924] = {.lex_state = 4, .external_lex_state = 3}, - [925] = {.lex_state = 2, .external_lex_state = 3}, + [925] = {.lex_state = 4, .external_lex_state = 3}, [926] = {.lex_state = 4, .external_lex_state = 3}, [927] = {.lex_state = 4, .external_lex_state = 3}, - [928] = {.lex_state = 2, .external_lex_state = 3}, + [928] = {.lex_state = 4, .external_lex_state = 3}, [929] = {.lex_state = 4, .external_lex_state = 3}, [930] = {.lex_state = 4, .external_lex_state = 3}, [931] = {.lex_state = 4, .external_lex_state = 3}, - [932] = {.lex_state = 2, .external_lex_state = 3}, + [932] = {.lex_state = 4, .external_lex_state = 3}, [933] = {.lex_state = 4, .external_lex_state = 3}, [934] = {.lex_state = 4, .external_lex_state = 3}, [935] = {.lex_state = 4, .external_lex_state = 3}, @@ -12491,15 +11956,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [945] = {.lex_state = 4, .external_lex_state = 3}, [946] = {.lex_state = 4, .external_lex_state = 3}, [947] = {.lex_state = 4, .external_lex_state = 3}, - [948] = {.lex_state = 2, .external_lex_state = 3}, + [948] = {.lex_state = 4, .external_lex_state = 3}, [949] = {.lex_state = 4, .external_lex_state = 3}, - [950] = {.lex_state = 4, .external_lex_state = 3}, + [950] = {.lex_state = 2, .external_lex_state = 3}, [951] = {.lex_state = 4, .external_lex_state = 3}, [952] = {.lex_state = 4, .external_lex_state = 3}, [953] = {.lex_state = 4, .external_lex_state = 3}, [954] = {.lex_state = 4, .external_lex_state = 3}, - [955] = {.lex_state = 2, .external_lex_state = 3}, - [956] = {.lex_state = 4, .external_lex_state = 3}, + [955] = {.lex_state = 4, .external_lex_state = 3}, + [956] = {.lex_state = 2, .external_lex_state = 3}, [957] = {.lex_state = 4, .external_lex_state = 3}, [958] = {.lex_state = 4, .external_lex_state = 3}, [959] = {.lex_state = 4, .external_lex_state = 3}, @@ -12507,66 +11972,66 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [961] = {.lex_state = 4, .external_lex_state = 3}, [962] = {.lex_state = 4, .external_lex_state = 3}, [963] = {.lex_state = 4, .external_lex_state = 3}, - [964] = {.lex_state = 4, .external_lex_state = 3}, - [965] = {.lex_state = 2, .external_lex_state = 3}, + [964] = {.lex_state = 2, .external_lex_state = 3}, + [965] = {.lex_state = 4, .external_lex_state = 3}, [966] = {.lex_state = 2, .external_lex_state = 3}, [967] = {.lex_state = 2, .external_lex_state = 3}, - [968] = {.lex_state = 2, .external_lex_state = 3}, - [969] = {.lex_state = 2, .external_lex_state = 3}, - [970] = {.lex_state = 2, .external_lex_state = 3}, - [971] = {.lex_state = 2, .external_lex_state = 3}, - [972] = {.lex_state = 2, .external_lex_state = 3}, - [973] = {.lex_state = 2, .external_lex_state = 3}, - [974] = {.lex_state = 2, .external_lex_state = 3}, - [975] = {.lex_state = 2, .external_lex_state = 3}, - [976] = {.lex_state = 2, .external_lex_state = 3}, - [977] = {.lex_state = 2, .external_lex_state = 3}, - [978] = {.lex_state = 2, .external_lex_state = 3}, - [979] = {.lex_state = 2, .external_lex_state = 3}, - [980] = {.lex_state = 2, .external_lex_state = 3}, - [981] = {.lex_state = 2, .external_lex_state = 3}, - [982] = {.lex_state = 2, .external_lex_state = 3}, - [983] = {.lex_state = 2, .external_lex_state = 3}, + [968] = {.lex_state = 4, .external_lex_state = 3}, + [969] = {.lex_state = 4, .external_lex_state = 3}, + [970] = {.lex_state = 4, .external_lex_state = 3}, + [971] = {.lex_state = 4, .external_lex_state = 3}, + [972] = {.lex_state = 4, .external_lex_state = 3}, + [973] = {.lex_state = 4, .external_lex_state = 3}, + [974] = {.lex_state = 4, .external_lex_state = 3}, + [975] = {.lex_state = 4, .external_lex_state = 3}, + [976] = {.lex_state = 4, .external_lex_state = 3}, + [977] = {.lex_state = 4, .external_lex_state = 3}, + [978] = {.lex_state = 4, .external_lex_state = 3}, + [979] = {.lex_state = 4, .external_lex_state = 3}, + [980] = {.lex_state = 4, .external_lex_state = 3}, + [981] = {.lex_state = 4, .external_lex_state = 3}, + [982] = {.lex_state = 4, .external_lex_state = 3}, + [983] = {.lex_state = 4, .external_lex_state = 3}, [984] = {.lex_state = 2, .external_lex_state = 3}, - [985] = {.lex_state = 2, .external_lex_state = 3}, - [986] = {.lex_state = 2, .external_lex_state = 3}, - [987] = {.lex_state = 2, .external_lex_state = 3}, - [988] = {.lex_state = 2, .external_lex_state = 3}, - [989] = {.lex_state = 2, .external_lex_state = 3}, - [990] = {.lex_state = 2, .external_lex_state = 3}, - [991] = {.lex_state = 2, .external_lex_state = 3}, - [992] = {.lex_state = 7, .external_lex_state = 3}, - [993] = {.lex_state = 2, .external_lex_state = 3}, - [994] = {.lex_state = 2, .external_lex_state = 3}, - [995] = {.lex_state = 2, .external_lex_state = 3}, - [996] = {.lex_state = 2, .external_lex_state = 3}, - [997] = {.lex_state = 2, .external_lex_state = 3}, - [998] = {.lex_state = 2, .external_lex_state = 3}, - [999] = {.lex_state = 2, .external_lex_state = 3}, - [1000] = {.lex_state = 2, .external_lex_state = 3}, - [1001] = {.lex_state = 2, .external_lex_state = 3}, + [985] = {.lex_state = 4, .external_lex_state = 3}, + [986] = {.lex_state = 4, .external_lex_state = 3}, + [987] = {.lex_state = 4, .external_lex_state = 3}, + [988] = {.lex_state = 4, .external_lex_state = 3}, + [989] = {.lex_state = 4, .external_lex_state = 3}, + [990] = {.lex_state = 4, .external_lex_state = 3}, + [991] = {.lex_state = 4, .external_lex_state = 3}, + [992] = {.lex_state = 4, .external_lex_state = 3}, + [993] = {.lex_state = 4, .external_lex_state = 3}, + [994] = {.lex_state = 4, .external_lex_state = 3}, + [995] = {.lex_state = 4, .external_lex_state = 3}, + [996] = {.lex_state = 4, .external_lex_state = 3}, + [997] = {.lex_state = 4, .external_lex_state = 3}, + [998] = {.lex_state = 4, .external_lex_state = 3}, + [999] = {.lex_state = 4, .external_lex_state = 3}, + [1000] = {.lex_state = 4, .external_lex_state = 3}, + [1001] = {.lex_state = 4, .external_lex_state = 3}, [1002] = {.lex_state = 2, .external_lex_state = 3}, - [1003] = {.lex_state = 2, .external_lex_state = 3}, - [1004] = {.lex_state = 7, .external_lex_state = 3}, - [1005] = {.lex_state = 2, .external_lex_state = 3}, - [1006] = {.lex_state = 2, .external_lex_state = 3}, - [1007] = {.lex_state = 7, .external_lex_state = 3}, - [1008] = {.lex_state = 2, .external_lex_state = 3}, - [1009] = {.lex_state = 2, .external_lex_state = 3}, - [1010] = {.lex_state = 2, .external_lex_state = 3}, - [1011] = {.lex_state = 2, .external_lex_state = 3}, + [1003] = {.lex_state = 4, .external_lex_state = 3}, + [1004] = {.lex_state = 4, .external_lex_state = 3}, + [1005] = {.lex_state = 4, .external_lex_state = 3}, + [1006] = {.lex_state = 3, .external_lex_state = 3}, + [1007] = {.lex_state = 4, .external_lex_state = 3}, + [1008] = {.lex_state = 4, .external_lex_state = 3}, + [1009] = {.lex_state = 4, .external_lex_state = 3}, + [1010] = {.lex_state = 4, .external_lex_state = 3}, + [1011] = {.lex_state = 4, .external_lex_state = 3}, [1012] = {.lex_state = 2, .external_lex_state = 3}, - [1013] = {.lex_state = 7, .external_lex_state = 3}, - [1014] = {.lex_state = 5, .external_lex_state = 2}, + [1013] = {.lex_state = 2, .external_lex_state = 3}, + [1014] = {.lex_state = 2, .external_lex_state = 3}, [1015] = {.lex_state = 2, .external_lex_state = 3}, [1016] = {.lex_state = 2, .external_lex_state = 3}, [1017] = {.lex_state = 2, .external_lex_state = 3}, [1018] = {.lex_state = 2, .external_lex_state = 3}, [1019] = {.lex_state = 2, .external_lex_state = 3}, - [1020] = {.lex_state = 7, .external_lex_state = 3}, + [1020] = {.lex_state = 2, .external_lex_state = 3}, [1021] = {.lex_state = 2, .external_lex_state = 3}, [1022] = {.lex_state = 2, .external_lex_state = 3}, - [1023] = {.lex_state = 7, .external_lex_state = 3}, + [1023] = {.lex_state = 2, .external_lex_state = 3}, [1024] = {.lex_state = 2, .external_lex_state = 3}, [1025] = {.lex_state = 2, .external_lex_state = 3}, [1026] = {.lex_state = 2, .external_lex_state = 3}, @@ -12589,13 +12054,13 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1043] = {.lex_state = 2, .external_lex_state = 3}, [1044] = {.lex_state = 2, .external_lex_state = 3}, [1045] = {.lex_state = 2, .external_lex_state = 3}, - [1046] = {.lex_state = 7, .external_lex_state = 3}, + [1046] = {.lex_state = 2, .external_lex_state = 3}, [1047] = {.lex_state = 2, .external_lex_state = 3}, [1048] = {.lex_state = 2, .external_lex_state = 3}, [1049] = {.lex_state = 2, .external_lex_state = 3}, [1050] = {.lex_state = 2, .external_lex_state = 3}, [1051] = {.lex_state = 2, .external_lex_state = 3}, - [1052] = {.lex_state = 5, .external_lex_state = 2}, + [1052] = {.lex_state = 2, .external_lex_state = 3}, [1053] = {.lex_state = 2, .external_lex_state = 3}, [1054] = {.lex_state = 2, .external_lex_state = 3}, [1055] = {.lex_state = 2, .external_lex_state = 3}, @@ -12604,11 +12069,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1058] = {.lex_state = 2, .external_lex_state = 3}, [1059] = {.lex_state = 2, .external_lex_state = 3}, [1060] = {.lex_state = 2, .external_lex_state = 3}, - [1061] = {.lex_state = 2, .external_lex_state = 3}, + [1061] = {.lex_state = 7, .external_lex_state = 3}, [1062] = {.lex_state = 2, .external_lex_state = 3}, [1063] = {.lex_state = 2, .external_lex_state = 3}, [1064] = {.lex_state = 2, .external_lex_state = 3}, - [1065] = {.lex_state = 2, .external_lex_state = 3}, + [1065] = {.lex_state = 7, .external_lex_state = 3}, [1066] = {.lex_state = 2, .external_lex_state = 3}, [1067] = {.lex_state = 2, .external_lex_state = 3}, [1068] = {.lex_state = 2, .external_lex_state = 3}, @@ -12616,13 +12081,13 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1070] = {.lex_state = 2, .external_lex_state = 3}, [1071] = {.lex_state = 2, .external_lex_state = 3}, [1072] = {.lex_state = 2, .external_lex_state = 3}, - [1073] = {.lex_state = 2, .external_lex_state = 3}, + [1073] = {.lex_state = 5, .external_lex_state = 2}, [1074] = {.lex_state = 2, .external_lex_state = 3}, [1075] = {.lex_state = 2, .external_lex_state = 3}, [1076] = {.lex_state = 2, .external_lex_state = 3}, - [1077] = {.lex_state = 7, .external_lex_state = 3}, + [1077] = {.lex_state = 2, .external_lex_state = 3}, [1078] = {.lex_state = 2, .external_lex_state = 3}, - [1079] = {.lex_state = 7, .external_lex_state = 3}, + [1079] = {.lex_state = 2, .external_lex_state = 3}, [1080] = {.lex_state = 2, .external_lex_state = 3}, [1081] = {.lex_state = 2, .external_lex_state = 3}, [1082] = {.lex_state = 2, .external_lex_state = 3}, @@ -12630,83 +12095,83 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1084] = {.lex_state = 2, .external_lex_state = 3}, [1085] = {.lex_state = 2, .external_lex_state = 3}, [1086] = {.lex_state = 2, .external_lex_state = 3}, - [1087] = {.lex_state = 5, .external_lex_state = 2}, - [1088] = {.lex_state = 5, .external_lex_state = 2}, - [1089] = {.lex_state = 7, .external_lex_state = 3}, - [1090] = {.lex_state = 2, .external_lex_state = 3}, + [1087] = {.lex_state = 2, .external_lex_state = 3}, + [1088] = {.lex_state = 2, .external_lex_state = 3}, + [1089] = {.lex_state = 2, .external_lex_state = 3}, + [1090] = {.lex_state = 7, .external_lex_state = 3}, [1091] = {.lex_state = 7, .external_lex_state = 3}, - [1092] = {.lex_state = 7, .external_lex_state = 3}, - [1093] = {.lex_state = 7, .external_lex_state = 3}, - [1094] = {.lex_state = 7, .external_lex_state = 3}, - [1095] = {.lex_state = 5, .external_lex_state = 2}, + [1092] = {.lex_state = 2, .external_lex_state = 3}, + [1093] = {.lex_state = 2, .external_lex_state = 3}, + [1094] = {.lex_state = 2, .external_lex_state = 3}, + [1095] = {.lex_state = 7, .external_lex_state = 3}, [1096] = {.lex_state = 2, .external_lex_state = 3}, [1097] = {.lex_state = 7, .external_lex_state = 3}, - [1098] = {.lex_state = 7, .external_lex_state = 3}, - [1099] = {.lex_state = 2, .external_lex_state = 3}, - [1100] = {.lex_state = 7, .external_lex_state = 3}, + [1098] = {.lex_state = 2, .external_lex_state = 3}, + [1099] = {.lex_state = 5, .external_lex_state = 2}, + [1100] = {.lex_state = 2, .external_lex_state = 3}, [1101] = {.lex_state = 2, .external_lex_state = 3}, [1102] = {.lex_state = 2, .external_lex_state = 3}, [1103] = {.lex_state = 2, .external_lex_state = 3}, [1104] = {.lex_state = 2, .external_lex_state = 3}, - [1105] = {.lex_state = 5, .external_lex_state = 2}, - [1106] = {.lex_state = 5, .external_lex_state = 2}, - [1107] = {.lex_state = 5, .external_lex_state = 2}, - [1108] = {.lex_state = 5, .external_lex_state = 2}, - [1109] = {.lex_state = 7, .external_lex_state = 3}, + [1105] = {.lex_state = 7, .external_lex_state = 3}, + [1106] = {.lex_state = 2, .external_lex_state = 3}, + [1107] = {.lex_state = 2, .external_lex_state = 3}, + [1108] = {.lex_state = 2, .external_lex_state = 3}, + [1109] = {.lex_state = 2, .external_lex_state = 3}, [1110] = {.lex_state = 2, .external_lex_state = 3}, - [1111] = {.lex_state = 5, .external_lex_state = 2}, + [1111] = {.lex_state = 2, .external_lex_state = 3}, [1112] = {.lex_state = 2, .external_lex_state = 3}, - [1113] = {.lex_state = 7, .external_lex_state = 3}, + [1113] = {.lex_state = 2, .external_lex_state = 3}, [1114] = {.lex_state = 2, .external_lex_state = 3}, - [1115] = {.lex_state = 7, .external_lex_state = 3}, + [1115] = {.lex_state = 2, .external_lex_state = 3}, [1116] = {.lex_state = 2, .external_lex_state = 3}, [1117] = {.lex_state = 2, .external_lex_state = 3}, [1118] = {.lex_state = 2, .external_lex_state = 3}, - [1119] = {.lex_state = 2, .external_lex_state = 3}, + [1119] = {.lex_state = 7, .external_lex_state = 3}, [1120] = {.lex_state = 2, .external_lex_state = 3}, [1121] = {.lex_state = 2, .external_lex_state = 3}, [1122] = {.lex_state = 2, .external_lex_state = 3}, [1123] = {.lex_state = 2, .external_lex_state = 3}, [1124] = {.lex_state = 2, .external_lex_state = 3}, [1125] = {.lex_state = 2, .external_lex_state = 3}, - [1126] = {.lex_state = 7, .external_lex_state = 3}, - [1127] = {.lex_state = 2, .external_lex_state = 3}, + [1126] = {.lex_state = 2, .external_lex_state = 3}, + [1127] = {.lex_state = 7, .external_lex_state = 3}, [1128] = {.lex_state = 2, .external_lex_state = 3}, [1129] = {.lex_state = 2, .external_lex_state = 3}, [1130] = {.lex_state = 2, .external_lex_state = 3}, [1131] = {.lex_state = 2, .external_lex_state = 3}, [1132] = {.lex_state = 2, .external_lex_state = 3}, [1133] = {.lex_state = 2, .external_lex_state = 3}, - [1134] = {.lex_state = 2, .external_lex_state = 3}, - [1135] = {.lex_state = 7, .external_lex_state = 3}, - [1136] = {.lex_state = 2, .external_lex_state = 3}, - [1137] = {.lex_state = 2, .external_lex_state = 3}, - [1138] = {.lex_state = 2, .external_lex_state = 3}, - [1139] = {.lex_state = 2, .external_lex_state = 3}, - [1140] = {.lex_state = 2, .external_lex_state = 3}, - [1141] = {.lex_state = 2, .external_lex_state = 3}, - [1142] = {.lex_state = 2, .external_lex_state = 3}, - [1143] = {.lex_state = 2, .external_lex_state = 3}, + [1134] = {.lex_state = 5, .external_lex_state = 2}, + [1135] = {.lex_state = 2, .external_lex_state = 3}, + [1136] = {.lex_state = 5, .external_lex_state = 2}, + [1137] = {.lex_state = 7, .external_lex_state = 3}, + [1138] = {.lex_state = 7, .external_lex_state = 3}, + [1139] = {.lex_state = 7, .external_lex_state = 3}, + [1140] = {.lex_state = 7, .external_lex_state = 3}, + [1141] = {.lex_state = 7, .external_lex_state = 3}, + [1142] = {.lex_state = 5, .external_lex_state = 2}, + [1143] = {.lex_state = 7, .external_lex_state = 3}, [1144] = {.lex_state = 2, .external_lex_state = 3}, [1145] = {.lex_state = 2, .external_lex_state = 3}, [1146] = {.lex_state = 2, .external_lex_state = 3}, - [1147] = {.lex_state = 2, .external_lex_state = 3}, - [1148] = {.lex_state = 2, .external_lex_state = 3}, - [1149] = {.lex_state = 2, .external_lex_state = 3}, - [1150] = {.lex_state = 2, .external_lex_state = 3}, - [1151] = {.lex_state = 2, .external_lex_state = 3}, + [1147] = {.lex_state = 7, .external_lex_state = 3}, + [1148] = {.lex_state = 7, .external_lex_state = 3}, + [1149] = {.lex_state = 5, .external_lex_state = 2}, + [1150] = {.lex_state = 5, .external_lex_state = 2}, + [1151] = {.lex_state = 5, .external_lex_state = 2}, [1152] = {.lex_state = 2, .external_lex_state = 3}, [1153] = {.lex_state = 2, .external_lex_state = 3}, - [1154] = {.lex_state = 2, .external_lex_state = 3}, + [1154] = {.lex_state = 5, .external_lex_state = 2}, [1155] = {.lex_state = 2, .external_lex_state = 3}, [1156] = {.lex_state = 2, .external_lex_state = 3}, - [1157] = {.lex_state = 7, .external_lex_state = 3}, + [1157] = {.lex_state = 2, .external_lex_state = 3}, [1158] = {.lex_state = 2, .external_lex_state = 3}, [1159] = {.lex_state = 2, .external_lex_state = 3}, - [1160] = {.lex_state = 7, .external_lex_state = 3}, + [1160] = {.lex_state = 2, .external_lex_state = 3}, [1161] = {.lex_state = 2, .external_lex_state = 3}, - [1162] = {.lex_state = 2, .external_lex_state = 3}, - [1163] = {.lex_state = 2, .external_lex_state = 3}, + [1162] = {.lex_state = 7, .external_lex_state = 3}, + [1163] = {.lex_state = 7, .external_lex_state = 3}, [1164] = {.lex_state = 2, .external_lex_state = 3}, [1165] = {.lex_state = 2, .external_lex_state = 3}, [1166] = {.lex_state = 2, .external_lex_state = 3}, @@ -12722,14 +12187,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1176] = {.lex_state = 2, .external_lex_state = 3}, [1177] = {.lex_state = 2, .external_lex_state = 3}, [1178] = {.lex_state = 2, .external_lex_state = 3}, - [1179] = {.lex_state = 7, .external_lex_state = 3}, + [1179] = {.lex_state = 2, .external_lex_state = 3}, [1180] = {.lex_state = 2, .external_lex_state = 3}, [1181] = {.lex_state = 2, .external_lex_state = 3}, - [1182] = {.lex_state = 2, .external_lex_state = 3}, + [1182] = {.lex_state = 5, .external_lex_state = 2}, [1183] = {.lex_state = 2, .external_lex_state = 3}, - [1184] = {.lex_state = 2, .external_lex_state = 3}, + [1184] = {.lex_state = 7, .external_lex_state = 3}, [1185] = {.lex_state = 2, .external_lex_state = 3}, - [1186] = {.lex_state = 2, .external_lex_state = 3}, + [1186] = {.lex_state = 7, .external_lex_state = 3}, [1187] = {.lex_state = 2, .external_lex_state = 3}, [1188] = {.lex_state = 2, .external_lex_state = 3}, [1189] = {.lex_state = 2, .external_lex_state = 3}, @@ -12737,7 +12202,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1191] = {.lex_state = 2, .external_lex_state = 3}, [1192] = {.lex_state = 2, .external_lex_state = 3}, [1193] = {.lex_state = 2, .external_lex_state = 3}, - [1194] = {.lex_state = 2, .external_lex_state = 3}, + [1194] = {.lex_state = 7, .external_lex_state = 3}, [1195] = {.lex_state = 2, .external_lex_state = 3}, [1196] = {.lex_state = 2, .external_lex_state = 3}, [1197] = {.lex_state = 2, .external_lex_state = 3}, @@ -12747,21 +12212,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1201] = {.lex_state = 2, .external_lex_state = 3}, [1202] = {.lex_state = 2, .external_lex_state = 3}, [1203] = {.lex_state = 2, .external_lex_state = 3}, - [1204] = {.lex_state = 2, .external_lex_state = 3}, + [1204] = {.lex_state = 7, .external_lex_state = 3}, [1205] = {.lex_state = 2, .external_lex_state = 3}, [1206] = {.lex_state = 2, .external_lex_state = 3}, [1207] = {.lex_state = 2, .external_lex_state = 3}, [1208] = {.lex_state = 2, .external_lex_state = 3}, [1209] = {.lex_state = 2, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, - [1211] = {.lex_state = 7, .external_lex_state = 3}, + [1211] = {.lex_state = 2, .external_lex_state = 3}, [1212] = {.lex_state = 2, .external_lex_state = 3}, [1213] = {.lex_state = 2, .external_lex_state = 3}, [1214] = {.lex_state = 2, .external_lex_state = 3}, [1215] = {.lex_state = 2, .external_lex_state = 3}, [1216] = {.lex_state = 2, .external_lex_state = 3}, [1217] = {.lex_state = 2, .external_lex_state = 3}, - [1218] = {.lex_state = 2, .external_lex_state = 3}, + [1218] = {.lex_state = 7, .external_lex_state = 3}, [1219] = {.lex_state = 2, .external_lex_state = 3}, [1220] = {.lex_state = 2, .external_lex_state = 3}, [1221] = {.lex_state = 2, .external_lex_state = 3}, @@ -12778,54 +12243,54 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1232] = {.lex_state = 2, .external_lex_state = 3}, [1233] = {.lex_state = 2, .external_lex_state = 3}, [1234] = {.lex_state = 2, .external_lex_state = 3}, - [1235] = {.lex_state = 7, .external_lex_state = 3}, - [1236] = {.lex_state = 7, .external_lex_state = 3}, - [1237] = {.lex_state = 7, .external_lex_state = 3}, - [1238] = {.lex_state = 7, .external_lex_state = 3}, - [1239] = {.lex_state = 7, .external_lex_state = 3}, - [1240] = {.lex_state = 7, .external_lex_state = 3}, - [1241] = {.lex_state = 7, .external_lex_state = 3}, - [1242] = {.lex_state = 7, .external_lex_state = 3}, - [1243] = {.lex_state = 7, .external_lex_state = 3}, - [1244] = {.lex_state = 7, .external_lex_state = 3}, - [1245] = {.lex_state = 7, .external_lex_state = 3}, - [1246] = {.lex_state = 7, .external_lex_state = 3}, - [1247] = {.lex_state = 7, .external_lex_state = 3}, - [1248] = {.lex_state = 7, .external_lex_state = 3}, - [1249] = {.lex_state = 7, .external_lex_state = 3}, - [1250] = {.lex_state = 7, .external_lex_state = 3}, - [1251] = {.lex_state = 7, .external_lex_state = 3}, - [1252] = {.lex_state = 7, .external_lex_state = 3}, - [1253] = {.lex_state = 7, .external_lex_state = 3}, - [1254] = {.lex_state = 7, .external_lex_state = 3}, - [1255] = {.lex_state = 17, .external_lex_state = 3}, - [1256] = {.lex_state = 17, .external_lex_state = 3}, - [1257] = {.lex_state = 9, .external_lex_state = 3}, - [1258] = {.lex_state = 9, .external_lex_state = 3}, - [1259] = {.lex_state = 9, .external_lex_state = 3}, - [1260] = {.lex_state = 9, .external_lex_state = 3}, - [1261] = {.lex_state = 9, .external_lex_state = 3}, - [1262] = {.lex_state = 9, .external_lex_state = 3}, - [1263] = {.lex_state = 9, .external_lex_state = 3}, - [1264] = {.lex_state = 9, .external_lex_state = 3}, - [1265] = {.lex_state = 9, .external_lex_state = 3}, - [1266] = {.lex_state = 9, .external_lex_state = 3}, - [1267] = {.lex_state = 9, .external_lex_state = 3}, - [1268] = {.lex_state = 9, .external_lex_state = 3}, - [1269] = {.lex_state = 17, .external_lex_state = 3}, - [1270] = {.lex_state = 7, .external_lex_state = 3}, - [1271] = {.lex_state = 17, .external_lex_state = 3}, - [1272] = {.lex_state = 17, .external_lex_state = 3}, - [1273] = {.lex_state = 7, .external_lex_state = 3}, - [1274] = {.lex_state = 17, .external_lex_state = 3}, - [1275] = {.lex_state = 7, .external_lex_state = 3}, - [1276] = {.lex_state = 7, .external_lex_state = 3}, - [1277] = {.lex_state = 7, .external_lex_state = 3}, - [1278] = {.lex_state = 9, .external_lex_state = 3}, - [1279] = {.lex_state = 7, .external_lex_state = 3}, - [1280] = {.lex_state = 9, .external_lex_state = 3}, - [1281] = {.lex_state = 7, .external_lex_state = 3}, - [1282] = {.lex_state = 7, .external_lex_state = 3}, + [1235] = {.lex_state = 2, .external_lex_state = 3}, + [1236] = {.lex_state = 2, .external_lex_state = 3}, + [1237] = {.lex_state = 2, .external_lex_state = 3}, + [1238] = {.lex_state = 2, .external_lex_state = 3}, + [1239] = {.lex_state = 2, .external_lex_state = 3}, + [1240] = {.lex_state = 2, .external_lex_state = 3}, + [1241] = {.lex_state = 2, .external_lex_state = 3}, + [1242] = {.lex_state = 2, .external_lex_state = 3}, + [1243] = {.lex_state = 2, .external_lex_state = 3}, + [1244] = {.lex_state = 2, .external_lex_state = 3}, + [1245] = {.lex_state = 2, .external_lex_state = 3}, + [1246] = {.lex_state = 2, .external_lex_state = 3}, + [1247] = {.lex_state = 2, .external_lex_state = 3}, + [1248] = {.lex_state = 2, .external_lex_state = 3}, + [1249] = {.lex_state = 2, .external_lex_state = 3}, + [1250] = {.lex_state = 2, .external_lex_state = 3}, + [1251] = {.lex_state = 2, .external_lex_state = 3}, + [1252] = {.lex_state = 2, .external_lex_state = 3}, + [1253] = {.lex_state = 2, .external_lex_state = 3}, + [1254] = {.lex_state = 2, .external_lex_state = 3}, + [1255] = {.lex_state = 2, .external_lex_state = 3}, + [1256] = {.lex_state = 2, .external_lex_state = 3}, + [1257] = {.lex_state = 2, .external_lex_state = 3}, + [1258] = {.lex_state = 7, .external_lex_state = 3}, + [1259] = {.lex_state = 2, .external_lex_state = 3}, + [1260] = {.lex_state = 2, .external_lex_state = 3}, + [1261] = {.lex_state = 2, .external_lex_state = 3}, + [1262] = {.lex_state = 2, .external_lex_state = 3}, + [1263] = {.lex_state = 2, .external_lex_state = 3}, + [1264] = {.lex_state = 2, .external_lex_state = 3}, + [1265] = {.lex_state = 2, .external_lex_state = 3}, + [1266] = {.lex_state = 2, .external_lex_state = 3}, + [1267] = {.lex_state = 2, .external_lex_state = 3}, + [1268] = {.lex_state = 2, .external_lex_state = 3}, + [1269] = {.lex_state = 2, .external_lex_state = 3}, + [1270] = {.lex_state = 2, .external_lex_state = 3}, + [1271] = {.lex_state = 2, .external_lex_state = 3}, + [1272] = {.lex_state = 2, .external_lex_state = 3}, + [1273] = {.lex_state = 2, .external_lex_state = 3}, + [1274] = {.lex_state = 7, .external_lex_state = 3}, + [1275] = {.lex_state = 2, .external_lex_state = 3}, + [1276] = {.lex_state = 2, .external_lex_state = 3}, + [1277] = {.lex_state = 2, .external_lex_state = 3}, + [1278] = {.lex_state = 2, .external_lex_state = 3}, + [1279] = {.lex_state = 2, .external_lex_state = 3}, + [1280] = {.lex_state = 2, .external_lex_state = 3}, + [1281] = {.lex_state = 2, .external_lex_state = 3}, + [1282] = {.lex_state = 2, .external_lex_state = 3}, [1283] = {.lex_state = 7, .external_lex_state = 3}, [1284] = {.lex_state = 7, .external_lex_state = 3}, [1285] = {.lex_state = 7, .external_lex_state = 3}, @@ -12834,85 +12299,85 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1288] = {.lex_state = 7, .external_lex_state = 3}, [1289] = {.lex_state = 7, .external_lex_state = 3}, [1290] = {.lex_state = 7, .external_lex_state = 3}, - [1291] = {.lex_state = 9, .external_lex_state = 3}, - [1292] = {.lex_state = 17, .external_lex_state = 3}, + [1291] = {.lex_state = 7, .external_lex_state = 3}, + [1292] = {.lex_state = 7, .external_lex_state = 3}, [1293] = {.lex_state = 7, .external_lex_state = 3}, [1294] = {.lex_state = 7, .external_lex_state = 3}, - [1295] = {.lex_state = 17, .external_lex_state = 3}, - [1296] = {.lex_state = 17, .external_lex_state = 3}, - [1297] = {.lex_state = 17, .external_lex_state = 3}, + [1295] = {.lex_state = 7, .external_lex_state = 3}, + [1296] = {.lex_state = 7, .external_lex_state = 3}, + [1297] = {.lex_state = 7, .external_lex_state = 3}, [1298] = {.lex_state = 7, .external_lex_state = 3}, - [1299] = {.lex_state = 17, .external_lex_state = 3}, - [1300] = {.lex_state = 17, .external_lex_state = 3}, - [1301] = {.lex_state = 17, .external_lex_state = 3}, - [1302] = {.lex_state = 17, .external_lex_state = 3}, + [1299] = {.lex_state = 7, .external_lex_state = 3}, + [1300] = {.lex_state = 7, .external_lex_state = 3}, + [1301] = {.lex_state = 7, .external_lex_state = 3}, + [1302] = {.lex_state = 7, .external_lex_state = 3}, [1303] = {.lex_state = 17, .external_lex_state = 3}, [1304] = {.lex_state = 17, .external_lex_state = 3}, - [1305] = {.lex_state = 7, .external_lex_state = 3}, - [1306] = {.lex_state = 7, .external_lex_state = 3}, - [1307] = {.lex_state = 17, .external_lex_state = 3}, - [1308] = {.lex_state = 7, .external_lex_state = 3}, - [1309] = {.lex_state = 17, .external_lex_state = 3}, - [1310] = {.lex_state = 7, .external_lex_state = 3}, - [1311] = {.lex_state = 17, .external_lex_state = 3}, - [1312] = {.lex_state = 7, .external_lex_state = 3}, - [1313] = {.lex_state = 17, .external_lex_state = 3}, + [1305] = {.lex_state = 9, .external_lex_state = 3}, + [1306] = {.lex_state = 9, .external_lex_state = 3}, + [1307] = {.lex_state = 9, .external_lex_state = 3}, + [1308] = {.lex_state = 9, .external_lex_state = 3}, + [1309] = {.lex_state = 9, .external_lex_state = 3}, + [1310] = {.lex_state = 9, .external_lex_state = 3}, + [1311] = {.lex_state = 9, .external_lex_state = 3}, + [1312] = {.lex_state = 9, .external_lex_state = 3}, + [1313] = {.lex_state = 9, .external_lex_state = 3}, [1314] = {.lex_state = 9, .external_lex_state = 3}, - [1315] = {.lex_state = 17, .external_lex_state = 3}, - [1316] = {.lex_state = 17, .external_lex_state = 3}, + [1315] = {.lex_state = 9, .external_lex_state = 3}, + [1316] = {.lex_state = 9, .external_lex_state = 3}, [1317] = {.lex_state = 17, .external_lex_state = 3}, [1318] = {.lex_state = 17, .external_lex_state = 3}, - [1319] = {.lex_state = 17, .external_lex_state = 3}, - [1320] = {.lex_state = 17, .external_lex_state = 3}, + [1319] = {.lex_state = 7, .external_lex_state = 3}, + [1320] = {.lex_state = 7, .external_lex_state = 3}, [1321] = {.lex_state = 17, .external_lex_state = 3}, [1322] = {.lex_state = 17, .external_lex_state = 3}, - [1323] = {.lex_state = 17, .external_lex_state = 3}, - [1324] = {.lex_state = 17, .external_lex_state = 3}, - [1325] = {.lex_state = 17, .external_lex_state = 3}, - [1326] = {.lex_state = 17, .external_lex_state = 3}, - [1327] = {.lex_state = 7, .external_lex_state = 3}, - [1328] = {.lex_state = 17, .external_lex_state = 3}, - [1329] = {.lex_state = 17, .external_lex_state = 3}, - [1330] = {.lex_state = 17, .external_lex_state = 3}, - [1331] = {.lex_state = 17, .external_lex_state = 3}, - [1332] = {.lex_state = 17, .external_lex_state = 3}, - [1333] = {.lex_state = 17, .external_lex_state = 3}, - [1334] = {.lex_state = 17, .external_lex_state = 3}, - [1335] = {.lex_state = 17, .external_lex_state = 3}, + [1323] = {.lex_state = 7, .external_lex_state = 3}, + [1324] = {.lex_state = 7, .external_lex_state = 3}, + [1325] = {.lex_state = 7, .external_lex_state = 3}, + [1326] = {.lex_state = 7, .external_lex_state = 3}, + [1327] = {.lex_state = 9, .external_lex_state = 3}, + [1328] = {.lex_state = 7, .external_lex_state = 3}, + [1329] = {.lex_state = 7, .external_lex_state = 3}, + [1330] = {.lex_state = 7, .external_lex_state = 3}, + [1331] = {.lex_state = 7, .external_lex_state = 3}, + [1332] = {.lex_state = 7, .external_lex_state = 3}, + [1333] = {.lex_state = 7, .external_lex_state = 3}, + [1334] = {.lex_state = 7, .external_lex_state = 3}, + [1335] = {.lex_state = 7, .external_lex_state = 3}, [1336] = {.lex_state = 17, .external_lex_state = 3}, - [1337] = {.lex_state = 17, .external_lex_state = 3}, - [1338] = {.lex_state = 17, .external_lex_state = 3}, - [1339] = {.lex_state = 17, .external_lex_state = 3}, - [1340] = {.lex_state = 17, .external_lex_state = 3}, - [1341] = {.lex_state = 17, .external_lex_state = 3}, - [1342] = {.lex_state = 17, .external_lex_state = 3}, + [1337] = {.lex_state = 7, .external_lex_state = 3}, + [1338] = {.lex_state = 7, .external_lex_state = 3}, + [1339] = {.lex_state = 9, .external_lex_state = 3}, + [1340] = {.lex_state = 9, .external_lex_state = 3}, + [1341] = {.lex_state = 7, .external_lex_state = 3}, + [1342] = {.lex_state = 7, .external_lex_state = 3}, [1343] = {.lex_state = 17, .external_lex_state = 3}, [1344] = {.lex_state = 17, .external_lex_state = 3}, [1345] = {.lex_state = 17, .external_lex_state = 3}, [1346] = {.lex_state = 7, .external_lex_state = 3}, - [1347] = {.lex_state = 7, .external_lex_state = 3}, + [1347] = {.lex_state = 17, .external_lex_state = 3}, [1348] = {.lex_state = 17, .external_lex_state = 3}, - [1349] = {.lex_state = 9, .external_lex_state = 3}, + [1349] = {.lex_state = 7, .external_lex_state = 3}, [1350] = {.lex_state = 7, .external_lex_state = 3}, [1351] = {.lex_state = 17, .external_lex_state = 3}, [1352] = {.lex_state = 9, .external_lex_state = 3}, - [1353] = {.lex_state = 9, .external_lex_state = 3}, - [1354] = {.lex_state = 9, .external_lex_state = 3}, - [1355] = {.lex_state = 7, .external_lex_state = 3}, - [1356] = {.lex_state = 9, .external_lex_state = 3}, - [1357] = {.lex_state = 9, .external_lex_state = 3}, - [1358] = {.lex_state = 9, .external_lex_state = 3}, - [1359] = {.lex_state = 9, .external_lex_state = 3}, - [1360] = {.lex_state = 9, .external_lex_state = 3}, - [1361] = {.lex_state = 17, .external_lex_state = 3}, - [1362] = {.lex_state = 9, .external_lex_state = 3}, - [1363] = {.lex_state = 7, .external_lex_state = 3}, - [1364] = {.lex_state = 9, .external_lex_state = 3}, - [1365] = {.lex_state = 7, .external_lex_state = 3}, - [1366] = {.lex_state = 9, .external_lex_state = 3}, - [1367] = {.lex_state = 7, .external_lex_state = 3}, - [1368] = {.lex_state = 9, .external_lex_state = 3}, - [1369] = {.lex_state = 7, .external_lex_state = 3}, + [1353] = {.lex_state = 17, .external_lex_state = 3}, + [1354] = {.lex_state = 17, .external_lex_state = 3}, + [1355] = {.lex_state = 17, .external_lex_state = 3}, + [1356] = {.lex_state = 7, .external_lex_state = 3}, + [1357] = {.lex_state = 17, .external_lex_state = 3}, + [1358] = {.lex_state = 7, .external_lex_state = 3}, + [1359] = {.lex_state = 17, .external_lex_state = 3}, + [1360] = {.lex_state = 17, .external_lex_state = 3}, + [1361] = {.lex_state = 7, .external_lex_state = 3}, + [1362] = {.lex_state = 17, .external_lex_state = 3}, + [1363] = {.lex_state = 17, .external_lex_state = 3}, + [1364] = {.lex_state = 17, .external_lex_state = 3}, + [1365] = {.lex_state = 17, .external_lex_state = 3}, + [1366] = {.lex_state = 17, .external_lex_state = 3}, + [1367] = {.lex_state = 17, .external_lex_state = 3}, + [1368] = {.lex_state = 17, .external_lex_state = 3}, + [1369] = {.lex_state = 17, .external_lex_state = 3}, [1370] = {.lex_state = 7, .external_lex_state = 3}, [1371] = {.lex_state = 17, .external_lex_state = 3}, [1372] = {.lex_state = 17, .external_lex_state = 3}, @@ -12928,7 +12393,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1382] = {.lex_state = 17, .external_lex_state = 3}, [1383] = {.lex_state = 17, .external_lex_state = 3}, [1384] = {.lex_state = 17, .external_lex_state = 3}, - [1385] = {.lex_state = 13, .external_lex_state = 3}, + [1385] = {.lex_state = 17, .external_lex_state = 3}, [1386] = {.lex_state = 17, .external_lex_state = 3}, [1387] = {.lex_state = 17, .external_lex_state = 3}, [1388] = {.lex_state = 17, .external_lex_state = 3}, @@ -12937,815 +12402,815 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1391] = {.lex_state = 17, .external_lex_state = 3}, [1392] = {.lex_state = 17, .external_lex_state = 3}, [1393] = {.lex_state = 17, .external_lex_state = 3}, - [1394] = {.lex_state = 17, .external_lex_state = 3}, - [1395] = {.lex_state = 17, .external_lex_state = 3}, - [1396] = {.lex_state = 17, .external_lex_state = 3}, - [1397] = {.lex_state = 17, .external_lex_state = 3}, - [1398] = {.lex_state = 7, .external_lex_state = 3}, - [1399] = {.lex_state = 17, .external_lex_state = 3}, - [1400] = {.lex_state = 17, .external_lex_state = 3}, - [1401] = {.lex_state = 13, .external_lex_state = 3}, - [1402] = {.lex_state = 13, .external_lex_state = 3}, - [1403] = {.lex_state = 17, .external_lex_state = 3}, - [1404] = {.lex_state = 17, .external_lex_state = 3}, - [1405] = {.lex_state = 13, .external_lex_state = 3}, - [1406] = {.lex_state = 17, .external_lex_state = 3}, + [1394] = {.lex_state = 9, .external_lex_state = 3}, + [1395] = {.lex_state = 7, .external_lex_state = 3}, + [1396] = {.lex_state = 9, .external_lex_state = 3}, + [1397] = {.lex_state = 9, .external_lex_state = 3}, + [1398] = {.lex_state = 9, .external_lex_state = 3}, + [1399] = {.lex_state = 9, .external_lex_state = 3}, + [1400] = {.lex_state = 9, .external_lex_state = 3}, + [1401] = {.lex_state = 9, .external_lex_state = 3}, + [1402] = {.lex_state = 9, .external_lex_state = 3}, + [1403] = {.lex_state = 9, .external_lex_state = 3}, + [1404] = {.lex_state = 9, .external_lex_state = 3}, + [1405] = {.lex_state = 9, .external_lex_state = 3}, + [1406] = {.lex_state = 9, .external_lex_state = 3}, [1407] = {.lex_state = 9, .external_lex_state = 3}, - [1408] = {.lex_state = 7, .external_lex_state = 3}, - [1409] = {.lex_state = 9, .external_lex_state = 3}, - [1410] = {.lex_state = 9, .external_lex_state = 3}, + [1408] = {.lex_state = 17, .external_lex_state = 3}, + [1409] = {.lex_state = 17, .external_lex_state = 3}, + [1410] = {.lex_state = 17, .external_lex_state = 3}, [1411] = {.lex_state = 7, .external_lex_state = 3}, [1412] = {.lex_state = 7, .external_lex_state = 3}, - [1413] = {.lex_state = 1, .external_lex_state = 2}, - [1414] = {.lex_state = 9, .external_lex_state = 3}, - [1415] = {.lex_state = 1, .external_lex_state = 2}, + [1413] = {.lex_state = 7, .external_lex_state = 3}, + [1414] = {.lex_state = 7, .external_lex_state = 3}, + [1415] = {.lex_state = 7, .external_lex_state = 3}, [1416] = {.lex_state = 7, .external_lex_state = 3}, - [1417] = {.lex_state = 9, .external_lex_state = 3}, + [1417] = {.lex_state = 7, .external_lex_state = 3}, [1418] = {.lex_state = 17, .external_lex_state = 3}, - [1419] = {.lex_state = 9, .external_lex_state = 3}, - [1420] = {.lex_state = 9, .external_lex_state = 3}, + [1419] = {.lex_state = 17, .external_lex_state = 3}, + [1420] = {.lex_state = 17, .external_lex_state = 3}, [1421] = {.lex_state = 9, .external_lex_state = 3}, - [1422] = {.lex_state = 7, .external_lex_state = 3}, - [1423] = {.lex_state = 7, .external_lex_state = 3}, - [1424] = {.lex_state = 7, .external_lex_state = 3}, - [1425] = {.lex_state = 7, .external_lex_state = 3}, - [1426] = {.lex_state = 14, .external_lex_state = 3}, - [1427] = {.lex_state = 9, .external_lex_state = 3}, - [1428] = {.lex_state = 7, .external_lex_state = 3}, - [1429] = {.lex_state = 7, .external_lex_state = 3}, - [1430] = {.lex_state = 7, .external_lex_state = 3}, - [1431] = {.lex_state = 7, .external_lex_state = 3}, - [1432] = {.lex_state = 14, .external_lex_state = 3}, - [1433] = {.lex_state = 7, .external_lex_state = 3}, - [1434] = {.lex_state = 7, .external_lex_state = 3}, - [1435] = {.lex_state = 7, .external_lex_state = 3}, - [1436] = {.lex_state = 7, .external_lex_state = 3}, - [1437] = {.lex_state = 7, .external_lex_state = 3}, - [1438] = {.lex_state = 7, .external_lex_state = 3}, - [1439] = {.lex_state = 7, .external_lex_state = 3}, - [1440] = {.lex_state = 14, .external_lex_state = 3}, - [1441] = {.lex_state = 7, .external_lex_state = 3}, + [1422] = {.lex_state = 13, .external_lex_state = 3}, + [1423] = {.lex_state = 17, .external_lex_state = 3}, + [1424] = {.lex_state = 17, .external_lex_state = 3}, + [1425] = {.lex_state = 17, .external_lex_state = 3}, + [1426] = {.lex_state = 17, .external_lex_state = 3}, + [1427] = {.lex_state = 17, .external_lex_state = 3}, + [1428] = {.lex_state = 17, .external_lex_state = 3}, + [1429] = {.lex_state = 17, .external_lex_state = 3}, + [1430] = {.lex_state = 17, .external_lex_state = 3}, + [1431] = {.lex_state = 17, .external_lex_state = 3}, + [1432] = {.lex_state = 13, .external_lex_state = 3}, + [1433] = {.lex_state = 17, .external_lex_state = 3}, + [1434] = {.lex_state = 17, .external_lex_state = 3}, + [1435] = {.lex_state = 17, .external_lex_state = 3}, + [1436] = {.lex_state = 9, .external_lex_state = 3}, + [1437] = {.lex_state = 17, .external_lex_state = 3}, + [1438] = {.lex_state = 13, .external_lex_state = 3}, + [1439] = {.lex_state = 17, .external_lex_state = 3}, + [1440] = {.lex_state = 9, .external_lex_state = 3}, + [1441] = {.lex_state = 17, .external_lex_state = 3}, [1442] = {.lex_state = 7, .external_lex_state = 3}, - [1443] = {.lex_state = 7, .external_lex_state = 3}, - [1444] = {.lex_state = 7, .external_lex_state = 3}, - [1445] = {.lex_state = 7, .external_lex_state = 3}, - [1446] = {.lex_state = 4, .external_lex_state = 3}, - [1447] = {.lex_state = 7, .external_lex_state = 3}, - [1448] = {.lex_state = 7, .external_lex_state = 3}, - [1449] = {.lex_state = 7, .external_lex_state = 3}, - [1450] = {.lex_state = 7, .external_lex_state = 3}, - [1451] = {.lex_state = 7, .external_lex_state = 3}, - [1452] = {.lex_state = 7, .external_lex_state = 3}, - [1453] = {.lex_state = 7, .external_lex_state = 3}, - [1454] = {.lex_state = 7, .external_lex_state = 3}, - [1455] = {.lex_state = 7, .external_lex_state = 3}, - [1456] = {.lex_state = 7, .external_lex_state = 3}, - [1457] = {.lex_state = 7, .external_lex_state = 3}, - [1458] = {.lex_state = 7, .external_lex_state = 3}, - [1459] = {.lex_state = 7, .external_lex_state = 3}, - [1460] = {.lex_state = 7, .external_lex_state = 3}, - [1461] = {.lex_state = 7, .external_lex_state = 3}, - [1462] = {.lex_state = 4, .external_lex_state = 3}, - [1463] = {.lex_state = 17, .external_lex_state = 3}, - [1464] = {.lex_state = 7, .external_lex_state = 3}, - [1465] = {.lex_state = 4, .external_lex_state = 3}, - [1466] = {.lex_state = 14, .external_lex_state = 3}, - [1467] = {.lex_state = 17, .external_lex_state = 3}, - [1468] = {.lex_state = 17, .external_lex_state = 3}, - [1469] = {.lex_state = 17, .external_lex_state = 3}, - [1470] = {.lex_state = 14, .external_lex_state = 3}, + [1443] = {.lex_state = 17, .external_lex_state = 3}, + [1444] = {.lex_state = 17, .external_lex_state = 3}, + [1445] = {.lex_state = 17, .external_lex_state = 3}, + [1446] = {.lex_state = 7, .external_lex_state = 3}, + [1447] = {.lex_state = 17, .external_lex_state = 3}, + [1448] = {.lex_state = 17, .external_lex_state = 3}, + [1449] = {.lex_state = 13, .external_lex_state = 3}, + [1450] = {.lex_state = 9, .external_lex_state = 3}, + [1451] = {.lex_state = 17, .external_lex_state = 3}, + [1452] = {.lex_state = 9, .external_lex_state = 3}, + [1453] = {.lex_state = 9, .external_lex_state = 3}, + [1454] = {.lex_state = 17, .external_lex_state = 3}, + [1455] = {.lex_state = 9, .external_lex_state = 3}, + [1456] = {.lex_state = 17, .external_lex_state = 3}, + [1457] = {.lex_state = 17, .external_lex_state = 3}, + [1458] = {.lex_state = 17, .external_lex_state = 3}, + [1459] = {.lex_state = 17, .external_lex_state = 3}, + [1460] = {.lex_state = 17, .external_lex_state = 3}, + [1461] = {.lex_state = 17, .external_lex_state = 3}, + [1462] = {.lex_state = 9, .external_lex_state = 3}, + [1463] = {.lex_state = 9, .external_lex_state = 3}, + [1464] = {.lex_state = 1, .external_lex_state = 2}, + [1465] = {.lex_state = 7, .external_lex_state = 3}, + [1466] = {.lex_state = 7, .external_lex_state = 3}, + [1467] = {.lex_state = 7, .external_lex_state = 3}, + [1468] = {.lex_state = 7, .external_lex_state = 3}, + [1469] = {.lex_state = 7, .external_lex_state = 3}, + [1470] = {.lex_state = 7, .external_lex_state = 3}, [1471] = {.lex_state = 17, .external_lex_state = 3}, [1472] = {.lex_state = 7, .external_lex_state = 3}, - [1473] = {.lex_state = 7, .external_lex_state = 3}, - [1474] = {.lex_state = 7, .external_lex_state = 3}, - [1475] = {.lex_state = 4, .external_lex_state = 3}, + [1473] = {.lex_state = 14, .external_lex_state = 3}, + [1474] = {.lex_state = 1, .external_lex_state = 2}, + [1475] = {.lex_state = 7, .external_lex_state = 3}, [1476] = {.lex_state = 7, .external_lex_state = 3}, - [1477] = {.lex_state = 17, .external_lex_state = 3}, + [1477] = {.lex_state = 7, .external_lex_state = 3}, [1478] = {.lex_state = 7, .external_lex_state = 3}, [1479] = {.lex_state = 7, .external_lex_state = 3}, - [1480] = {.lex_state = 4, .external_lex_state = 3}, - [1481] = {.lex_state = 14, .external_lex_state = 3}, - [1482] = {.lex_state = 13, .external_lex_state = 3}, + [1480] = {.lex_state = 7, .external_lex_state = 3}, + [1481] = {.lex_state = 7, .external_lex_state = 3}, + [1482] = {.lex_state = 7, .external_lex_state = 3}, [1483] = {.lex_state = 7, .external_lex_state = 3}, - [1484] = {.lex_state = 14, .external_lex_state = 3}, + [1484] = {.lex_state = 7, .external_lex_state = 3}, [1485] = {.lex_state = 7, .external_lex_state = 3}, [1486] = {.lex_state = 7, .external_lex_state = 3}, [1487] = {.lex_state = 7, .external_lex_state = 3}, - [1488] = {.lex_state = 14, .external_lex_state = 3}, - [1489] = {.lex_state = 0, .external_lex_state = 3}, - [1490] = {.lex_state = 7, .external_lex_state = 3}, + [1488] = {.lex_state = 7, .external_lex_state = 3}, + [1489] = {.lex_state = 7, .external_lex_state = 3}, + [1490] = {.lex_state = 17, .external_lex_state = 3}, [1491] = {.lex_state = 7, .external_lex_state = 3}, - [1492] = {.lex_state = 7, .external_lex_state = 3}, + [1492] = {.lex_state = 17, .external_lex_state = 3}, [1493] = {.lex_state = 14, .external_lex_state = 3}, [1494] = {.lex_state = 7, .external_lex_state = 3}, [1495] = {.lex_state = 17, .external_lex_state = 3}, - [1496] = {.lex_state = 7, .external_lex_state = 3}, + [1496] = {.lex_state = 17, .external_lex_state = 3}, [1497] = {.lex_state = 7, .external_lex_state = 3}, - [1498] = {.lex_state = 17, .external_lex_state = 3}, + [1498] = {.lex_state = 7, .external_lex_state = 3}, [1499] = {.lex_state = 7, .external_lex_state = 3}, [1500] = {.lex_state = 7, .external_lex_state = 3}, - [1501] = {.lex_state = 7, .external_lex_state = 3}, + [1501] = {.lex_state = 4, .external_lex_state = 3}, [1502] = {.lex_state = 7, .external_lex_state = 3}, [1503] = {.lex_state = 7, .external_lex_state = 3}, [1504] = {.lex_state = 7, .external_lex_state = 3}, - [1505] = {.lex_state = 14, .external_lex_state = 3}, - [1506] = {.lex_state = 7, .external_lex_state = 3}, + [1505] = {.lex_state = 17, .external_lex_state = 3}, + [1506] = {.lex_state = 14, .external_lex_state = 3}, [1507] = {.lex_state = 7, .external_lex_state = 3}, - [1508] = {.lex_state = 14, .external_lex_state = 3}, + [1508] = {.lex_state = 7, .external_lex_state = 3}, [1509] = {.lex_state = 7, .external_lex_state = 3}, - [1510] = {.lex_state = 14, .external_lex_state = 3}, - [1511] = {.lex_state = 0, .external_lex_state = 3}, + [1510] = {.lex_state = 7, .external_lex_state = 3}, + [1511] = {.lex_state = 7, .external_lex_state = 3}, [1512] = {.lex_state = 7, .external_lex_state = 3}, [1513] = {.lex_state = 7, .external_lex_state = 3}, - [1514] = {.lex_state = 0, .external_lex_state = 3}, - [1515] = {.lex_state = 0, .external_lex_state = 3}, - [1516] = {.lex_state = 14, .external_lex_state = 3}, - [1517] = {.lex_state = 0, .external_lex_state = 3}, + [1514] = {.lex_state = 7, .external_lex_state = 3}, + [1515] = {.lex_state = 17, .external_lex_state = 3}, + [1516] = {.lex_state = 17, .external_lex_state = 3}, + [1517] = {.lex_state = 17, .external_lex_state = 3}, [1518] = {.lex_state = 7, .external_lex_state = 3}, - [1519] = {.lex_state = 0, .external_lex_state = 3}, + [1519] = {.lex_state = 7, .external_lex_state = 3}, [1520] = {.lex_state = 7, .external_lex_state = 3}, - [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 14, .external_lex_state = 3}, - [1523] = {.lex_state = 0, .external_lex_state = 3}, + [1521] = {.lex_state = 4, .external_lex_state = 3}, + [1522] = {.lex_state = 7, .external_lex_state = 3}, + [1523] = {.lex_state = 7, .external_lex_state = 3}, [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 0, .external_lex_state = 3}, + [1525] = {.lex_state = 7, .external_lex_state = 3}, [1526] = {.lex_state = 7, .external_lex_state = 3}, - [1527] = {.lex_state = 0, .external_lex_state = 3}, - [1528] = {.lex_state = 0, .external_lex_state = 3}, - [1529] = {.lex_state = 0, .external_lex_state = 3}, - [1530] = {.lex_state = 0, .external_lex_state = 3}, + [1527] = {.lex_state = 7, .external_lex_state = 3}, + [1528] = {.lex_state = 7, .external_lex_state = 3}, + [1529] = {.lex_state = 7, .external_lex_state = 3}, + [1530] = {.lex_state = 7, .external_lex_state = 3}, [1531] = {.lex_state = 7, .external_lex_state = 3}, - [1532] = {.lex_state = 4, .external_lex_state = 3}, - [1533] = {.lex_state = 0, .external_lex_state = 3}, - [1534] = {.lex_state = 7, .external_lex_state = 3}, - [1535] = {.lex_state = 7, .external_lex_state = 3}, - [1536] = {.lex_state = 0, .external_lex_state = 3}, - [1537] = {.lex_state = 7, .external_lex_state = 3}, + [1532] = {.lex_state = 7, .external_lex_state = 3}, + [1533] = {.lex_state = 7, .external_lex_state = 3}, + [1534] = {.lex_state = 14, .external_lex_state = 3}, + [1535] = {.lex_state = 14, .external_lex_state = 3}, + [1536] = {.lex_state = 7, .external_lex_state = 3}, + [1537] = {.lex_state = 14, .external_lex_state = 3}, [1538] = {.lex_state = 7, .external_lex_state = 3}, [1539] = {.lex_state = 7, .external_lex_state = 3}, - [1540] = {.lex_state = 0, .external_lex_state = 3}, - [1541] = {.lex_state = 7, .external_lex_state = 3}, - [1542] = {.lex_state = 7, .external_lex_state = 3}, - [1543] = {.lex_state = 0, .external_lex_state = 3}, - [1544] = {.lex_state = 7, .external_lex_state = 3}, + [1540] = {.lex_state = 14, .external_lex_state = 3}, + [1541] = {.lex_state = 14, .external_lex_state = 3}, + [1542] = {.lex_state = 14, .external_lex_state = 3}, + [1543] = {.lex_state = 7, .external_lex_state = 3}, + [1544] = {.lex_state = 14, .external_lex_state = 3}, [1545] = {.lex_state = 7, .external_lex_state = 3}, - [1546] = {.lex_state = 14, .external_lex_state = 3}, - [1547] = {.lex_state = 0, .external_lex_state = 3}, - [1548] = {.lex_state = 0, .external_lex_state = 3}, - [1549] = {.lex_state = 0, .external_lex_state = 3}, - [1550] = {.lex_state = 0, .external_lex_state = 3}, - [1551] = {.lex_state = 14, .external_lex_state = 3}, + [1546] = {.lex_state = 7, .external_lex_state = 3}, + [1547] = {.lex_state = 4, .external_lex_state = 3}, + [1548] = {.lex_state = 4, .external_lex_state = 3}, + [1549] = {.lex_state = 14, .external_lex_state = 3}, + [1550] = {.lex_state = 7, .external_lex_state = 3}, + [1551] = {.lex_state = 7, .external_lex_state = 3}, [1552] = {.lex_state = 7, .external_lex_state = 3}, - [1553] = {.lex_state = 0, .external_lex_state = 3}, - [1554] = {.lex_state = 0, .external_lex_state = 3}, - [1555] = {.lex_state = 0, .external_lex_state = 3}, + [1553] = {.lex_state = 13, .external_lex_state = 3}, + [1554] = {.lex_state = 4, .external_lex_state = 3}, + [1555] = {.lex_state = 7, .external_lex_state = 3}, [1556] = {.lex_state = 7, .external_lex_state = 3}, - [1557] = {.lex_state = 7, .external_lex_state = 3}, - [1558] = {.lex_state = 7, .external_lex_state = 3}, - [1559] = {.lex_state = 17, .external_lex_state = 3}, - [1560] = {.lex_state = 7, .external_lex_state = 3}, + [1557] = {.lex_state = 14, .external_lex_state = 3}, + [1558] = {.lex_state = 0, .external_lex_state = 3}, + [1559] = {.lex_state = 14, .external_lex_state = 3}, + [1560] = {.lex_state = 0, .external_lex_state = 3}, [1561] = {.lex_state = 0, .external_lex_state = 3}, - [1562] = {.lex_state = 7, .external_lex_state = 3}, - [1563] = {.lex_state = 17, .external_lex_state = 3}, - [1564] = {.lex_state = 7, .external_lex_state = 3}, - [1565] = {.lex_state = 7, .external_lex_state = 3}, - [1566] = {.lex_state = 7, .external_lex_state = 3}, - [1567] = {.lex_state = 7, .external_lex_state = 3}, + [1562] = {.lex_state = 0, .external_lex_state = 3}, + [1563] = {.lex_state = 0, .external_lex_state = 3}, + [1564] = {.lex_state = 0, .external_lex_state = 3}, + [1565] = {.lex_state = 0, .external_lex_state = 3}, + [1566] = {.lex_state = 0, .external_lex_state = 3}, + [1567] = {.lex_state = 4, .external_lex_state = 3}, [1568] = {.lex_state = 7, .external_lex_state = 3}, - [1569] = {.lex_state = 10, .external_lex_state = 3}, + [1569] = {.lex_state = 0, .external_lex_state = 3}, [1570] = {.lex_state = 7, .external_lex_state = 3}, - [1571] = {.lex_state = 57, .external_lex_state = 3}, - [1572] = {.lex_state = 10, .external_lex_state = 3}, + [1571] = {.lex_state = 0, .external_lex_state = 3}, + [1572] = {.lex_state = 7, .external_lex_state = 3}, [1573] = {.lex_state = 7, .external_lex_state = 3}, [1574] = {.lex_state = 7, .external_lex_state = 3}, [1575] = {.lex_state = 7, .external_lex_state = 3}, - [1576] = {.lex_state = 17, .external_lex_state = 3}, - [1577] = {.lex_state = 7, .external_lex_state = 3}, - [1578] = {.lex_state = 10, .external_lex_state = 3}, - [1579] = {.lex_state = 7, .external_lex_state = 3}, + [1576] = {.lex_state = 7, .external_lex_state = 3}, + [1577] = {.lex_state = 0, .external_lex_state = 3}, + [1578] = {.lex_state = 7, .external_lex_state = 3}, + [1579] = {.lex_state = 0, .external_lex_state = 3}, [1580] = {.lex_state = 7, .external_lex_state = 3}, - [1581] = {.lex_state = 7, .external_lex_state = 3}, - [1582] = {.lex_state = 7, .external_lex_state = 3}, - [1583] = {.lex_state = 0, .external_lex_state = 3}, + [1581] = {.lex_state = 14, .external_lex_state = 3}, + [1582] = {.lex_state = 0, .external_lex_state = 3}, + [1583] = {.lex_state = 7, .external_lex_state = 3}, [1584] = {.lex_state = 7, .external_lex_state = 3}, - [1585] = {.lex_state = 4, .external_lex_state = 3}, - [1586] = {.lex_state = 57, .external_lex_state = 3}, + [1585] = {.lex_state = 7, .external_lex_state = 3}, + [1586] = {.lex_state = 7, .external_lex_state = 3}, [1587] = {.lex_state = 7, .external_lex_state = 3}, - [1588] = {.lex_state = 7, .external_lex_state = 3}, - [1589] = {.lex_state = 7, .external_lex_state = 3}, + [1588] = {.lex_state = 0, .external_lex_state = 3}, + [1589] = {.lex_state = 0, .external_lex_state = 3}, [1590] = {.lex_state = 7, .external_lex_state = 3}, - [1591] = {.lex_state = 7, .external_lex_state = 3}, - [1592] = {.lex_state = 10, .external_lex_state = 3}, - [1593] = {.lex_state = 10, .external_lex_state = 3}, - [1594] = {.lex_state = 7, .external_lex_state = 3}, - [1595] = {.lex_state = 4, .external_lex_state = 3}, - [1596] = {.lex_state = 17, .external_lex_state = 3}, - [1597] = {.lex_state = 7, .external_lex_state = 3}, + [1591] = {.lex_state = 14, .external_lex_state = 3}, + [1592] = {.lex_state = 7, .external_lex_state = 3}, + [1593] = {.lex_state = 0, .external_lex_state = 3}, + [1594] = {.lex_state = 0, .external_lex_state = 3}, + [1595] = {.lex_state = 7, .external_lex_state = 3}, + [1596] = {.lex_state = 0, .external_lex_state = 3}, + [1597] = {.lex_state = 0, .external_lex_state = 3}, [1598] = {.lex_state = 0, .external_lex_state = 3}, - [1599] = {.lex_state = 7, .external_lex_state = 3}, - [1600] = {.lex_state = 17, .external_lex_state = 3}, + [1599] = {.lex_state = 14, .external_lex_state = 3}, + [1600] = {.lex_state = 0, .external_lex_state = 3}, [1601] = {.lex_state = 7, .external_lex_state = 3}, - [1602] = {.lex_state = 17, .external_lex_state = 3}, - [1603] = {.lex_state = 13, .external_lex_state = 3}, - [1604] = {.lex_state = 7, .external_lex_state = 3}, - [1605] = {.lex_state = 17, .external_lex_state = 3}, + [1602] = {.lex_state = 7, .external_lex_state = 3}, + [1603] = {.lex_state = 0, .external_lex_state = 3}, + [1604] = {.lex_state = 0, .external_lex_state = 3}, + [1605] = {.lex_state = 7, .external_lex_state = 3}, [1606] = {.lex_state = 7, .external_lex_state = 3}, - [1607] = {.lex_state = 14, .external_lex_state = 3}, - [1608] = {.lex_state = 4, .external_lex_state = 3}, + [1607] = {.lex_state = 7, .external_lex_state = 3}, + [1608] = {.lex_state = 17, .external_lex_state = 3}, [1609] = {.lex_state = 7, .external_lex_state = 3}, - [1610] = {.lex_state = 17, .external_lex_state = 3}, + [1610] = {.lex_state = 57, .external_lex_state = 3}, [1611] = {.lex_state = 7, .external_lex_state = 3}, - [1612] = {.lex_state = 17, .external_lex_state = 3}, - [1613] = {.lex_state = 10, .external_lex_state = 3}, - [1614] = {.lex_state = 13, .external_lex_state = 3}, - [1615] = {.lex_state = 17, .external_lex_state = 3}, - [1616] = {.lex_state = 7, .external_lex_state = 3}, - [1617] = {.lex_state = 4, .external_lex_state = 3}, + [1612] = {.lex_state = 7, .external_lex_state = 3}, + [1613] = {.lex_state = 7, .external_lex_state = 3}, + [1614] = {.lex_state = 7, .external_lex_state = 3}, + [1615] = {.lex_state = 7, .external_lex_state = 3}, + [1616] = {.lex_state = 57, .external_lex_state = 3}, + [1617] = {.lex_state = 7, .external_lex_state = 3}, [1618] = {.lex_state = 7, .external_lex_state = 3}, [1619] = {.lex_state = 7, .external_lex_state = 3}, [1620] = {.lex_state = 7, .external_lex_state = 3}, [1621] = {.lex_state = 7, .external_lex_state = 3}, [1622] = {.lex_state = 7, .external_lex_state = 3}, - [1623] = {.lex_state = 0, .external_lex_state = 3}, - [1624] = {.lex_state = 7, .external_lex_state = 3}, - [1625] = {.lex_state = 57, .external_lex_state = 3}, + [1623] = {.lex_state = 7, .external_lex_state = 3}, + [1624] = {.lex_state = 17, .external_lex_state = 3}, + [1625] = {.lex_state = 7, .external_lex_state = 3}, [1626] = {.lex_state = 7, .external_lex_state = 3}, - [1627] = {.lex_state = 17, .external_lex_state = 3}, - [1628] = {.lex_state = 7, .external_lex_state = 3}, - [1629] = {.lex_state = 7, .external_lex_state = 3}, + [1627] = {.lex_state = 10, .external_lex_state = 3}, + [1628] = {.lex_state = 13, .external_lex_state = 3}, + [1629] = {.lex_state = 13, .external_lex_state = 3}, [1630] = {.lex_state = 7, .external_lex_state = 3}, [1631] = {.lex_state = 7, .external_lex_state = 3}, [1632] = {.lex_state = 7, .external_lex_state = 3}, [1633] = {.lex_state = 7, .external_lex_state = 3}, [1634] = {.lex_state = 7, .external_lex_state = 3}, - [1635] = {.lex_state = 17, .external_lex_state = 3}, + [1635] = {.lex_state = 7, .external_lex_state = 3}, [1636] = {.lex_state = 7, .external_lex_state = 3}, - [1637] = {.lex_state = 0, .external_lex_state = 3}, + [1637] = {.lex_state = 7, .external_lex_state = 3}, [1638] = {.lex_state = 7, .external_lex_state = 3}, [1639] = {.lex_state = 7, .external_lex_state = 3}, - [1640] = {.lex_state = 0, .external_lex_state = 3}, - [1641] = {.lex_state = 0, .external_lex_state = 3}, - [1642] = {.lex_state = 17, .external_lex_state = 3}, - [1643] = {.lex_state = 7, .external_lex_state = 3}, - [1644] = {.lex_state = 17, .external_lex_state = 3}, + [1640] = {.lex_state = 7, .external_lex_state = 3}, + [1641] = {.lex_state = 7, .external_lex_state = 3}, + [1642] = {.lex_state = 7, .external_lex_state = 3}, + [1643] = {.lex_state = 17, .external_lex_state = 3}, + [1644] = {.lex_state = 7, .external_lex_state = 3}, [1645] = {.lex_state = 7, .external_lex_state = 3}, - [1646] = {.lex_state = 17, .external_lex_state = 3}, - [1647] = {.lex_state = 7, .external_lex_state = 3}, - [1648] = {.lex_state = 7, .external_lex_state = 3}, - [1649] = {.lex_state = 17, .external_lex_state = 3}, + [1646] = {.lex_state = 0, .external_lex_state = 3}, + [1647] = {.lex_state = 10, .external_lex_state = 3}, + [1648] = {.lex_state = 17, .external_lex_state = 3}, + [1649] = {.lex_state = 7, .external_lex_state = 3}, [1650] = {.lex_state = 7, .external_lex_state = 3}, [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.lex_state = 7, .external_lex_state = 3}, - [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 17, .external_lex_state = 3}, - [1655] = {.lex_state = 17, .external_lex_state = 3}, + [1652] = {.lex_state = 17, .external_lex_state = 3}, + [1653] = {.lex_state = 10, .external_lex_state = 3}, + [1654] = {.lex_state = 7, .external_lex_state = 3}, + [1655] = {.lex_state = 7, .external_lex_state = 3}, [1656] = {.lex_state = 7, .external_lex_state = 3}, [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 7, .external_lex_state = 3}, + [1658] = {.lex_state = 17, .external_lex_state = 3}, [1659] = {.lex_state = 7, .external_lex_state = 3}, [1660] = {.lex_state = 7, .external_lex_state = 3}, [1661] = {.lex_state = 7, .external_lex_state = 3}, [1662] = {.lex_state = 4, .external_lex_state = 3}, - [1663] = {.lex_state = 7, .external_lex_state = 3}, - [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 7, .external_lex_state = 3}, + [1663] = {.lex_state = 10, .external_lex_state = 3}, + [1664] = {.lex_state = 0, .external_lex_state = 3}, + [1665] = {.lex_state = 0, .external_lex_state = 3}, [1666] = {.lex_state = 7, .external_lex_state = 3}, [1667] = {.lex_state = 7, .external_lex_state = 3}, - [1668] = {.lex_state = 0, .external_lex_state = 3}, - [1669] = {.lex_state = 17, .external_lex_state = 3}, + [1668] = {.lex_state = 7, .external_lex_state = 3}, + [1669] = {.lex_state = 7, .external_lex_state = 3}, [1670] = {.lex_state = 7, .external_lex_state = 3}, - [1671] = {.lex_state = 7, .external_lex_state = 3}, + [1671] = {.lex_state = 4, .external_lex_state = 3}, [1672] = {.lex_state = 7, .external_lex_state = 3}, [1673] = {.lex_state = 7, .external_lex_state = 3}, [1674] = {.lex_state = 7, .external_lex_state = 3}, [1675] = {.lex_state = 7, .external_lex_state = 3}, - [1676] = {.lex_state = 7, .external_lex_state = 3}, + [1676] = {.lex_state = 4, .external_lex_state = 3}, [1677] = {.lex_state = 7, .external_lex_state = 3}, - [1678] = {.lex_state = 7, .external_lex_state = 3}, + [1678] = {.lex_state = 10, .external_lex_state = 3}, [1679] = {.lex_state = 7, .external_lex_state = 3}, [1680] = {.lex_state = 7, .external_lex_state = 3}, - [1681] = {.lex_state = 0, .external_lex_state = 3}, + [1681] = {.lex_state = 17, .external_lex_state = 3}, [1682] = {.lex_state = 7, .external_lex_state = 3}, [1683] = {.lex_state = 7, .external_lex_state = 3}, [1684] = {.lex_state = 7, .external_lex_state = 3}, - [1685] = {.lex_state = 7, .external_lex_state = 3}, - [1686] = {.lex_state = 0, .external_lex_state = 3}, - [1687] = {.lex_state = 17, .external_lex_state = 3}, + [1685] = {.lex_state = 14, .external_lex_state = 3}, + [1686] = {.lex_state = 7, .external_lex_state = 3}, + [1687] = {.lex_state = 7, .external_lex_state = 3}, [1688] = {.lex_state = 17, .external_lex_state = 3}, [1689] = {.lex_state = 7, .external_lex_state = 3}, - [1690] = {.lex_state = 0, .external_lex_state = 3}, - [1691] = {.lex_state = 7, .external_lex_state = 3}, - [1692] = {.lex_state = 0, .external_lex_state = 3}, - [1693] = {.lex_state = 0, .external_lex_state = 3}, - [1694] = {.lex_state = 0, .external_lex_state = 3}, - [1695] = {.lex_state = 0, .external_lex_state = 3}, - [1696] = {.lex_state = 0, .external_lex_state = 3}, - [1697] = {.lex_state = 57, .external_lex_state = 3}, - [1698] = {.lex_state = 57, .external_lex_state = 3}, - [1699] = {.lex_state = 7, .external_lex_state = 3}, - [1700] = {.lex_state = 17, .external_lex_state = 3}, + [1690] = {.lex_state = 10, .external_lex_state = 3}, + [1691] = {.lex_state = 17, .external_lex_state = 3}, + [1692] = {.lex_state = 7, .external_lex_state = 3}, + [1693] = {.lex_state = 7, .external_lex_state = 3}, + [1694] = {.lex_state = 7, .external_lex_state = 3}, + [1695] = {.lex_state = 7, .external_lex_state = 3}, + [1696] = {.lex_state = 17, .external_lex_state = 3}, + [1697] = {.lex_state = 0, .external_lex_state = 3}, + [1698] = {.lex_state = 17, .external_lex_state = 3}, + [1699] = {.lex_state = 0, .external_lex_state = 3}, + [1700] = {.lex_state = 7, .external_lex_state = 3}, [1701] = {.lex_state = 7, .external_lex_state = 3}, [1702] = {.lex_state = 7, .external_lex_state = 3}, - [1703] = {.lex_state = 57, .external_lex_state = 3}, - [1704] = {.lex_state = 7, .external_lex_state = 3}, + [1703] = {.lex_state = 7, .external_lex_state = 3}, + [1704] = {.lex_state = 0, .external_lex_state = 3}, [1705] = {.lex_state = 4, .external_lex_state = 3}, - [1706] = {.lex_state = 57, .external_lex_state = 3}, - [1707] = {.lex_state = 7, .external_lex_state = 3}, + [1706] = {.lex_state = 17, .external_lex_state = 3}, + [1707] = {.lex_state = 17, .external_lex_state = 3}, [1708] = {.lex_state = 17, .external_lex_state = 3}, - [1709] = {.lex_state = 7, .external_lex_state = 3}, - [1710] = {.lex_state = 0, .external_lex_state = 3}, + [1709] = {.lex_state = 17, .external_lex_state = 3}, + [1710] = {.lex_state = 7, .external_lex_state = 3}, [1711] = {.lex_state = 7, .external_lex_state = 3}, - [1712] = {.lex_state = 7, .external_lex_state = 3}, - [1713] = {.lex_state = 57, .external_lex_state = 3}, - [1714] = {.lex_state = 0, .external_lex_state = 3}, + [1712] = {.lex_state = 0, .external_lex_state = 3}, + [1713] = {.lex_state = 7, .external_lex_state = 3}, + [1714] = {.lex_state = 17, .external_lex_state = 3}, [1715] = {.lex_state = 0, .external_lex_state = 3}, [1716] = {.lex_state = 7, .external_lex_state = 3}, - [1717] = {.lex_state = 18, .external_lex_state = 3}, - [1718] = {.lex_state = 57, .external_lex_state = 3}, - [1719] = {.lex_state = 7, .external_lex_state = 3}, - [1720] = {.lex_state = 57, .external_lex_state = 3}, - [1721] = {.lex_state = 18, .external_lex_state = 3}, - [1722] = {.lex_state = 4, .external_lex_state = 3}, - [1723] = {.lex_state = 57, .external_lex_state = 3}, - [1724] = {.lex_state = 57, .external_lex_state = 3}, - [1725] = {.lex_state = 7, .external_lex_state = 3}, + [1717] = {.lex_state = 4, .external_lex_state = 3}, + [1718] = {.lex_state = 17, .external_lex_state = 3}, + [1719] = {.lex_state = 0, .external_lex_state = 3}, + [1720] = {.lex_state = 7, .external_lex_state = 3}, + [1721] = {.lex_state = 7, .external_lex_state = 3}, + [1722] = {.lex_state = 7, .external_lex_state = 3}, + [1723] = {.lex_state = 0, .external_lex_state = 3}, + [1724] = {.lex_state = 7, .external_lex_state = 3}, + [1725] = {.lex_state = 17, .external_lex_state = 3}, [1726] = {.lex_state = 0, .external_lex_state = 3}, - [1727] = {.lex_state = 57, .external_lex_state = 3}, - [1728] = {.lex_state = 57, .external_lex_state = 3}, - [1729] = {.lex_state = 17, .external_lex_state = 3}, - [1730] = {.lex_state = 17, .external_lex_state = 3}, - [1731] = {.lex_state = 0, .external_lex_state = 3}, - [1732] = {.lex_state = 17, .external_lex_state = 3}, - [1733] = {.lex_state = 57, .external_lex_state = 3}, - [1734] = {.lex_state = 0, .external_lex_state = 3}, - [1735] = {.lex_state = 0, .external_lex_state = 3}, - [1736] = {.lex_state = 4, .external_lex_state = 4}, + [1727] = {.lex_state = 17, .external_lex_state = 3}, + [1728] = {.lex_state = 17, .external_lex_state = 3}, + [1729] = {.lex_state = 7, .external_lex_state = 3}, + [1730] = {.lex_state = 57, .external_lex_state = 3}, + [1731] = {.lex_state = 17, .external_lex_state = 3}, + [1732] = {.lex_state = 7, .external_lex_state = 3}, + [1733] = {.lex_state = 7, .external_lex_state = 3}, + [1734] = {.lex_state = 7, .external_lex_state = 3}, + [1735] = {.lex_state = 7, .external_lex_state = 3}, + [1736] = {.lex_state = 7, .external_lex_state = 3}, [1737] = {.lex_state = 57, .external_lex_state = 3}, - [1738] = {.lex_state = 7, .external_lex_state = 3}, - [1739] = {.lex_state = 7, .external_lex_state = 3}, - [1740] = {.lex_state = 57, .external_lex_state = 3}, - [1741] = {.lex_state = 57, .external_lex_state = 3}, - [1742] = {.lex_state = 7, .external_lex_state = 3}, - [1743] = {.lex_state = 7, .external_lex_state = 3}, + [1738] = {.lex_state = 0, .external_lex_state = 3}, + [1739] = {.lex_state = 17, .external_lex_state = 3}, + [1740] = {.lex_state = 18, .external_lex_state = 3}, + [1741] = {.lex_state = 17, .external_lex_state = 3}, + [1742] = {.lex_state = 57, .external_lex_state = 3}, + [1743] = {.lex_state = 57, .external_lex_state = 3}, [1744] = {.lex_state = 7, .external_lex_state = 3}, - [1745] = {.lex_state = 4, .external_lex_state = 4}, - [1746] = {.lex_state = 4, .external_lex_state = 3}, - [1747] = {.lex_state = 18, .external_lex_state = 3}, - [1748] = {.lex_state = 57, .external_lex_state = 3}, - [1749] = {.lex_state = 4, .external_lex_state = 4}, - [1750] = {.lex_state = 57, .external_lex_state = 3}, - [1751] = {.lex_state = 0, .external_lex_state = 3}, - [1752] = {.lex_state = 0, .external_lex_state = 3}, + [1745] = {.lex_state = 57, .external_lex_state = 3}, + [1746] = {.lex_state = 7, .external_lex_state = 3}, + [1747] = {.lex_state = 0, .external_lex_state = 3}, + [1748] = {.lex_state = 7, .external_lex_state = 3}, + [1749] = {.lex_state = 7, .external_lex_state = 3}, + [1750] = {.lex_state = 7, .external_lex_state = 3}, + [1751] = {.lex_state = 7, .external_lex_state = 3}, + [1752] = {.lex_state = 4, .external_lex_state = 3}, [1753] = {.lex_state = 17, .external_lex_state = 3}, - [1754] = {.lex_state = 18, .external_lex_state = 3}, - [1755] = {.lex_state = 57, .external_lex_state = 3}, - [1756] = {.lex_state = 7, .external_lex_state = 3}, - [1757] = {.lex_state = 7, .external_lex_state = 3}, - [1758] = {.lex_state = 7, .external_lex_state = 3}, - [1759] = {.lex_state = 7, .external_lex_state = 3}, + [1754] = {.lex_state = 0, .external_lex_state = 3}, + [1755] = {.lex_state = 7, .external_lex_state = 3}, + [1756] = {.lex_state = 4, .external_lex_state = 3}, + [1757] = {.lex_state = 57, .external_lex_state = 3}, + [1758] = {.lex_state = 57, .external_lex_state = 3}, + [1759] = {.lex_state = 0, .external_lex_state = 3}, [1760] = {.lex_state = 57, .external_lex_state = 3}, - [1761] = {.lex_state = 57, .external_lex_state = 3}, - [1762] = {.lex_state = 4, .external_lex_state = 3}, - [1763] = {.lex_state = 17, .external_lex_state = 3}, - [1764] = {.lex_state = 57, .external_lex_state = 3}, - [1765] = {.lex_state = 57, .external_lex_state = 3}, + [1761] = {.lex_state = 18, .external_lex_state = 3}, + [1762] = {.lex_state = 18, .external_lex_state = 3}, + [1763] = {.lex_state = 7, .external_lex_state = 3}, + [1764] = {.lex_state = 7, .external_lex_state = 3}, + [1765] = {.lex_state = 7, .external_lex_state = 3}, [1766] = {.lex_state = 7, .external_lex_state = 3}, - [1767] = {.lex_state = 0, .external_lex_state = 3}, - [1768] = {.lex_state = 17, .external_lex_state = 3}, - [1769] = {.lex_state = 17, .external_lex_state = 3}, - [1770] = {.lex_state = 57, .external_lex_state = 3}, - [1771] = {.lex_state = 57, .external_lex_state = 3}, - [1772] = {.lex_state = 7, .external_lex_state = 3}, - [1773] = {.lex_state = 17, .external_lex_state = 3}, - [1774] = {.lex_state = 7, .external_lex_state = 3}, + [1767] = {.lex_state = 57, .external_lex_state = 3}, + [1768] = {.lex_state = 7, .external_lex_state = 3}, + [1769] = {.lex_state = 7, .external_lex_state = 3}, + [1770] = {.lex_state = 17, .external_lex_state = 3}, + [1771] = {.lex_state = 0, .external_lex_state = 3}, + [1772] = {.lex_state = 57, .external_lex_state = 3}, + [1773] = {.lex_state = 7, .external_lex_state = 3}, + [1774] = {.lex_state = 57, .external_lex_state = 3}, [1775] = {.lex_state = 17, .external_lex_state = 3}, - [1776] = {.lex_state = 7, .external_lex_state = 3}, - [1777] = {.lex_state = 0, .external_lex_state = 3}, - [1778] = {.lex_state = 57, .external_lex_state = 3}, - [1779] = {.lex_state = 0, .external_lex_state = 3}, - [1780] = {.lex_state = 4, .external_lex_state = 4}, - [1781] = {.lex_state = 0, .external_lex_state = 3}, - [1782] = {.lex_state = 57, .external_lex_state = 3}, - [1783] = {.lex_state = 57, .external_lex_state = 3}, - [1784] = {.lex_state = 57, .external_lex_state = 3}, - [1785] = {.lex_state = 4, .external_lex_state = 4}, - [1786] = {.lex_state = 57, .external_lex_state = 3}, + [1776] = {.lex_state = 57, .external_lex_state = 3}, + [1777] = {.lex_state = 7, .external_lex_state = 3}, + [1778] = {.lex_state = 0, .external_lex_state = 3}, + [1779] = {.lex_state = 7, .external_lex_state = 3}, + [1780] = {.lex_state = 57, .external_lex_state = 3}, + [1781] = {.lex_state = 57, .external_lex_state = 3}, + [1782] = {.lex_state = 0, .external_lex_state = 3}, + [1783] = {.lex_state = 4, .external_lex_state = 4}, + [1784] = {.lex_state = 7, .external_lex_state = 3}, + [1785] = {.lex_state = 18, .external_lex_state = 3}, + [1786] = {.lex_state = 4, .external_lex_state = 3}, [1787] = {.lex_state = 7, .external_lex_state = 3}, - [1788] = {.lex_state = 4, .external_lex_state = 4}, - [1789] = {.lex_state = 4, .external_lex_state = 4}, - [1790] = {.lex_state = 0, .external_lex_state = 3}, - [1791] = {.lex_state = 57, .external_lex_state = 3}, - [1792] = {.lex_state = 4, .external_lex_state = 3}, - [1793] = {.lex_state = 7, .external_lex_state = 3}, - [1794] = {.lex_state = 0, .external_lex_state = 3}, - [1795] = {.lex_state = 0, .external_lex_state = 3}, - [1796] = {.lex_state = 0, .external_lex_state = 3}, - [1797] = {.lex_state = 10, .external_lex_state = 3}, - [1798] = {.lex_state = 10, .external_lex_state = 3}, - [1799] = {.lex_state = 0, .external_lex_state = 3}, - [1800] = {.lex_state = 10, .external_lex_state = 3}, - [1801] = {.lex_state = 7, .external_lex_state = 3}, - [1802] = {.lex_state = 10, .external_lex_state = 3}, - [1803] = {.lex_state = 10, .external_lex_state = 3}, + [1788] = {.lex_state = 17, .external_lex_state = 3}, + [1789] = {.lex_state = 7, .external_lex_state = 3}, + [1790] = {.lex_state = 4, .external_lex_state = 4}, + [1791] = {.lex_state = 4, .external_lex_state = 4}, + [1792] = {.lex_state = 57, .external_lex_state = 3}, + [1793] = {.lex_state = 0, .external_lex_state = 3}, + [1794] = {.lex_state = 57, .external_lex_state = 3}, + [1795] = {.lex_state = 57, .external_lex_state = 3}, + [1796] = {.lex_state = 7, .external_lex_state = 3}, + [1797] = {.lex_state = 0, .external_lex_state = 3}, + [1798] = {.lex_state = 4, .external_lex_state = 4}, + [1799] = {.lex_state = 4, .external_lex_state = 3}, + [1800] = {.lex_state = 57, .external_lex_state = 3}, + [1801] = {.lex_state = 4, .external_lex_state = 4}, + [1802] = {.lex_state = 57, .external_lex_state = 3}, + [1803] = {.lex_state = 0, .external_lex_state = 3}, [1804] = {.lex_state = 0, .external_lex_state = 3}, - [1805] = {.lex_state = 7, .external_lex_state = 3}, - [1806] = {.lex_state = 3, .external_lex_state = 3}, - [1807] = {.lex_state = 3, .external_lex_state = 3}, - [1808] = {.lex_state = 0, .external_lex_state = 3}, - [1809] = {.lex_state = 10, .external_lex_state = 3}, + [1805] = {.lex_state = 17, .external_lex_state = 3}, + [1806] = {.lex_state = 17, .external_lex_state = 3}, + [1807] = {.lex_state = 7, .external_lex_state = 3}, + [1808] = {.lex_state = 4, .external_lex_state = 4}, + [1809] = {.lex_state = 7, .external_lex_state = 3}, [1810] = {.lex_state = 57, .external_lex_state = 3}, [1811] = {.lex_state = 0, .external_lex_state = 3}, - [1812] = {.lex_state = 3, .external_lex_state = 3}, - [1813] = {.lex_state = 0, .external_lex_state = 3}, - [1814] = {.lex_state = 7, .external_lex_state = 3}, + [1812] = {.lex_state = 7, .external_lex_state = 3}, + [1813] = {.lex_state = 7, .external_lex_state = 3}, + [1814] = {.lex_state = 57, .external_lex_state = 3}, [1815] = {.lex_state = 57, .external_lex_state = 3}, - [1816] = {.lex_state = 0, .external_lex_state = 3}, - [1817] = {.lex_state = 3, .external_lex_state = 3}, - [1818] = {.lex_state = 3, .external_lex_state = 3}, + [1816] = {.lex_state = 57, .external_lex_state = 3}, + [1817] = {.lex_state = 0, .external_lex_state = 3}, + [1818] = {.lex_state = 57, .external_lex_state = 3}, [1819] = {.lex_state = 0, .external_lex_state = 3}, - [1820] = {.lex_state = 3, .external_lex_state = 3}, - [1821] = {.lex_state = 3, .external_lex_state = 3}, - [1822] = {.lex_state = 7, .external_lex_state = 3}, + [1820] = {.lex_state = 57, .external_lex_state = 3}, + [1821] = {.lex_state = 4, .external_lex_state = 4}, + [1822] = {.lex_state = 0, .external_lex_state = 3}, [1823] = {.lex_state = 57, .external_lex_state = 3}, - [1824] = {.lex_state = 17, .external_lex_state = 3}, + [1824] = {.lex_state = 57, .external_lex_state = 3}, [1825] = {.lex_state = 57, .external_lex_state = 3}, [1826] = {.lex_state = 57, .external_lex_state = 3}, [1827] = {.lex_state = 0, .external_lex_state = 3}, - [1828] = {.lex_state = 7, .external_lex_state = 3}, - [1829] = {.lex_state = 10, .external_lex_state = 3}, - [1830] = {.lex_state = 57, .external_lex_state = 3}, - [1831] = {.lex_state = 0, .external_lex_state = 3}, - [1832] = {.lex_state = 7, .external_lex_state = 3}, - [1833] = {.lex_state = 7, .external_lex_state = 3}, - [1834] = {.lex_state = 0, .external_lex_state = 3}, - [1835] = {.lex_state = 7, .external_lex_state = 3}, - [1836] = {.lex_state = 0, .external_lex_state = 3}, + [1828] = {.lex_state = 17, .external_lex_state = 3}, + [1829] = {.lex_state = 17, .external_lex_state = 3}, + [1830] = {.lex_state = 0, .external_lex_state = 3}, + [1831] = {.lex_state = 57, .external_lex_state = 3}, + [1832] = {.lex_state = 0, .external_lex_state = 3}, + [1833] = {.lex_state = 17, .external_lex_state = 3}, + [1834] = {.lex_state = 7, .external_lex_state = 3}, + [1835] = {.lex_state = 0, .external_lex_state = 3}, + [1836] = {.lex_state = 57, .external_lex_state = 3}, [1837] = {.lex_state = 0, .external_lex_state = 3}, [1838] = {.lex_state = 0, .external_lex_state = 3}, - [1839] = {.lex_state = 7, .external_lex_state = 3}, - [1840] = {.lex_state = 7, .external_lex_state = 3}, - [1841] = {.lex_state = 57, .external_lex_state = 3}, - [1842] = {.lex_state = 0, .external_lex_state = 3}, - [1843] = {.lex_state = 7, .external_lex_state = 3}, - [1844] = {.lex_state = 0, .external_lex_state = 3}, + [1839] = {.lex_state = 0, .external_lex_state = 3}, + [1840] = {.lex_state = 0, .external_lex_state = 3}, + [1841] = {.lex_state = 10, .external_lex_state = 3}, + [1842] = {.lex_state = 10, .external_lex_state = 3}, + [1843] = {.lex_state = 0, .external_lex_state = 3}, + [1844] = {.lex_state = 3, .external_lex_state = 3}, [1845] = {.lex_state = 0, .external_lex_state = 3}, - [1846] = {.lex_state = 57, .external_lex_state = 3}, - [1847] = {.lex_state = 7, .external_lex_state = 3}, - [1848] = {.lex_state = 0, .external_lex_state = 3}, + [1846] = {.lex_state = 3, .external_lex_state = 3}, + [1847] = {.lex_state = 0, .external_lex_state = 3}, + [1848] = {.lex_state = 7, .external_lex_state = 3}, [1849] = {.lex_state = 0, .external_lex_state = 3}, - [1850] = {.lex_state = 0, .external_lex_state = 3}, - [1851] = {.lex_state = 0, .external_lex_state = 3}, + [1850] = {.lex_state = 3, .external_lex_state = 3}, + [1851] = {.lex_state = 57, .external_lex_state = 3}, [1852] = {.lex_state = 0, .external_lex_state = 3}, - [1853] = {.lex_state = 0, .external_lex_state = 3}, - [1854] = {.lex_state = 0, .external_lex_state = 3}, - [1855] = {.lex_state = 7, .external_lex_state = 3}, + [1853] = {.lex_state = 7, .external_lex_state = 3}, + [1854] = {.lex_state = 7, .external_lex_state = 3}, + [1855] = {.lex_state = 10, .external_lex_state = 3}, [1856] = {.lex_state = 0, .external_lex_state = 3}, - [1857] = {.lex_state = 0, .external_lex_state = 3}, - [1858] = {.lex_state = 57, .external_lex_state = 3}, + [1857] = {.lex_state = 57, .external_lex_state = 3}, + [1858] = {.lex_state = 0, .external_lex_state = 3}, [1859] = {.lex_state = 0, .external_lex_state = 3}, - [1860] = {.lex_state = 3, .external_lex_state = 3}, - [1861] = {.lex_state = 0, .external_lex_state = 3}, - [1862] = {.lex_state = 0, .external_lex_state = 3}, - [1863] = {.lex_state = 57, .external_lex_state = 3}, + [1860] = {.lex_state = 4, .external_lex_state = 3}, + [1861] = {.lex_state = 57, .external_lex_state = 3}, + [1862] = {.lex_state = 57, .external_lex_state = 3}, + [1863] = {.lex_state = 0, .external_lex_state = 3}, [1864] = {.lex_state = 57, .external_lex_state = 3}, - [1865] = {.lex_state = 57, .external_lex_state = 3}, - [1866] = {.lex_state = 0, .external_lex_state = 3}, - [1867] = {.lex_state = 0, .external_lex_state = 3}, - [1868] = {.lex_state = 0, .external_lex_state = 3}, - [1869] = {.lex_state = 10, .external_lex_state = 3}, - [1870] = {.lex_state = 0, .external_lex_state = 3}, - [1871] = {.lex_state = 0, .external_lex_state = 3}, - [1872] = {.lex_state = 57, .external_lex_state = 3}, - [1873] = {.lex_state = 7, .external_lex_state = 3}, + [1865] = {.lex_state = 3, .external_lex_state = 3}, + [1866] = {.lex_state = 3, .external_lex_state = 3}, + [1867] = {.lex_state = 57, .external_lex_state = 3}, + [1868] = {.lex_state = 57, .external_lex_state = 3}, + [1869] = {.lex_state = 57, .external_lex_state = 3}, + [1870] = {.lex_state = 3, .external_lex_state = 3}, + [1871] = {.lex_state = 3, .external_lex_state = 3}, + [1872] = {.lex_state = 0, .external_lex_state = 3}, + [1873] = {.lex_state = 0, .external_lex_state = 3}, [1874] = {.lex_state = 0, .external_lex_state = 3}, [1875] = {.lex_state = 57, .external_lex_state = 3}, [1876] = {.lex_state = 7, .external_lex_state = 3}, - [1877] = {.lex_state = 0, .external_lex_state = 3}, - [1878] = {.lex_state = 4, .external_lex_state = 3}, - [1879] = {.lex_state = 57, .external_lex_state = 3}, - [1880] = {.lex_state = 57, .external_lex_state = 3}, - [1881] = {.lex_state = 57, .external_lex_state = 3}, + [1877] = {.lex_state = 57, .external_lex_state = 3}, + [1878] = {.lex_state = 57, .external_lex_state = 3}, + [1879] = {.lex_state = 0, .external_lex_state = 3}, + [1880] = {.lex_state = 0, .external_lex_state = 3}, + [1881] = {.lex_state = 0, .external_lex_state = 3}, [1882] = {.lex_state = 0, .external_lex_state = 3}, - [1883] = {.lex_state = 57, .external_lex_state = 3}, + [1883] = {.lex_state = 0, .external_lex_state = 3}, [1884] = {.lex_state = 0, .external_lex_state = 3}, - [1885] = {.lex_state = 57, .external_lex_state = 3}, + [1885] = {.lex_state = 0, .external_lex_state = 3}, [1886] = {.lex_state = 0, .external_lex_state = 3}, [1887] = {.lex_state = 0, .external_lex_state = 3}, - [1888] = {.lex_state = 57, .external_lex_state = 3}, - [1889] = {.lex_state = 0, .external_lex_state = 3}, - [1890] = {.lex_state = 57, .external_lex_state = 3}, - [1891] = {.lex_state = 0, .external_lex_state = 3}, - [1892] = {.lex_state = 57, .external_lex_state = 3}, - [1893] = {.lex_state = 57, .external_lex_state = 3}, - [1894] = {.lex_state = 57, .external_lex_state = 3}, - [1895] = {.lex_state = 3, .external_lex_state = 3}, - [1896] = {.lex_state = 57, .external_lex_state = 3}, - [1897] = {.lex_state = 3, .external_lex_state = 3}, - [1898] = {.lex_state = 57, .external_lex_state = 3}, + [1888] = {.lex_state = 7, .external_lex_state = 3}, + [1889] = {.lex_state = 3, .external_lex_state = 3}, + [1890] = {.lex_state = 0, .external_lex_state = 3}, + [1891] = {.lex_state = 10, .external_lex_state = 3}, + [1892] = {.lex_state = 3, .external_lex_state = 3}, + [1893] = {.lex_state = 10, .external_lex_state = 3}, + [1894] = {.lex_state = 0, .external_lex_state = 3}, + [1895] = {.lex_state = 0, .external_lex_state = 3}, + [1896] = {.lex_state = 0, .external_lex_state = 3}, + [1897] = {.lex_state = 10, .external_lex_state = 3}, + [1898] = {.lex_state = 7, .external_lex_state = 3}, [1899] = {.lex_state = 0, .external_lex_state = 3}, - [1900] = {.lex_state = 0, .external_lex_state = 3}, + [1900] = {.lex_state = 7, .external_lex_state = 3}, [1901] = {.lex_state = 0, .external_lex_state = 3}, - [1902] = {.lex_state = 57, .external_lex_state = 3}, - [1903] = {.lex_state = 57, .external_lex_state = 3}, - [1904] = {.lex_state = 10, .external_lex_state = 3}, + [1902] = {.lex_state = 0, .external_lex_state = 3}, + [1903] = {.lex_state = 0, .external_lex_state = 3}, + [1904] = {.lex_state = 57, .external_lex_state = 3}, [1905] = {.lex_state = 0, .external_lex_state = 3}, - [1906] = {.lex_state = 57, .external_lex_state = 3}, - [1907] = {.lex_state = 3, .external_lex_state = 3}, - [1908] = {.lex_state = 3, .external_lex_state = 3}, - [1909] = {.lex_state = 57, .external_lex_state = 3}, - [1910] = {.lex_state = 7, .external_lex_state = 3}, + [1906] = {.lex_state = 0, .external_lex_state = 3}, + [1907] = {.lex_state = 0, .external_lex_state = 3}, + [1908] = {.lex_state = 7, .external_lex_state = 3}, + [1909] = {.lex_state = 0, .external_lex_state = 3}, + [1910] = {.lex_state = 0, .external_lex_state = 3}, [1911] = {.lex_state = 0, .external_lex_state = 3}, - [1912] = {.lex_state = 3, .external_lex_state = 3}, - [1913] = {.lex_state = 57, .external_lex_state = 3}, - [1914] = {.lex_state = 57, .external_lex_state = 3}, - [1915] = {.lex_state = 0, .external_lex_state = 3}, - [1916] = {.lex_state = 3, .external_lex_state = 3}, - [1917] = {.lex_state = 3, .external_lex_state = 3}, - [1918] = {.lex_state = 3, .external_lex_state = 3}, - [1919] = {.lex_state = 0, .external_lex_state = 3}, + [1912] = {.lex_state = 57, .external_lex_state = 3}, + [1913] = {.lex_state = 10, .external_lex_state = 3}, + [1914] = {.lex_state = 0, .external_lex_state = 3}, + [1915] = {.lex_state = 57, .external_lex_state = 3}, + [1916] = {.lex_state = 0, .external_lex_state = 3}, + [1917] = {.lex_state = 0, .external_lex_state = 3}, + [1918] = {.lex_state = 0, .external_lex_state = 3}, + [1919] = {.lex_state = 57, .external_lex_state = 3}, [1920] = {.lex_state = 0, .external_lex_state = 3}, - [1921] = {.lex_state = 0, .external_lex_state = 3}, - [1922] = {.lex_state = 57, .external_lex_state = 3}, + [1921] = {.lex_state = 7, .external_lex_state = 3}, + [1922] = {.lex_state = 7, .external_lex_state = 3}, [1923] = {.lex_state = 0, .external_lex_state = 3}, - [1924] = {.lex_state = 0, .external_lex_state = 3}, + [1924] = {.lex_state = 3, .external_lex_state = 3}, [1925] = {.lex_state = 57, .external_lex_state = 3}, [1926] = {.lex_state = 0, .external_lex_state = 3}, - [1927] = {.lex_state = 10, .external_lex_state = 3}, - [1928] = {.lex_state = 57, .external_lex_state = 3}, + [1927] = {.lex_state = 7, .external_lex_state = 3}, + [1928] = {.lex_state = 0, .external_lex_state = 3}, [1929] = {.lex_state = 57, .external_lex_state = 3}, - [1930] = {.lex_state = 0, .external_lex_state = 3}, - [1931] = {.lex_state = 3, .external_lex_state = 3}, - [1932] = {.lex_state = 3, .external_lex_state = 3}, - [1933] = {.lex_state = 3, .external_lex_state = 3}, + [1930] = {.lex_state = 17, .external_lex_state = 3}, + [1931] = {.lex_state = 0, .external_lex_state = 3}, + [1932] = {.lex_state = 0, .external_lex_state = 3}, + [1933] = {.lex_state = 7, .external_lex_state = 3}, [1934] = {.lex_state = 0, .external_lex_state = 3}, [1935] = {.lex_state = 0, .external_lex_state = 3}, - [1936] = {.lex_state = 3, .external_lex_state = 3}, - [1937] = {.lex_state = 0, .external_lex_state = 3}, - [1938] = {.lex_state = 57, .external_lex_state = 3}, - [1939] = {.lex_state = 0, .external_lex_state = 3}, - [1940] = {.lex_state = 57, .external_lex_state = 3}, + [1936] = {.lex_state = 0, .external_lex_state = 3}, + [1937] = {.lex_state = 3, .external_lex_state = 3}, + [1938] = {.lex_state = 0, .external_lex_state = 3}, + [1939] = {.lex_state = 3, .external_lex_state = 3}, + [1940] = {.lex_state = 10, .external_lex_state = 3}, [1941] = {.lex_state = 0, .external_lex_state = 3}, [1942] = {.lex_state = 0, .external_lex_state = 3}, - [1943] = {.lex_state = 7, .external_lex_state = 3}, - [1944] = {.lex_state = 0, .external_lex_state = 3}, + [1943] = {.lex_state = 0, .external_lex_state = 3}, + [1944] = {.lex_state = 3, .external_lex_state = 3}, [1945] = {.lex_state = 0, .external_lex_state = 3}, [1946] = {.lex_state = 0, .external_lex_state = 3}, [1947] = {.lex_state = 0, .external_lex_state = 3}, - [1948] = {.lex_state = 57, .external_lex_state = 3}, - [1949] = {.lex_state = 0, .external_lex_state = 3}, + [1948] = {.lex_state = 7, .external_lex_state = 3}, + [1949] = {.lex_state = 3, .external_lex_state = 3}, [1950] = {.lex_state = 0, .external_lex_state = 3}, - [1951] = {.lex_state = 7, .external_lex_state = 3}, + [1951] = {.lex_state = 0, .external_lex_state = 3}, [1952] = {.lex_state = 0, .external_lex_state = 3}, - [1953] = {.lex_state = 7, .external_lex_state = 3}, - [1954] = {.lex_state = 57, .external_lex_state = 3}, - [1955] = {.lex_state = 0, .external_lex_state = 3}, + [1953] = {.lex_state = 0, .external_lex_state = 3}, + [1954] = {.lex_state = 0, .external_lex_state = 3}, + [1955] = {.lex_state = 3, .external_lex_state = 3}, [1956] = {.lex_state = 0, .external_lex_state = 3}, - [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 57, .external_lex_state = 3}, + [1957] = {.lex_state = 3, .external_lex_state = 3}, + [1958] = {.lex_state = 0, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, [1960] = {.lex_state = 0, .external_lex_state = 3}, [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 0, .external_lex_state = 3}, - [1963] = {.lex_state = 0, .external_lex_state = 3}, + [1962] = {.lex_state = 57, .external_lex_state = 3}, + [1963] = {.lex_state = 3, .external_lex_state = 3}, [1964] = {.lex_state = 0, .external_lex_state = 3}, - [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 0, .external_lex_state = 3}, - [1967] = {.lex_state = 57, .external_lex_state = 3}, + [1965] = {.lex_state = 57, .external_lex_state = 3}, + [1966] = {.lex_state = 57, .external_lex_state = 3}, + [1967] = {.lex_state = 0, .external_lex_state = 3}, [1968] = {.lex_state = 0, .external_lex_state = 3}, [1969] = {.lex_state = 0, .external_lex_state = 3}, [1970] = {.lex_state = 0, .external_lex_state = 3}, [1971] = {.lex_state = 0, .external_lex_state = 3}, - [1972] = {.lex_state = 7, .external_lex_state = 3}, - [1973] = {.lex_state = 57, .external_lex_state = 3}, - [1974] = {.lex_state = 0, .external_lex_state = 3}, - [1975] = {.lex_state = 0, .external_lex_state = 3}, + [1972] = {.lex_state = 0, .external_lex_state = 3}, + [1973] = {.lex_state = 0, .external_lex_state = 3}, + [1974] = {.lex_state = 10, .external_lex_state = 3}, + [1975] = {.lex_state = 57, .external_lex_state = 3}, [1976] = {.lex_state = 0, .external_lex_state = 3}, - [1977] = {.lex_state = 0, .external_lex_state = 3}, - [1978] = {.lex_state = 0, .external_lex_state = 3}, + [1977] = {.lex_state = 3, .external_lex_state = 3}, + [1978] = {.lex_state = 57, .external_lex_state = 3}, [1979] = {.lex_state = 0, .external_lex_state = 3}, - [1980] = {.lex_state = 7, .external_lex_state = 3}, - [1981] = {.lex_state = 57, .external_lex_state = 3}, - [1982] = {.lex_state = 57, .external_lex_state = 3}, - [1983] = {.lex_state = 0, .external_lex_state = 3}, - [1984] = {.lex_state = 0, .external_lex_state = 3}, - [1985] = {.lex_state = 0, .external_lex_state = 3}, - [1986] = {.lex_state = 0, .external_lex_state = 3}, + [1980] = {.lex_state = 0, .external_lex_state = 3}, + [1981] = {.lex_state = 3, .external_lex_state = 3}, + [1982] = {.lex_state = 3, .external_lex_state = 3}, + [1983] = {.lex_state = 57, .external_lex_state = 3}, + [1984] = {.lex_state = 57, .external_lex_state = 3}, + [1985] = {.lex_state = 57, .external_lex_state = 3}, + [1986] = {.lex_state = 10, .external_lex_state = 3}, [1987] = {.lex_state = 0, .external_lex_state = 3}, - [1988] = {.lex_state = 0, .external_lex_state = 3}, - [1989] = {.lex_state = 0, .external_lex_state = 3}, - [1990] = {.lex_state = 0, .external_lex_state = 3}, + [1988] = {.lex_state = 57, .external_lex_state = 3}, + [1989] = {.lex_state = 10, .external_lex_state = 3}, + [1990] = {.lex_state = 4, .external_lex_state = 3}, [1991] = {.lex_state = 0, .external_lex_state = 3}, [1992] = {.lex_state = 57, .external_lex_state = 3}, [1993] = {.lex_state = 0, .external_lex_state = 3}, [1994] = {.lex_state = 0, .external_lex_state = 3}, [1995] = {.lex_state = 57, .external_lex_state = 3}, [1996] = {.lex_state = 57, .external_lex_state = 3}, - [1997] = {.lex_state = 0, .external_lex_state = 3}, - [1998] = {.lex_state = 0, .external_lex_state = 3}, - [1999] = {.lex_state = 57, .external_lex_state = 3}, + [1997] = {.lex_state = 57, .external_lex_state = 3}, + [1998] = {.lex_state = 7, .external_lex_state = 3}, + [1999] = {.lex_state = 0, .external_lex_state = 3}, [2000] = {.lex_state = 0, .external_lex_state = 3}, - [2001] = {.lex_state = 57, .external_lex_state = 3}, - [2002] = {.lex_state = 0, .external_lex_state = 3}, + [2001] = {.lex_state = 0, .external_lex_state = 3}, + [2002] = {.lex_state = 57, .external_lex_state = 3}, [2003] = {.lex_state = 57, .external_lex_state = 3}, [2004] = {.lex_state = 0, .external_lex_state = 3}, - [2005] = {.lex_state = 0, .external_lex_state = 3}, + [2005] = {.lex_state = 57, .external_lex_state = 3}, [2006] = {.lex_state = 57, .external_lex_state = 3}, - [2007] = {.lex_state = 57, .external_lex_state = 3}, - [2008] = {.lex_state = 0, .external_lex_state = 3}, - [2009] = {.lex_state = 57, .external_lex_state = 3}, + [2007] = {.lex_state = 0, .external_lex_state = 3}, + [2008] = {.lex_state = 57, .external_lex_state = 3}, + [2009] = {.lex_state = 0, .external_lex_state = 3}, [2010] = {.lex_state = 0, .external_lex_state = 3}, [2011] = {.lex_state = 0, .external_lex_state = 3}, [2012] = {.lex_state = 0, .external_lex_state = 3}, - [2013] = {.lex_state = 57, .external_lex_state = 3}, - [2014] = {.lex_state = 0, .external_lex_state = 3}, - [2015] = {.lex_state = 57, .external_lex_state = 3}, - [2016] = {.lex_state = 10, .external_lex_state = 3}, + [2013] = {.lex_state = 0, .external_lex_state = 3}, + [2014] = {.lex_state = 57, .external_lex_state = 3}, + [2015] = {.lex_state = 0, .external_lex_state = 3}, + [2016] = {.lex_state = 0, .external_lex_state = 3}, [2017] = {.lex_state = 0, .external_lex_state = 3}, [2018] = {.lex_state = 0, .external_lex_state = 3}, - [2019] = {.lex_state = 57, .external_lex_state = 3}, - [2020] = {.lex_state = 0, .external_lex_state = 3}, - [2021] = {.lex_state = 0, .external_lex_state = 3}, - [2022] = {.lex_state = 0, .external_lex_state = 3}, - [2023] = {.lex_state = 57, .external_lex_state = 3}, + [2019] = {.lex_state = 0, .external_lex_state = 3}, + [2020] = {.lex_state = 57, .external_lex_state = 3}, + [2021] = {.lex_state = 57, .external_lex_state = 3}, + [2022] = {.lex_state = 7, .external_lex_state = 3}, + [2023] = {.lex_state = 0, .external_lex_state = 3}, [2024] = {.lex_state = 57, .external_lex_state = 3}, [2025] = {.lex_state = 0, .external_lex_state = 3}, [2026] = {.lex_state = 0, .external_lex_state = 3}, - [2027] = {.lex_state = 7, .external_lex_state = 3}, + [2027] = {.lex_state = 57, .external_lex_state = 3}, [2028] = {.lex_state = 0, .external_lex_state = 3}, [2029] = {.lex_state = 57, .external_lex_state = 3}, - [2030] = {.lex_state = 0, .external_lex_state = 3}, - [2031] = {.lex_state = 7, .external_lex_state = 3}, - [2032] = {.lex_state = 57, .external_lex_state = 3}, - [2033] = {.lex_state = 57, .external_lex_state = 3}, - [2034] = {.lex_state = 7, .external_lex_state = 3}, + [2030] = {.lex_state = 7, .external_lex_state = 3}, + [2031] = {.lex_state = 0, .external_lex_state = 3}, + [2032] = {.lex_state = 0, .external_lex_state = 3}, + [2033] = {.lex_state = 0, .external_lex_state = 3}, + [2034] = {.lex_state = 0, .external_lex_state = 3}, [2035] = {.lex_state = 57, .external_lex_state = 3}, [2036] = {.lex_state = 0, .external_lex_state = 3}, - [2037] = {.lex_state = 0, .external_lex_state = 3}, - [2038] = {.lex_state = 0, .external_lex_state = 3}, - [2039] = {.lex_state = 57, .external_lex_state = 3}, + [2037] = {.lex_state = 57, .external_lex_state = 3}, + [2038] = {.lex_state = 57, .external_lex_state = 3}, + [2039] = {.lex_state = 0, .external_lex_state = 3}, [2040] = {.lex_state = 0, .external_lex_state = 3}, - [2041] = {.lex_state = 0, .external_lex_state = 3}, + [2041] = {.lex_state = 7, .external_lex_state = 3}, [2042] = {.lex_state = 0, .external_lex_state = 3}, [2043] = {.lex_state = 0, .external_lex_state = 3}, [2044] = {.lex_state = 0, .external_lex_state = 3}, [2045] = {.lex_state = 0, .external_lex_state = 3}, [2046] = {.lex_state = 57, .external_lex_state = 3}, - [2047] = {.lex_state = 0, .external_lex_state = 3}, - [2048] = {.lex_state = 10, .external_lex_state = 3}, - [2049] = {.lex_state = 7, .external_lex_state = 3}, - [2050] = {.lex_state = 0, .external_lex_state = 3}, - [2051] = {.lex_state = 57, .external_lex_state = 3}, + [2047] = {.lex_state = 7, .external_lex_state = 3}, + [2048] = {.lex_state = 0, .external_lex_state = 3}, + [2049] = {.lex_state = 57, .external_lex_state = 3}, + [2050] = {.lex_state = 57, .external_lex_state = 3}, + [2051] = {.lex_state = 0, .external_lex_state = 3}, [2052] = {.lex_state = 57, .external_lex_state = 3}, [2053] = {.lex_state = 0, .external_lex_state = 3}, [2054] = {.lex_state = 0, .external_lex_state = 3}, - [2055] = {.lex_state = 0, .external_lex_state = 3}, - [2056] = {.lex_state = 7, .external_lex_state = 3}, + [2055] = {.lex_state = 57, .external_lex_state = 3}, + [2056] = {.lex_state = 57, .external_lex_state = 3}, [2057] = {.lex_state = 0, .external_lex_state = 3}, - [2058] = {.lex_state = 0, .external_lex_state = 3}, - [2059] = {.lex_state = 0, .external_lex_state = 3}, + [2058] = {.lex_state = 7, .external_lex_state = 3}, + [2059] = {.lex_state = 57, .external_lex_state = 3}, [2060] = {.lex_state = 0, .external_lex_state = 3}, - [2061] = {.lex_state = 17, .external_lex_state = 3}, - [2062] = {.lex_state = 7, .external_lex_state = 3}, - [2063] = {.lex_state = 17, .external_lex_state = 3}, + [2061] = {.lex_state = 7, .external_lex_state = 3}, + [2062] = {.lex_state = 0, .external_lex_state = 3}, + [2063] = {.lex_state = 0, .external_lex_state = 3}, [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 0, .external_lex_state = 3}, - [2066] = {.lex_state = 0, .external_lex_state = 3}, - [2067] = {.lex_state = 0, .external_lex_state = 3}, + [2065] = {.lex_state = 7, .external_lex_state = 3}, + [2066] = {.lex_state = 57, .external_lex_state = 3}, + [2067] = {.lex_state = 57, .external_lex_state = 3}, [2068] = {.lex_state = 0, .external_lex_state = 3}, - [2069] = {.lex_state = 0, .external_lex_state = 3}, - [2070] = {.lex_state = 7, .external_lex_state = 3}, + [2069] = {.lex_state = 7, .external_lex_state = 3}, + [2070] = {.lex_state = 0, .external_lex_state = 3}, [2071] = {.lex_state = 0, .external_lex_state = 3}, - [2072] = {.lex_state = 57, .external_lex_state = 3}, + [2072] = {.lex_state = 0, .external_lex_state = 3}, [2073] = {.lex_state = 0, .external_lex_state = 3}, - [2074] = {.lex_state = 0, .external_lex_state = 3}, + [2074] = {.lex_state = 7, .external_lex_state = 3}, [2075] = {.lex_state = 0, .external_lex_state = 3}, - [2076] = {.lex_state = 0, .external_lex_state = 3}, - [2077] = {.lex_state = 7, .external_lex_state = 3}, + [2076] = {.lex_state = 57, .external_lex_state = 3}, + [2077] = {.lex_state = 0, .external_lex_state = 3}, [2078] = {.lex_state = 0, .external_lex_state = 3}, - [2079] = {.lex_state = 57, .external_lex_state = 3}, - [2080] = {.lex_state = 57, .external_lex_state = 3}, + [2079] = {.lex_state = 0, .external_lex_state = 3}, + [2080] = {.lex_state = 0, .external_lex_state = 3}, [2081] = {.lex_state = 0, .external_lex_state = 3}, - [2082] = {.lex_state = 7, .external_lex_state = 3}, - [2083] = {.lex_state = 57, .external_lex_state = 3}, - [2084] = {.lex_state = 7, .external_lex_state = 3}, + [2082] = {.lex_state = 0, .external_lex_state = 3}, + [2083] = {.lex_state = 0, .external_lex_state = 3}, + [2084] = {.lex_state = 0, .external_lex_state = 3}, [2085] = {.lex_state = 0, .external_lex_state = 3}, [2086] = {.lex_state = 0, .external_lex_state = 3}, - [2087] = {.lex_state = 7, .external_lex_state = 3}, - [2088] = {.lex_state = 57, .external_lex_state = 3}, - [2089] = {.lex_state = 17, .external_lex_state = 3}, + [2087] = {.lex_state = 0, .external_lex_state = 3}, + [2088] = {.lex_state = 0, .external_lex_state = 3}, + [2089] = {.lex_state = 57, .external_lex_state = 3}, [2090] = {.lex_state = 0, .external_lex_state = 3}, [2091] = {.lex_state = 57, .external_lex_state = 3}, - [2092] = {.lex_state = 17, .external_lex_state = 3}, - [2093] = {.lex_state = 0, .external_lex_state = 3}, - [2094] = {.lex_state = 0, .external_lex_state = 3}, + [2092] = {.lex_state = 57, .external_lex_state = 3}, + [2093] = {.lex_state = 57, .external_lex_state = 3}, + [2094] = {.lex_state = 7, .external_lex_state = 3}, [2095] = {.lex_state = 0, .external_lex_state = 3}, [2096] = {.lex_state = 0, .external_lex_state = 3}, - [2097] = {.lex_state = 57, .external_lex_state = 3}, - [2098] = {.lex_state = 4, .external_lex_state = 3}, + [2097] = {.lex_state = 7, .external_lex_state = 3}, + [2098] = {.lex_state = 0, .external_lex_state = 3}, [2099] = {.lex_state = 57, .external_lex_state = 3}, [2100] = {.lex_state = 57, .external_lex_state = 3}, - [2101] = {.lex_state = 0, .external_lex_state = 3}, + [2101] = {.lex_state = 57, .external_lex_state = 3}, [2102] = {.lex_state = 57, .external_lex_state = 3}, [2103] = {.lex_state = 0, .external_lex_state = 3}, - [2104] = {.lex_state = 7, .external_lex_state = 3}, - [2105] = {.lex_state = 0, .external_lex_state = 3}, + [2104] = {.lex_state = 0, .external_lex_state = 3}, + [2105] = {.lex_state = 57, .external_lex_state = 3}, [2106] = {.lex_state = 0, .external_lex_state = 3}, - [2107] = {.lex_state = 57, .external_lex_state = 3}, + [2107] = {.lex_state = 0, .external_lex_state = 3}, [2108] = {.lex_state = 0, .external_lex_state = 3}, [2109] = {.lex_state = 0, .external_lex_state = 3}, [2110] = {.lex_state = 0, .external_lex_state = 3}, [2111] = {.lex_state = 0, .external_lex_state = 3}, [2112] = {.lex_state = 0, .external_lex_state = 3}, - [2113] = {.lex_state = 17, .external_lex_state = 3}, - [2114] = {.lex_state = 7, .external_lex_state = 3}, - [2115] = {.lex_state = 57, .external_lex_state = 3}, - [2116] = {.lex_state = 7, .external_lex_state = 3}, + [2113] = {.lex_state = 0, .external_lex_state = 3}, + [2114] = {.lex_state = 0, .external_lex_state = 3}, + [2115] = {.lex_state = 7, .external_lex_state = 3}, + [2116] = {.lex_state = 0, .external_lex_state = 3}, [2117] = {.lex_state = 0, .external_lex_state = 3}, [2118] = {.lex_state = 0, .external_lex_state = 3}, [2119] = {.lex_state = 0, .external_lex_state = 3}, - [2120] = {.lex_state = 0, .external_lex_state = 3}, - [2121] = {.lex_state = 0, .external_lex_state = 3}, - [2122] = {.lex_state = 0, .external_lex_state = 3}, + [2120] = {.lex_state = 7, .external_lex_state = 3}, + [2121] = {.lex_state = 4, .external_lex_state = 3}, + [2122] = {.lex_state = 7, .external_lex_state = 3}, [2123] = {.lex_state = 0, .external_lex_state = 3}, - [2124] = {.lex_state = 7, .external_lex_state = 3}, + [2124] = {.lex_state = 0, .external_lex_state = 3}, [2125] = {.lex_state = 0, .external_lex_state = 3}, [2126] = {.lex_state = 0, .external_lex_state = 3}, [2127] = {.lex_state = 0, .external_lex_state = 3}, [2128] = {.lex_state = 0, .external_lex_state = 3}, - [2129] = {.lex_state = 0, .external_lex_state = 3}, - [2130] = {.lex_state = 0, .external_lex_state = 3}, + [2129] = {.lex_state = 7, .external_lex_state = 3}, + [2130] = {.lex_state = 57, .external_lex_state = 3}, [2131] = {.lex_state = 0, .external_lex_state = 3}, [2132] = {.lex_state = 0, .external_lex_state = 3}, [2133] = {.lex_state = 57, .external_lex_state = 3}, - [2134] = {.lex_state = 17, .external_lex_state = 3}, - [2135] = {.lex_state = 57, .external_lex_state = 3}, - [2136] = {.lex_state = 0, .external_lex_state = 3}, - [2137] = {.lex_state = 57, .external_lex_state = 3}, - [2138] = {.lex_state = 0, .external_lex_state = 3}, - [2139] = {.lex_state = 0, .external_lex_state = 3}, - [2140] = {.lex_state = 57, .external_lex_state = 3}, + [2134] = {.lex_state = 7, .external_lex_state = 3}, + [2135] = {.lex_state = 0, .external_lex_state = 3}, + [2136] = {.lex_state = 57, .external_lex_state = 3}, + [2137] = {.lex_state = 0, .external_lex_state = 3}, + [2138] = {.lex_state = 57, .external_lex_state = 3}, + [2139] = {.lex_state = 57, .external_lex_state = 3}, + [2140] = {.lex_state = 0, .external_lex_state = 3}, [2141] = {.lex_state = 0, .external_lex_state = 3}, - [2142] = {.lex_state = 0, .external_lex_state = 3}, - [2143] = {.lex_state = 57, .external_lex_state = 3}, + [2142] = {.lex_state = 57, .external_lex_state = 3}, + [2143] = {.lex_state = 0, .external_lex_state = 3}, [2144] = {.lex_state = 7, .external_lex_state = 3}, - [2145] = {.lex_state = 7, .external_lex_state = 3}, + [2145] = {.lex_state = 57, .external_lex_state = 3}, [2146] = {.lex_state = 0, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, - [2148] = {.lex_state = 7, .external_lex_state = 3}, - [2149] = {.lex_state = 0, .external_lex_state = 3}, + [2148] = {.lex_state = 0, .external_lex_state = 3}, + [2149] = {.lex_state = 7, .external_lex_state = 3}, [2150] = {.lex_state = 0, .external_lex_state = 3}, [2151] = {.lex_state = 0, .external_lex_state = 3}, - [2152] = {.lex_state = 0, .external_lex_state = 3}, + [2152] = {.lex_state = 57, .external_lex_state = 3}, [2153] = {.lex_state = 0, .external_lex_state = 3}, [2154] = {.lex_state = 0, .external_lex_state = 3}, [2155] = {.lex_state = 0, .external_lex_state = 3}, - [2156] = {.lex_state = 57, .external_lex_state = 3}, + [2156] = {.lex_state = 0, .external_lex_state = 3}, [2157] = {.lex_state = 0, .external_lex_state = 3}, - [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 57, .external_lex_state = 3}, - [2160] = {.lex_state = 0, .external_lex_state = 3}, + [2158] = {.lex_state = 57, .external_lex_state = 3}, + [2159] = {.lex_state = 7, .external_lex_state = 3}, + [2160] = {.lex_state = 57, .external_lex_state = 3}, [2161] = {.lex_state = 0, .external_lex_state = 3}, - [2162] = {.lex_state = 57, .external_lex_state = 3}, + [2162] = {.lex_state = 0, .external_lex_state = 3}, [2163] = {.lex_state = 0, .external_lex_state = 3}, - [2164] = {.lex_state = 0, .external_lex_state = 3}, - [2165] = {.lex_state = 0, .external_lex_state = 3}, - [2166] = {.lex_state = 0, .external_lex_state = 3}, + [2164] = {.lex_state = 57, .external_lex_state = 3}, + [2165] = {.lex_state = 57, .external_lex_state = 3}, + [2166] = {.lex_state = 7, .external_lex_state = 3}, [2167] = {.lex_state = 0, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, - [2169] = {.lex_state = 0, .external_lex_state = 3}, + [2169] = {.lex_state = 4, .external_lex_state = 3}, [2170] = {.lex_state = 0, .external_lex_state = 3}, [2171] = {.lex_state = 0, .external_lex_state = 3}, [2172] = {.lex_state = 0, .external_lex_state = 3}, - [2173] = {.lex_state = 0, .external_lex_state = 3}, + [2173] = {.lex_state = 57, .external_lex_state = 3}, [2174] = {.lex_state = 0, .external_lex_state = 3}, [2175] = {.lex_state = 0, .external_lex_state = 3}, [2176] = {.lex_state = 0, .external_lex_state = 3}, - [2177] = {.lex_state = 0, .external_lex_state = 3}, + [2177] = {.lex_state = 7, .external_lex_state = 3}, [2178] = {.lex_state = 0, .external_lex_state = 3}, - [2179] = {.lex_state = 0, .external_lex_state = 3}, + [2179] = {.lex_state = 17, .external_lex_state = 3}, [2180] = {.lex_state = 0, .external_lex_state = 3}, [2181] = {.lex_state = 0, .external_lex_state = 3}, [2182] = {.lex_state = 0, .external_lex_state = 3}, [2183] = {.lex_state = 7, .external_lex_state = 3}, [2184] = {.lex_state = 0, .external_lex_state = 3}, - [2185] = {.lex_state = 0, .external_lex_state = 3}, - [2186] = {.lex_state = 57, .external_lex_state = 3}, + [2185] = {.lex_state = 57, .external_lex_state = 3}, + [2186] = {.lex_state = 0, .external_lex_state = 3}, [2187] = {.lex_state = 0, .external_lex_state = 3}, - [2188] = {.lex_state = 0, .external_lex_state = 3}, - [2189] = {.lex_state = 0, .external_lex_state = 3}, - [2190] = {.lex_state = 0, .external_lex_state = 3}, - [2191] = {.lex_state = 0, .external_lex_state = 3}, - [2192] = {.lex_state = 7, .external_lex_state = 3}, + [2188] = {.lex_state = 57, .external_lex_state = 3}, + [2189] = {.lex_state = 7, .external_lex_state = 3}, + [2190] = {.lex_state = 57, .external_lex_state = 3}, + [2191] = {.lex_state = 57, .external_lex_state = 3}, + [2192] = {.lex_state = 57, .external_lex_state = 3}, [2193] = {.lex_state = 0, .external_lex_state = 3}, [2194] = {.lex_state = 57, .external_lex_state = 3}, [2195] = {.lex_state = 0, .external_lex_state = 3}, [2196] = {.lex_state = 0, .external_lex_state = 3}, - [2197] = {.lex_state = 0, .external_lex_state = 3}, + [2197] = {.lex_state = 57, .external_lex_state = 3}, [2198] = {.lex_state = 0, .external_lex_state = 3}, - [2199] = {.lex_state = 7, .external_lex_state = 3}, + [2199] = {.lex_state = 0, .external_lex_state = 3}, [2200] = {.lex_state = 0, .external_lex_state = 3}, - [2201] = {.lex_state = 0, .external_lex_state = 3}, - [2202] = {.lex_state = 0, .external_lex_state = 3}, + [2201] = {.lex_state = 7, .external_lex_state = 3}, + [2202] = {.lex_state = 57, .external_lex_state = 3}, [2203] = {.lex_state = 0, .external_lex_state = 3}, [2204] = {.lex_state = 0, .external_lex_state = 3}, [2205] = {.lex_state = 0, .external_lex_state = 3}, @@ -13753,276 +13218,321 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2207] = {.lex_state = 0, .external_lex_state = 3}, [2208] = {.lex_state = 0, .external_lex_state = 3}, [2209] = {.lex_state = 0, .external_lex_state = 3}, - [2210] = {.lex_state = 57, .external_lex_state = 3}, + [2210] = {.lex_state = 0, .external_lex_state = 3}, [2211] = {.lex_state = 0, .external_lex_state = 3}, [2212] = {.lex_state = 0, .external_lex_state = 3}, - [2213] = {.lex_state = 7, .external_lex_state = 3}, - [2214] = {.lex_state = 57, .external_lex_state = 3}, + [2213] = {.lex_state = 0, .external_lex_state = 3}, + [2214] = {.lex_state = 0, .external_lex_state = 3}, [2215] = {.lex_state = 0, .external_lex_state = 3}, [2216] = {.lex_state = 0, .external_lex_state = 3}, - [2217] = {.lex_state = 57, .external_lex_state = 3}, + [2217] = {.lex_state = 0, .external_lex_state = 3}, [2218] = {.lex_state = 0, .external_lex_state = 3}, [2219] = {.lex_state = 7, .external_lex_state = 3}, [2220] = {.lex_state = 0, .external_lex_state = 3}, - [2221] = {.lex_state = 7, .external_lex_state = 3}, + [2221] = {.lex_state = 0, .external_lex_state = 3}, [2222] = {.lex_state = 57, .external_lex_state = 3}, - [2223] = {.lex_state = 57, .external_lex_state = 3}, - [2224] = {.lex_state = 0, .external_lex_state = 3}, - [2225] = {.lex_state = 7, .external_lex_state = 3}, + [2223] = {.lex_state = 0, .external_lex_state = 3}, + [2224] = {.lex_state = 0, .external_lex_state = 5}, + [2225] = {.lex_state = 0, .external_lex_state = 3}, [2226] = {.lex_state = 0, .external_lex_state = 3}, [2227] = {.lex_state = 57, .external_lex_state = 3}, - [2228] = {.lex_state = 0, .external_lex_state = 3}, - [2229] = {.lex_state = 57, .external_lex_state = 3}, - [2230] = {.lex_state = 0, .external_lex_state = 3}, + [2228] = {.lex_state = 57, .external_lex_state = 3}, + [2229] = {.lex_state = 0, .external_lex_state = 3}, + [2230] = {.lex_state = 7, .external_lex_state = 3}, [2231] = {.lex_state = 0, .external_lex_state = 3}, - [2232] = {.lex_state = 0, .external_lex_state = 3}, - [2233] = {.lex_state = 0, .external_lex_state = 3}, + [2232] = {.lex_state = 7, .external_lex_state = 3}, + [2233] = {.lex_state = 7, .external_lex_state = 3}, [2234] = {.lex_state = 0, .external_lex_state = 3}, - [2235] = {.lex_state = 0, .external_lex_state = 3}, + [2235] = {.lex_state = 17, .external_lex_state = 3}, [2236] = {.lex_state = 0, .external_lex_state = 3}, - [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 7, .external_lex_state = 3}, - [2239] = {.lex_state = 57, .external_lex_state = 3}, - [2240] = {.lex_state = 57, .external_lex_state = 3}, + [2237] = {.lex_state = 57, .external_lex_state = 3}, + [2238] = {.lex_state = 0, .external_lex_state = 3}, + [2239] = {.lex_state = 7, .external_lex_state = 3}, + [2240] = {.lex_state = 0, .external_lex_state = 3}, [2241] = {.lex_state = 0, .external_lex_state = 3}, [2242] = {.lex_state = 0, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, - [2244] = {.lex_state = 0, .external_lex_state = 5}, - [2245] = {.lex_state = 7, .external_lex_state = 3}, - [2246] = {.lex_state = 4, .external_lex_state = 3}, - [2247] = {.lex_state = 57, .external_lex_state = 3}, - [2248] = {.lex_state = 10, .external_lex_state = 3}, + [2244] = {.lex_state = 0, .external_lex_state = 3}, + [2245] = {.lex_state = 0, .external_lex_state = 3}, + [2246] = {.lex_state = 7, .external_lex_state = 3}, + [2247] = {.lex_state = 17, .external_lex_state = 3}, + [2248] = {.lex_state = 7, .external_lex_state = 3}, [2249] = {.lex_state = 0, .external_lex_state = 3}, - [2250] = {.lex_state = 7, .external_lex_state = 3}, - [2251] = {.lex_state = 7, .external_lex_state = 3}, - [2252] = {.lex_state = 7, .external_lex_state = 3}, - [2253] = {.lex_state = 7, .external_lex_state = 3}, - [2254] = {.lex_state = 7, .external_lex_state = 3}, + [2250] = {.lex_state = 17, .external_lex_state = 3}, + [2251] = {.lex_state = 0, .external_lex_state = 3}, + [2252] = {.lex_state = 0, .external_lex_state = 3}, + [2253] = {.lex_state = 0, .external_lex_state = 3}, + [2254] = {.lex_state = 57, .external_lex_state = 3}, [2255] = {.lex_state = 0, .external_lex_state = 3}, - [2256] = {.lex_state = 7, .external_lex_state = 3}, - [2257] = {.lex_state = 57, .external_lex_state = 3}, + [2256] = {.lex_state = 0, .external_lex_state = 3}, + [2257] = {.lex_state = 0, .external_lex_state = 3}, [2258] = {.lex_state = 0, .external_lex_state = 3}, - [2259] = {.lex_state = 7, .external_lex_state = 3}, - [2260] = {.lex_state = 0, .external_lex_state = 3}, - [2261] = {.lex_state = 0, .external_lex_state = 3}, - [2262] = {.lex_state = 7, .external_lex_state = 3}, - [2263] = {.lex_state = 7, .external_lex_state = 3}, + [2259] = {.lex_state = 0, .external_lex_state = 3}, + [2260] = {.lex_state = 17, .external_lex_state = 3}, + [2261] = {.lex_state = 57, .external_lex_state = 3}, + [2262] = {.lex_state = 57, .external_lex_state = 3}, + [2263] = {.lex_state = 57, .external_lex_state = 3}, [2264] = {.lex_state = 7, .external_lex_state = 3}, - [2265] = {.lex_state = 7, .external_lex_state = 3}, - [2266] = {.lex_state = 7, .external_lex_state = 3}, + [2265] = {.lex_state = 0, .external_lex_state = 3}, + [2266] = {.lex_state = 0, .external_lex_state = 3}, [2267] = {.lex_state = 0, .external_lex_state = 3}, - [2268] = {.lex_state = 0, .external_lex_state = 3}, - [2269] = {.lex_state = 10, .external_lex_state = 3}, + [2268] = {.lex_state = 57, .external_lex_state = 3}, + [2269] = {.lex_state = 0, .external_lex_state = 3}, [2270] = {.lex_state = 0, .external_lex_state = 3}, - [2271] = {.lex_state = 0, .external_lex_state = 3}, - [2272] = {.lex_state = 7, .external_lex_state = 3}, - [2273] = {.lex_state = 7, .external_lex_state = 3}, - [2274] = {.lex_state = 7, .external_lex_state = 3}, - [2275] = {.lex_state = 7, .external_lex_state = 3}, - [2276] = {.lex_state = 7, .external_lex_state = 3}, - [2277] = {.lex_state = 0, .external_lex_state = 3}, - [2278] = {.lex_state = 0, .external_lex_state = 3}, + [2271] = {.lex_state = 57, .external_lex_state = 3}, + [2272] = {.lex_state = 0, .external_lex_state = 3}, + [2273] = {.lex_state = 57, .external_lex_state = 3}, + [2274] = {.lex_state = 57, .external_lex_state = 3}, + [2275] = {.lex_state = 57, .external_lex_state = 3}, + [2276] = {.lex_state = 10, .external_lex_state = 3}, + [2277] = {.lex_state = 57, .external_lex_state = 3}, + [2278] = {.lex_state = 7, .external_lex_state = 3}, [2279] = {.lex_state = 0, .external_lex_state = 3}, - [2280] = {.lex_state = 7, .external_lex_state = 3}, - [2281] = {.lex_state = 7, .external_lex_state = 3}, - [2282] = {.lex_state = 7, .external_lex_state = 3}, - [2283] = {.lex_state = 7, .external_lex_state = 3}, + [2280] = {.lex_state = 0, .external_lex_state = 3}, + [2281] = {.lex_state = 0, .external_lex_state = 3}, + [2282] = {.lex_state = 0, .external_lex_state = 3}, + [2283] = {.lex_state = 0, .external_lex_state = 3}, [2284] = {.lex_state = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 7, .external_lex_state = 3}, + [2285] = {.lex_state = 0, .external_lex_state = 3}, [2286] = {.lex_state = 0, .external_lex_state = 3}, [2287] = {.lex_state = 0, .external_lex_state = 3}, [2288] = {.lex_state = 7, .external_lex_state = 3}, - [2289] = {.lex_state = 0, .external_lex_state = 3}, + [2289] = {.lex_state = 17, .external_lex_state = 3}, [2290] = {.lex_state = 0, .external_lex_state = 3}, [2291] = {.lex_state = 7, .external_lex_state = 3}, [2292] = {.lex_state = 7, .external_lex_state = 3}, [2293] = {.lex_state = 0, .external_lex_state = 3}, - [2294] = {.lex_state = 7, .external_lex_state = 3}, - [2295] = {.lex_state = 7, .external_lex_state = 3}, + [2294] = {.lex_state = 0, .external_lex_state = 3}, + [2295] = {.lex_state = 0, .external_lex_state = 3}, [2296] = {.lex_state = 7, .external_lex_state = 3}, - [2297] = {.lex_state = 7, .external_lex_state = 3}, + [2297] = {.lex_state = 0, .external_lex_state = 3}, [2298] = {.lex_state = 7, .external_lex_state = 3}, [2299] = {.lex_state = 7, .external_lex_state = 3}, [2300] = {.lex_state = 7, .external_lex_state = 3}, [2301] = {.lex_state = 7, .external_lex_state = 3}, - [2302] = {.lex_state = 7, .external_lex_state = 3}, - [2303] = {.lex_state = 10, .external_lex_state = 3}, + [2302] = {.lex_state = 0, .external_lex_state = 3}, + [2303] = {.lex_state = 0, .external_lex_state = 3}, [2304] = {.lex_state = 7, .external_lex_state = 3}, - [2305] = {.lex_state = 7, .external_lex_state = 3}, - [2306] = {.lex_state = 0, .external_lex_state = 3}, + [2305] = {.lex_state = 0, .external_lex_state = 3}, + [2306] = {.lex_state = 10, .external_lex_state = 3}, [2307] = {.lex_state = 7, .external_lex_state = 3}, - [2308] = {.lex_state = 7, .external_lex_state = 3}, + [2308] = {.lex_state = 57, .external_lex_state = 3}, [2309] = {.lex_state = 7, .external_lex_state = 3}, [2310] = {.lex_state = 7, .external_lex_state = 3}, - [2311] = {.lex_state = 0, .external_lex_state = 3}, - [2312] = {.lex_state = 0, .external_lex_state = 3}, + [2311] = {.lex_state = 7, .external_lex_state = 3}, + [2312] = {.lex_state = 7, .external_lex_state = 3}, [2313] = {.lex_state = 0, .external_lex_state = 3}, - [2314] = {.lex_state = 7, .external_lex_state = 3}, + [2314] = {.lex_state = 0, .external_lex_state = 3}, [2315] = {.lex_state = 7, .external_lex_state = 3}, - [2316] = {.lex_state = 7, .external_lex_state = 3}, + [2316] = {.lex_state = 0, .external_lex_state = 3}, [2317] = {.lex_state = 0, .external_lex_state = 3}, - [2318] = {.lex_state = 7, .external_lex_state = 3}, - [2319] = {.lex_state = 7, .external_lex_state = 3}, - [2320] = {.lex_state = 10, .external_lex_state = 3}, + [2318] = {.lex_state = 0, .external_lex_state = 3}, + [2319] = {.lex_state = 0, .external_lex_state = 3}, + [2320] = {.lex_state = 7, .external_lex_state = 3}, [2321] = {.lex_state = 0, .external_lex_state = 3}, - [2322] = {.lex_state = 0, .external_lex_state = 3}, - [2323] = {.lex_state = 0, .external_lex_state = 3}, + [2322] = {.lex_state = 7, .external_lex_state = 3}, + [2323] = {.lex_state = 7, .external_lex_state = 3}, [2324] = {.lex_state = 0, .external_lex_state = 3}, [2325] = {.lex_state = 7, .external_lex_state = 3}, [2326] = {.lex_state = 7, .external_lex_state = 3}, [2327] = {.lex_state = 0, .external_lex_state = 3}, [2328] = {.lex_state = 0, .external_lex_state = 3}, [2329] = {.lex_state = 7, .external_lex_state = 3}, - [2330] = {.lex_state = 0, .external_lex_state = 3}, - [2331] = {.lex_state = 7, .external_lex_state = 3}, - [2332] = {.lex_state = 57, .external_lex_state = 3}, + [2330] = {.lex_state = 7, .external_lex_state = 3}, + [2331] = {.lex_state = 10, .external_lex_state = 3}, + [2332] = {.lex_state = 7, .external_lex_state = 3}, [2333] = {.lex_state = 7, .external_lex_state = 3}, - [2334] = {.lex_state = 7, .external_lex_state = 3}, + [2334] = {.lex_state = 0, .external_lex_state = 3}, [2335] = {.lex_state = 0, .external_lex_state = 3}, [2336] = {.lex_state = 7, .external_lex_state = 3}, - [2337] = {.lex_state = 7, .external_lex_state = 3}, - [2338] = {.lex_state = 0, .external_lex_state = 3}, + [2337] = {.lex_state = 10, .external_lex_state = 3}, + [2338] = {.lex_state = 7, .external_lex_state = 3}, [2339] = {.lex_state = 0, .external_lex_state = 3}, [2340] = {.lex_state = 7, .external_lex_state = 3}, - [2341] = {.lex_state = 0, .external_lex_state = 3}, - [2342] = {.lex_state = 10, .external_lex_state = 3}, + [2341] = {.lex_state = 7, .external_lex_state = 3}, + [2342] = {.lex_state = 7, .external_lex_state = 3}, [2343] = {.lex_state = 7, .external_lex_state = 3}, - [2344] = {.lex_state = 0, .external_lex_state = 3}, - [2345] = {.lex_state = 0, .external_lex_state = 3}, - [2346] = {.lex_state = 0, .external_lex_state = 3}, - [2347] = {.lex_state = 7, .external_lex_state = 3}, - [2348] = {.lex_state = 10, .external_lex_state = 3}, - [2349] = {.lex_state = 10, .external_lex_state = 3}, + [2344] = {.lex_state = 7, .external_lex_state = 3}, + [2345] = {.lex_state = 7, .external_lex_state = 3}, + [2346] = {.lex_state = 7, .external_lex_state = 3}, + [2347] = {.lex_state = 0, .external_lex_state = 3}, + [2348] = {.lex_state = 7, .external_lex_state = 3}, + [2349] = {.lex_state = 7, .external_lex_state = 3}, [2350] = {.lex_state = 7, .external_lex_state = 3}, [2351] = {.lex_state = 7, .external_lex_state = 3}, - [2352] = {.lex_state = 0, .external_lex_state = 3}, + [2352] = {.lex_state = 7, .external_lex_state = 3}, [2353] = {.lex_state = 7, .external_lex_state = 3}, - [2354] = {.lex_state = 0, .external_lex_state = 3}, - [2355] = {.lex_state = 0, .external_lex_state = 3}, - [2356] = {.lex_state = 7, .external_lex_state = 3}, - [2357] = {.lex_state = 57, .external_lex_state = 3}, + [2354] = {.lex_state = 7, .external_lex_state = 3}, + [2355] = {.lex_state = 7, .external_lex_state = 3}, + [2356] = {.lex_state = 0, .external_lex_state = 3}, + [2357] = {.lex_state = 0, .external_lex_state = 3}, [2358] = {.lex_state = 0, .external_lex_state = 3}, - [2359] = {.lex_state = 7, .external_lex_state = 3}, - [2360] = {.lex_state = 0, .external_lex_state = 3}, - [2361] = {.lex_state = 0, .external_lex_state = 3}, - [2362] = {.lex_state = 7, .external_lex_state = 3}, - [2363] = {.lex_state = 0, .external_lex_state = 3}, + [2359] = {.lex_state = 10, .external_lex_state = 3}, + [2360] = {.lex_state = 7, .external_lex_state = 3}, + [2361] = {.lex_state = 7, .external_lex_state = 3}, + [2362] = {.lex_state = 0, .external_lex_state = 3}, + [2363] = {.lex_state = 7, .external_lex_state = 3}, [2364] = {.lex_state = 0, .external_lex_state = 3}, - [2365] = {.lex_state = 0, .external_lex_state = 3}, + [2365] = {.lex_state = 7, .external_lex_state = 3}, [2366] = {.lex_state = 0, .external_lex_state = 3}, [2367] = {.lex_state = 0, .external_lex_state = 3}, [2368] = {.lex_state = 7, .external_lex_state = 3}, [2369] = {.lex_state = 0, .external_lex_state = 3}, - [2370] = {.lex_state = 0, .external_lex_state = 3}, + [2370] = {.lex_state = 7, .external_lex_state = 3}, [2371] = {.lex_state = 7, .external_lex_state = 3}, - [2372] = {.lex_state = 10, .external_lex_state = 3}, + [2372] = {.lex_state = 57, .external_lex_state = 3}, [2373] = {.lex_state = 0, .external_lex_state = 3}, [2374] = {.lex_state = 0, .external_lex_state = 3}, [2375] = {.lex_state = 0, .external_lex_state = 3}, - [2376] = {.lex_state = 7, .external_lex_state = 3}, + [2376] = {.lex_state = 0, .external_lex_state = 3}, [2377] = {.lex_state = 0, .external_lex_state = 3}, [2378] = {.lex_state = 0, .external_lex_state = 3}, [2379] = {.lex_state = 0, .external_lex_state = 3}, [2380] = {.lex_state = 0, .external_lex_state = 3}, - [2381] = {.lex_state = 7, .external_lex_state = 3}, - [2382] = {.lex_state = 7, .external_lex_state = 3}, + [2381] = {.lex_state = 0, .external_lex_state = 3}, + [2382] = {.lex_state = 0, .external_lex_state = 3}, [2383] = {.lex_state = 0, .external_lex_state = 3}, - [2384] = {.lex_state = 0, .external_lex_state = 3}, + [2384] = {.lex_state = 7, .external_lex_state = 3}, [2385] = {.lex_state = 0, .external_lex_state = 3}, [2386] = {.lex_state = 7, .external_lex_state = 3}, - [2387] = {.lex_state = 0, .external_lex_state = 3}, - [2388] = {.lex_state = 0, .external_lex_state = 3}, - [2389] = {.lex_state = 0, .external_lex_state = 3}, + [2387] = {.lex_state = 7, .external_lex_state = 3}, + [2388] = {.lex_state = 57, .external_lex_state = 3}, + [2389] = {.lex_state = 7, .external_lex_state = 3}, [2390] = {.lex_state = 7, .external_lex_state = 3}, - [2391] = {.lex_state = 0, .external_lex_state = 3}, + [2391] = {.lex_state = 7, .external_lex_state = 3}, [2392] = {.lex_state = 0, .external_lex_state = 3}, - [2393] = {.lex_state = 0, .external_lex_state = 3}, - [2394] = {.lex_state = 7, .external_lex_state = 3}, - [2395] = {.lex_state = 0, .external_lex_state = 3}, - [2396] = {.lex_state = 7, .external_lex_state = 3}, - [2397] = {.lex_state = 7, .external_lex_state = 3}, - [2398] = {.lex_state = 10, .external_lex_state = 3}, - [2399] = {.lex_state = 0, .external_lex_state = 3}, - [2400] = {.lex_state = 7, .external_lex_state = 3}, + [2393] = {.lex_state = 7, .external_lex_state = 3}, + [2394] = {.lex_state = 0, .external_lex_state = 3}, + [2395] = {.lex_state = 7, .external_lex_state = 3}, + [2396] = {.lex_state = 0, .external_lex_state = 3}, + [2397] = {.lex_state = 0, .external_lex_state = 3}, + [2398] = {.lex_state = 7, .external_lex_state = 3}, + [2399] = {.lex_state = 10, .external_lex_state = 3}, + [2400] = {.lex_state = 0, .external_lex_state = 3}, [2401] = {.lex_state = 7, .external_lex_state = 3}, [2402] = {.lex_state = 0, .external_lex_state = 3}, - [2403] = {.lex_state = 7, .external_lex_state = 3}, - [2404] = {.lex_state = 0, .external_lex_state = 3}, - [2405] = {.lex_state = 0, .external_lex_state = 3}, + [2403] = {.lex_state = 0, .external_lex_state = 3}, + [2404] = {.lex_state = 7, .external_lex_state = 3}, + [2405] = {.lex_state = 7, .external_lex_state = 3}, [2406] = {.lex_state = 0, .external_lex_state = 3}, [2407] = {.lex_state = 0, .external_lex_state = 3}, [2408] = {.lex_state = 0, .external_lex_state = 3}, - [2409] = {.lex_state = 7, .external_lex_state = 3}, - [2410] = {.lex_state = 0, .external_lex_state = 3}, + [2409] = {.lex_state = 10, .external_lex_state = 3}, + [2410] = {.lex_state = 7, .external_lex_state = 3}, [2411] = {.lex_state = 0, .external_lex_state = 3}, [2412] = {.lex_state = 7, .external_lex_state = 3}, [2413] = {.lex_state = 0, .external_lex_state = 3}, [2414] = {.lex_state = 0, .external_lex_state = 3}, - [2415] = {.lex_state = 0, .external_lex_state = 3}, - [2416] = {.lex_state = 0, .external_lex_state = 3}, - [2417] = {.lex_state = 0, .external_lex_state = 3}, + [2415] = {.lex_state = 10, .external_lex_state = 3}, + [2416] = {.lex_state = 7, .external_lex_state = 3}, + [2417] = {.lex_state = 7, .external_lex_state = 3}, [2418] = {.lex_state = 7, .external_lex_state = 3}, - [2419] = {.lex_state = 10, .external_lex_state = 3}, - [2420] = {.lex_state = 0, .external_lex_state = 3}, - [2421] = {.lex_state = 10, .external_lex_state = 3}, + [2419] = {.lex_state = 7, .external_lex_state = 3}, + [2420] = {.lex_state = 7, .external_lex_state = 3}, + [2421] = {.lex_state = 0, .external_lex_state = 3}, [2422] = {.lex_state = 0, .external_lex_state = 3}, [2423] = {.lex_state = 0, .external_lex_state = 3}, [2424] = {.lex_state = 7, .external_lex_state = 3}, - [2425] = {.lex_state = 0, .external_lex_state = 3}, - [2426] = {.lex_state = 10, .external_lex_state = 3}, - [2427] = {.lex_state = 0, .external_lex_state = 3}, + [2425] = {.lex_state = 7, .external_lex_state = 3}, + [2426] = {.lex_state = 7, .external_lex_state = 3}, + [2427] = {.lex_state = 7, .external_lex_state = 3}, [2428] = {.lex_state = 0, .external_lex_state = 3}, - [2429] = {.lex_state = 0, .external_lex_state = 3}, + [2429] = {.lex_state = 10, .external_lex_state = 3}, [2430] = {.lex_state = 0, .external_lex_state = 3}, - [2431] = {.lex_state = 0, .external_lex_state = 3}, + [2431] = {.lex_state = 7, .external_lex_state = 3}, [2432] = {.lex_state = 7, .external_lex_state = 3}, [2433] = {.lex_state = 0, .external_lex_state = 3}, - [2434] = {.lex_state = 0, .external_lex_state = 3}, - [2435] = {.lex_state = 10, .external_lex_state = 3}, + [2434] = {.lex_state = 10, .external_lex_state = 3}, + [2435] = {.lex_state = 0, .external_lex_state = 3}, [2436] = {.lex_state = 0, .external_lex_state = 3}, [2437] = {.lex_state = 0, .external_lex_state = 3}, - [2438] = {.lex_state = 10, .external_lex_state = 3}, - [2439] = {.lex_state = 0, .external_lex_state = 3}, + [2438] = {.lex_state = 7, .external_lex_state = 3}, + [2439] = {.lex_state = 7, .external_lex_state = 3}, [2440] = {.lex_state = 0, .external_lex_state = 3}, - [2441] = {.lex_state = 10, .external_lex_state = 3}, + [2441] = {.lex_state = 0, .external_lex_state = 3}, [2442] = {.lex_state = 7, .external_lex_state = 3}, - [2443] = {.lex_state = 0, .external_lex_state = 3}, - [2444] = {.lex_state = 10, .external_lex_state = 3}, - [2445] = {.lex_state = 7, .external_lex_state = 3}, + [2443] = {.lex_state = 57, .external_lex_state = 3}, + [2444] = {.lex_state = 7, .external_lex_state = 3}, + [2445] = {.lex_state = 0, .external_lex_state = 3}, [2446] = {.lex_state = 7, .external_lex_state = 3}, [2447] = {.lex_state = 7, .external_lex_state = 3}, - [2448] = {.lex_state = 0, .external_lex_state = 3}, - [2449] = {.lex_state = 0, .external_lex_state = 3}, - [2450] = {.lex_state = 10, .external_lex_state = 3}, + [2448] = {.lex_state = 7, .external_lex_state = 3}, + [2449] = {.lex_state = 7, .external_lex_state = 3}, + [2450] = {.lex_state = 7, .external_lex_state = 3}, [2451] = {.lex_state = 0, .external_lex_state = 3}, - [2452] = {.lex_state = 10, .external_lex_state = 3}, + [2452] = {.lex_state = 0, .external_lex_state = 3}, [2453] = {.lex_state = 0, .external_lex_state = 3}, [2454] = {.lex_state = 0, .external_lex_state = 3}, [2455] = {.lex_state = 0, .external_lex_state = 3}, [2456] = {.lex_state = 0, .external_lex_state = 3}, [2457] = {.lex_state = 7, .external_lex_state = 3}, [2458] = {.lex_state = 0, .external_lex_state = 3}, - [2459] = {.lex_state = 7, .external_lex_state = 3}, - [2460] = {.lex_state = 7, .external_lex_state = 3}, - [2461] = {.lex_state = 7, .external_lex_state = 3}, + [2459] = {.lex_state = 0, .external_lex_state = 3}, + [2460] = {.lex_state = 0, .external_lex_state = 3}, + [2461] = {.lex_state = 0, .external_lex_state = 3}, [2462] = {.lex_state = 7, .external_lex_state = 3}, [2463] = {.lex_state = 0, .external_lex_state = 3}, - [2464] = {.lex_state = 7, .external_lex_state = 3}, - [2465] = {.lex_state = 7, .external_lex_state = 3}, - [2466] = {.lex_state = 0, .external_lex_state = 3}, + [2464] = {.lex_state = 10, .external_lex_state = 3}, + [2465] = {.lex_state = 0, .external_lex_state = 3}, + [2466] = {.lex_state = 10, .external_lex_state = 3}, [2467] = {.lex_state = 0, .external_lex_state = 3}, [2468] = {.lex_state = 7, .external_lex_state = 3}, [2469] = {.lex_state = 7, .external_lex_state = 3}, [2470] = {.lex_state = 7, .external_lex_state = 3}, - [2471] = {.lex_state = 0, .external_lex_state = 3}, - [2472] = {.lex_state = 7, .external_lex_state = 3}, + [2471] = {.lex_state = 10, .external_lex_state = 3}, + [2472] = {.lex_state = 0, .external_lex_state = 3}, [2473] = {.lex_state = 7, .external_lex_state = 3}, - [2474] = {.lex_state = 7, .external_lex_state = 3}, + [2474] = {.lex_state = 0, .external_lex_state = 3}, [2475] = {.lex_state = 0, .external_lex_state = 3}, [2476] = {.lex_state = 0, .external_lex_state = 3}, - [2477] = {.lex_state = 7, .external_lex_state = 3}, - [2478] = {.lex_state = 7, .external_lex_state = 3}, + [2477] = {.lex_state = 0, .external_lex_state = 3}, + [2478] = {.lex_state = 0, .external_lex_state = 3}, [2479] = {.lex_state = 0, .external_lex_state = 3}, + [2480] = {.lex_state = 10, .external_lex_state = 3}, + [2481] = {.lex_state = 0, .external_lex_state = 3}, + [2482] = {.lex_state = 0, .external_lex_state = 3}, + [2483] = {.lex_state = 0, .external_lex_state = 3}, + [2484] = {.lex_state = 0, .external_lex_state = 3}, + [2485] = {.lex_state = 0, .external_lex_state = 3}, + [2486] = {.lex_state = 10, .external_lex_state = 3}, + [2487] = {.lex_state = 0, .external_lex_state = 3}, + [2488] = {.lex_state = 0, .external_lex_state = 3}, + [2489] = {.lex_state = 10, .external_lex_state = 3}, + [2490] = {.lex_state = 0, .external_lex_state = 3}, + [2491] = {.lex_state = 0, .external_lex_state = 3}, + [2492] = {.lex_state = 0, .external_lex_state = 3}, + [2493] = {.lex_state = 0, .external_lex_state = 3}, + [2494] = {.lex_state = 0, .external_lex_state = 3}, + [2495] = {.lex_state = 10, .external_lex_state = 3}, + [2496] = {.lex_state = 0, .external_lex_state = 3}, + [2497] = {.lex_state = 10, .external_lex_state = 3}, + [2498] = {.lex_state = 0, .external_lex_state = 3}, + [2499] = {.lex_state = 0, .external_lex_state = 3}, + [2500] = {.lex_state = 0, .external_lex_state = 3}, + [2501] = {.lex_state = 0, .external_lex_state = 3}, + [2502] = {.lex_state = 0, .external_lex_state = 3}, + [2503] = {.lex_state = 0, .external_lex_state = 3}, + [2504] = {.lex_state = 7, .external_lex_state = 3}, + [2505] = {.lex_state = 0, .external_lex_state = 3}, + [2506] = {.lex_state = 7, .external_lex_state = 3}, + [2507] = {.lex_state = 7, .external_lex_state = 3}, + [2508] = {.lex_state = 0, .external_lex_state = 3}, + [2509] = {.lex_state = 7, .external_lex_state = 3}, + [2510] = {.lex_state = 0, .external_lex_state = 3}, + [2511] = {.lex_state = 7, .external_lex_state = 3}, + [2512] = {.lex_state = 10, .external_lex_state = 3}, + [2513] = {.lex_state = 7, .external_lex_state = 3}, + [2514] = {.lex_state = 7, .external_lex_state = 3}, + [2515] = {.lex_state = 7, .external_lex_state = 3}, + [2516] = {.lex_state = 0, .external_lex_state = 3}, + [2517] = {.lex_state = 7, .external_lex_state = 3}, + [2518] = {.lex_state = 7, .external_lex_state = 3}, + [2519] = {.lex_state = 7, .external_lex_state = 3}, + [2520] = {.lex_state = 0, .external_lex_state = 3}, + [2521] = {.lex_state = 7, .external_lex_state = 3}, + [2522] = {.lex_state = 0, .external_lex_state = 3}, + [2523] = {.lex_state = 0, .external_lex_state = 3}, + [2524] = {.lex_state = 7, .external_lex_state = 3}, }; enum { @@ -14204,54 +13714,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2377), - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym__expression_statement] = STATE(8), - [sym_macro_definition] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_mod_item] = STATE(8), - [sym_foreign_mod_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_union_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_extern_crate_declaration] = STATE(8), - [sym_const_item] = STATE(8), - [sym_static_item] = STATE(8), - [sym_type_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(8), - [sym_trait_item] = STATE(8), - [sym_associated_type] = STATE(8), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1212), + [sym_source_file] = STATE(2440), + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym__expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1237), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -14260,22 +13770,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -14351,53 +13861,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym__expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1166), + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym__expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1192), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -14406,22 +13916,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -14497,53 +14007,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym__expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1129), + [sym__statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym__expression_statement] = STATE(11), + [sym_macro_definition] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_mod_item] = STATE(11), + [sym_foreign_mod_item] = STATE(11), + [sym_struct_item] = STATE(11), + [sym_union_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_extern_crate_declaration] = STATE(11), + [sym_const_item] = STATE(11), + [sym_static_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(11), + [sym_trait_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1217), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -14552,22 +14062,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -14643,53 +14153,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym__expression_statement] = STATE(6), - [sym_macro_definition] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_foreign_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_union_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_extern_crate_declaration] = STATE(6), - [sym_const_item] = STATE(6), - [sym_static_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1151), + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym__expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1158), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -14698,22 +14208,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -14789,53 +14299,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__statement] = STATE(3), - [sym_empty_statement] = STATE(3), - [sym__expression_statement] = STATE(3), - [sym_macro_definition] = STATE(3), - [sym_attribute_item] = STATE(3), - [sym_inner_attribute_item] = STATE(3), - [sym_mod_item] = STATE(3), - [sym_foreign_mod_item] = STATE(3), - [sym_struct_item] = STATE(3), - [sym_union_item] = STATE(3), - [sym_enum_item] = STATE(3), - [sym_extern_crate_declaration] = STATE(3), - [sym_const_item] = STATE(3), - [sym_static_item] = STATE(3), - [sym_type_item] = STATE(3), - [sym_function_item] = STATE(3), - [sym_function_signature_item] = STATE(3), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(3), - [sym_trait_item] = STATE(3), - [sym_associated_type] = STATE(3), - [sym_let_declaration] = STATE(3), - [sym_use_declaration] = STATE(3), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1116), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym__expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1198), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -14844,22 +14354,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -14935,53 +14445,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [6] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym__expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1142), + [sym__statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym__expression_statement] = STATE(9), + [sym_macro_definition] = STATE(9), + [sym_attribute_item] = STATE(9), + [sym_inner_attribute_item] = STATE(9), + [sym_mod_item] = STATE(9), + [sym_foreign_mod_item] = STATE(9), + [sym_struct_item] = STATE(9), + [sym_union_item] = STATE(9), + [sym_enum_item] = STATE(9), + [sym_extern_crate_declaration] = STATE(9), + [sym_const_item] = STATE(9), + [sym_static_item] = STATE(9), + [sym_type_item] = STATE(9), + [sym_function_item] = STATE(9), + [sym_function_signature_item] = STATE(9), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(9), + [sym_trait_item] = STATE(9), + [sym_associated_type] = STATE(9), + [sym_let_declaration] = STATE(9), + [sym_use_declaration] = STATE(9), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1221), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -14990,22 +14500,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -15081,53 +14591,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [7] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym__expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1165), + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym__expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1237), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -15136,28 +14646,174 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [ts_builtin_sym_end] = ACTIONS(113), + [sym_identifier] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_macro_rules_BANG] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_u8] = ACTIONS(136), + [anon_sym_i8] = ACTIONS(136), + [anon_sym_u16] = ACTIONS(136), + [anon_sym_i16] = ACTIONS(136), + [anon_sym_u32] = ACTIONS(136), + [anon_sym_i32] = ACTIONS(136), + [anon_sym_u64] = ACTIONS(136), + [anon_sym_i64] = ACTIONS(136), + [anon_sym_u128] = ACTIONS(136), + [anon_sym_i128] = ACTIONS(136), + [anon_sym_isize] = ACTIONS(136), + [anon_sym_usize] = ACTIONS(136), + [anon_sym_f32] = ACTIONS(136), + [anon_sym_f64] = ACTIONS(136), + [anon_sym_bool] = ACTIONS(136), + [anon_sym_str] = ACTIONS(136), + [anon_sym_char] = ACTIONS(136), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_async] = ACTIONS(142), + [anon_sym_break] = ACTIONS(145), + [anon_sym_const] = ACTIONS(148), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_default] = ACTIONS(154), + [anon_sym_enum] = ACTIONS(157), + [anon_sym_fn] = ACTIONS(160), + [anon_sym_for] = ACTIONS(163), + [anon_sym_if] = ACTIONS(166), + [anon_sym_impl] = ACTIONS(169), + [anon_sym_let] = ACTIONS(172), + [anon_sym_loop] = ACTIONS(175), + [anon_sym_match] = ACTIONS(178), + [anon_sym_mod] = ACTIONS(181), + [anon_sym_pub] = ACTIONS(184), + [anon_sym_return] = ACTIONS(187), + [anon_sym_static] = ACTIONS(190), + [anon_sym_struct] = ACTIONS(193), + [anon_sym_trait] = ACTIONS(196), + [anon_sym_type] = ACTIONS(199), + [anon_sym_union] = ACTIONS(202), + [anon_sym_unsafe] = ACTIONS(205), + [anon_sym_use] = ACTIONS(208), + [anon_sym_while] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(214), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_COLON_COLON] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(226), + [anon_sym_DOT_DOT] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(232), + [anon_sym_move] = ACTIONS(235), + [sym_integer_literal] = ACTIONS(238), + [aux_sym_string_literal_token1] = ACTIONS(241), + [sym_char_literal] = ACTIONS(238), + [anon_sym_true] = ACTIONS(244), + [anon_sym_false] = ACTIONS(244), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(247), + [sym_super] = ACTIONS(250), + [sym_crate] = ACTIONS(253), + [sym_metavariable] = ACTIONS(256), + [sym_raw_string_literal] = ACTIONS(238), + [sym_float_literal] = ACTIONS(238), + [sym_block_comment] = ACTIONS(3), + }, + [8] = { + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym__expression_statement] = STATE(2), + [sym_macro_definition] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_foreign_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_union_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_extern_crate_declaration] = STATE(2), + [sym_const_item] = STATE(2), + [sym_static_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1219), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(259), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15226,54 +14882,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [8] = { - [sym__statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym__expression_statement] = STATE(15), - [sym_macro_definition] = STATE(15), - [sym_attribute_item] = STATE(15), - [sym_inner_attribute_item] = STATE(15), - [sym_mod_item] = STATE(15), - [sym_foreign_mod_item] = STATE(15), - [sym_struct_item] = STATE(15), - [sym_union_item] = STATE(15), - [sym_enum_item] = STATE(15), - [sym_extern_crate_declaration] = STATE(15), - [sym_const_item] = STATE(15), - [sym_static_item] = STATE(15), - [sym_type_item] = STATE(15), - [sym_function_item] = STATE(15), - [sym_function_signature_item] = STATE(15), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(15), - [sym_trait_item] = STATE(15), - [sym_associated_type] = STATE(15), - [sym_let_declaration] = STATE(15), - [sym_use_declaration] = STATE(15), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1212), + [9] = { + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym__expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1178), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -15282,28 +14938,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [ts_builtin_sym_end] = ACTIONS(115), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(261), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15372,7 +15028,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [9] = { + [10] = { [sym__statement] = STATE(14), [sym_empty_statement] = STATE(14), [sym__expression_statement] = STATE(14), @@ -15390,36 +15046,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(14), [sym_function_item] = STATE(14), [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2376), + [sym_function_modifiers] = STATE(2438), [sym_impl_item] = STATE(14), [sym_trait_item] = STATE(14), [sym_associated_type] = STATE(14), [sym_let_declaration] = STATE(14), [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1139), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1197), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -15428,28 +15084,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(263), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15518,54 +15174,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [10] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym__expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1177), + [11] = { + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym__expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1224), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -15574,28 +15230,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(265), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15664,54 +15320,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [11] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym__expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1112), + [12] = { + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym__expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1173), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -15720,28 +15376,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15810,54 +15466,200 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [12] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym__expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1152), + [13] = { + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym__expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(73), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_macro_rules_BANG] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_u8] = ACTIONS(136), + [anon_sym_i8] = ACTIONS(136), + [anon_sym_u16] = ACTIONS(136), + [anon_sym_i16] = ACTIONS(136), + [anon_sym_u32] = ACTIONS(136), + [anon_sym_i32] = ACTIONS(136), + [anon_sym_u64] = ACTIONS(136), + [anon_sym_i64] = ACTIONS(136), + [anon_sym_u128] = ACTIONS(136), + [anon_sym_i128] = ACTIONS(136), + [anon_sym_isize] = ACTIONS(136), + [anon_sym_usize] = ACTIONS(136), + [anon_sym_f32] = ACTIONS(136), + [anon_sym_f64] = ACTIONS(136), + [anon_sym_bool] = ACTIONS(136), + [anon_sym_str] = ACTIONS(136), + [anon_sym_char] = ACTIONS(136), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_async] = ACTIONS(142), + [anon_sym_break] = ACTIONS(145), + [anon_sym_const] = ACTIONS(148), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_default] = ACTIONS(154), + [anon_sym_enum] = ACTIONS(157), + [anon_sym_fn] = ACTIONS(160), + [anon_sym_for] = ACTIONS(163), + [anon_sym_if] = ACTIONS(166), + [anon_sym_impl] = ACTIONS(169), + [anon_sym_let] = ACTIONS(172), + [anon_sym_loop] = ACTIONS(175), + [anon_sym_match] = ACTIONS(178), + [anon_sym_mod] = ACTIONS(181), + [anon_sym_pub] = ACTIONS(184), + [anon_sym_return] = ACTIONS(187), + [anon_sym_static] = ACTIONS(190), + [anon_sym_struct] = ACTIONS(193), + [anon_sym_trait] = ACTIONS(196), + [anon_sym_type] = ACTIONS(199), + [anon_sym_union] = ACTIONS(202), + [anon_sym_unsafe] = ACTIONS(205), + [anon_sym_use] = ACTIONS(208), + [anon_sym_while] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(214), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_COLON_COLON] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(226), + [anon_sym_DOT_DOT] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(232), + [anon_sym_move] = ACTIONS(235), + [sym_integer_literal] = ACTIONS(238), + [aux_sym_string_literal_token1] = ACTIONS(241), + [sym_char_literal] = ACTIONS(238), + [anon_sym_true] = ACTIONS(244), + [anon_sym_false] = ACTIONS(244), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(247), + [sym_super] = ACTIONS(250), + [sym_crate] = ACTIONS(253), + [sym_metavariable] = ACTIONS(256), + [sym_raw_string_literal] = ACTIONS(238), + [sym_float_literal] = ACTIONS(238), + [sym_block_comment] = ACTIONS(3), + }, + [14] = { + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym__expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1209), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -15866,28 +15668,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(123), + [anon_sym_RBRACE] = ACTIONS(269), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15956,54 +15758,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [13] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym__expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1136), + [15] = { + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym__expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1160), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -16012,28 +15814,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(271), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16102,346 +15904,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [14] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym__expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(130), - [anon_sym_macro_rules_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_u8] = ACTIONS(150), - [anon_sym_i8] = ACTIONS(150), - [anon_sym_u16] = ACTIONS(150), - [anon_sym_i16] = ACTIONS(150), - [anon_sym_u32] = ACTIONS(150), - [anon_sym_i32] = ACTIONS(150), - [anon_sym_u64] = ACTIONS(150), - [anon_sym_i64] = ACTIONS(150), - [anon_sym_u128] = ACTIONS(150), - [anon_sym_i128] = ACTIONS(150), - [anon_sym_isize] = ACTIONS(150), - [anon_sym_usize] = ACTIONS(150), - [anon_sym_f32] = ACTIONS(150), - [anon_sym_f64] = ACTIONS(150), - [anon_sym_bool] = ACTIONS(150), - [anon_sym_str] = ACTIONS(150), - [anon_sym_char] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_async] = ACTIONS(156), - [anon_sym_break] = ACTIONS(159), - [anon_sym_const] = ACTIONS(162), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_default] = ACTIONS(168), - [anon_sym_enum] = ACTIONS(171), - [anon_sym_fn] = ACTIONS(174), - [anon_sym_for] = ACTIONS(177), - [anon_sym_if] = ACTIONS(180), - [anon_sym_impl] = ACTIONS(183), - [anon_sym_let] = ACTIONS(186), - [anon_sym_loop] = ACTIONS(189), - [anon_sym_match] = ACTIONS(192), - [anon_sym_mod] = ACTIONS(195), - [anon_sym_pub] = ACTIONS(198), - [anon_sym_return] = ACTIONS(201), - [anon_sym_static] = ACTIONS(204), - [anon_sym_struct] = ACTIONS(207), - [anon_sym_trait] = ACTIONS(210), - [anon_sym_type] = ACTIONS(213), - [anon_sym_union] = ACTIONS(216), - [anon_sym_unsafe] = ACTIONS(219), - [anon_sym_use] = ACTIONS(222), - [anon_sym_while] = ACTIONS(225), - [anon_sym_POUND] = ACTIONS(228), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_extern] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_COLON_COLON] = ACTIONS(237), - [anon_sym_AMP] = ACTIONS(240), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(246), - [anon_sym_move] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(252), - [aux_sym_string_literal_token1] = ACTIONS(255), - [sym_char_literal] = ACTIONS(252), - [anon_sym_true] = ACTIONS(258), - [anon_sym_false] = ACTIONS(258), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(261), - [sym_super] = ACTIONS(264), - [sym_crate] = ACTIONS(267), - [sym_metavariable] = ACTIONS(270), - [sym_raw_string_literal] = ACTIONS(252), - [sym_float_literal] = ACTIONS(252), - [sym_block_comment] = ACTIONS(3), - }, - [15] = { - [sym__statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym__expression_statement] = STATE(15), - [sym_macro_definition] = STATE(15), - [sym_attribute_item] = STATE(15), - [sym_inner_attribute_item] = STATE(15), - [sym_mod_item] = STATE(15), - [sym_foreign_mod_item] = STATE(15), - [sym_struct_item] = STATE(15), - [sym_union_item] = STATE(15), - [sym_enum_item] = STATE(15), - [sym_extern_crate_declaration] = STATE(15), - [sym_const_item] = STATE(15), - [sym_static_item] = STATE(15), - [sym_type_item] = STATE(15), - [sym_function_item] = STATE(15), - [sym_function_signature_item] = STATE(15), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(15), - [sym_trait_item] = STATE(15), - [sym_associated_type] = STATE(15), - [sym_let_declaration] = STATE(15), - [sym_use_declaration] = STATE(15), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [ts_builtin_sym_end] = ACTIONS(142), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(130), - [anon_sym_macro_rules_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_u8] = ACTIONS(150), - [anon_sym_i8] = ACTIONS(150), - [anon_sym_u16] = ACTIONS(150), - [anon_sym_i16] = ACTIONS(150), - [anon_sym_u32] = ACTIONS(150), - [anon_sym_i32] = ACTIONS(150), - [anon_sym_u64] = ACTIONS(150), - [anon_sym_i64] = ACTIONS(150), - [anon_sym_u128] = ACTIONS(150), - [anon_sym_i128] = ACTIONS(150), - [anon_sym_isize] = ACTIONS(150), - [anon_sym_usize] = ACTIONS(150), - [anon_sym_f32] = ACTIONS(150), - [anon_sym_f64] = ACTIONS(150), - [anon_sym_bool] = ACTIONS(150), - [anon_sym_str] = ACTIONS(150), - [anon_sym_char] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_async] = ACTIONS(156), - [anon_sym_break] = ACTIONS(159), - [anon_sym_const] = ACTIONS(162), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_default] = ACTIONS(168), - [anon_sym_enum] = ACTIONS(171), - [anon_sym_fn] = ACTIONS(174), - [anon_sym_for] = ACTIONS(177), - [anon_sym_if] = ACTIONS(180), - [anon_sym_impl] = ACTIONS(183), - [anon_sym_let] = ACTIONS(186), - [anon_sym_loop] = ACTIONS(189), - [anon_sym_match] = ACTIONS(192), - [anon_sym_mod] = ACTIONS(195), - [anon_sym_pub] = ACTIONS(198), - [anon_sym_return] = ACTIONS(201), - [anon_sym_static] = ACTIONS(204), - [anon_sym_struct] = ACTIONS(207), - [anon_sym_trait] = ACTIONS(210), - [anon_sym_type] = ACTIONS(213), - [anon_sym_union] = ACTIONS(216), - [anon_sym_unsafe] = ACTIONS(219), - [anon_sym_use] = ACTIONS(222), - [anon_sym_while] = ACTIONS(225), - [anon_sym_POUND] = ACTIONS(228), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_extern] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_COLON_COLON] = ACTIONS(237), - [anon_sym_AMP] = ACTIONS(240), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(246), - [anon_sym_move] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(252), - [aux_sym_string_literal_token1] = ACTIONS(255), - [sym_char_literal] = ACTIONS(252), - [anon_sym_true] = ACTIONS(258), - [anon_sym_false] = ACTIONS(258), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(261), - [sym_super] = ACTIONS(264), - [sym_crate] = ACTIONS(267), - [sym_metavariable] = ACTIONS(270), - [sym_raw_string_literal] = ACTIONS(252), - [sym_float_literal] = ACTIONS(252), - [sym_block_comment] = ACTIONS(3), - }, [16] = { - [sym__statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym__expression_statement] = STATE(9), - [sym_macro_definition] = STATE(9), - [sym_attribute_item] = STATE(9), - [sym_inner_attribute_item] = STATE(9), - [sym_mod_item] = STATE(9), - [sym_foreign_mod_item] = STATE(9), - [sym_struct_item] = STATE(9), - [sym_union_item] = STATE(9), - [sym_enum_item] = STATE(9), - [sym_extern_crate_declaration] = STATE(9), - [sym_const_item] = STATE(9), - [sym_static_item] = STATE(9), - [sym_type_item] = STATE(9), - [sym_function_item] = STATE(9), - [sym_function_signature_item] = STATE(9), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(9), - [sym_trait_item] = STATE(9), - [sym_associated_type] = STATE(9), - [sym_let_declaration] = STATE(9), - [sym_use_declaration] = STATE(9), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1121), + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym__expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2438), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1237), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), + [sym_scoped_identifier] = STATE(1155), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -16450,28 +15960,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2429), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [ts_builtin_sym_end] = ACTIONS(273), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(273), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16541,50 +16051,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(978), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1093), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_LPAREN] = ACTIONS(277), @@ -16680,50 +16190,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1042), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1121), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(305), [anon_sym_LPAREN] = ACTIONS(305), @@ -16753,7 +16263,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(309), + [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_as] = ACTIONS(307), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), @@ -16818,62 +16328,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(761), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1080), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(311), - [anon_sym_EQ_GT] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(311), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_EQ_GT] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_RBRACK] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(309), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -16891,8 +16401,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(313), + [anon_sym_SQUOTE] = ACTIONS(313), + [anon_sym_as] = ACTIONS(311), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), @@ -16907,40 +16417,40 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(313), + [anon_sym_EQ] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(311), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(311), - [anon_sym_DOT_DOT] = ACTIONS(319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(313), - [anon_sym_EQ_EQ] = ACTIONS(311), - [anon_sym_BANG_EQ] = ACTIONS(311), - [anon_sym_LT_EQ] = ACTIONS(311), - [anon_sym_GT_EQ] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(313), - [anon_sym_GT_GT] = ACTIONS(313), - [anon_sym_SLASH] = ACTIONS(313), - [anon_sym_PERCENT] = ACTIONS(313), - [anon_sym_PLUS_EQ] = ACTIONS(311), - [anon_sym_DASH_EQ] = ACTIONS(311), - [anon_sym_STAR_EQ] = ACTIONS(311), - [anon_sym_SLASH_EQ] = ACTIONS(311), - [anon_sym_PERCENT_EQ] = ACTIONS(311), - [anon_sym_AMP_EQ] = ACTIONS(311), - [anon_sym_PIPE_EQ] = ACTIONS(311), - [anon_sym_CARET_EQ] = ACTIONS(311), - [anon_sym_LT_LT_EQ] = ACTIONS(311), - [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(309), + [anon_sym_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_AMP_AMP] = ACTIONS(309), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ] = ACTIONS(309), + [anon_sym_LT_EQ] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(311), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_PLUS_EQ] = ACTIONS(309), + [anon_sym_DASH_EQ] = ACTIONS(309), + [anon_sym_STAR_EQ] = ACTIONS(309), + [anon_sym_SLASH_EQ] = ACTIONS(309), + [anon_sym_PERCENT_EQ] = ACTIONS(309), + [anon_sym_AMP_EQ] = ACTIONS(309), + [anon_sym_PIPE_EQ] = ACTIONS(309), + [anon_sym_CARET_EQ] = ACTIONS(309), + [anon_sym_LT_LT_EQ] = ACTIONS(309), + [anon_sym_GT_GT_EQ] = ACTIONS(309), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(311), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -16956,62 +16466,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1003), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(767), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(323), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(323), - [anon_sym_EQ_GT] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(323), - [anon_sym_RBRACK] = ACTIONS(323), - [anon_sym_PLUS] = ACTIONS(325), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_QMARK] = ACTIONS(315), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -17030,7 +16540,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(325), + [anon_sym_as] = ACTIONS(317), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), @@ -17045,40 +16555,40 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(325), - [anon_sym_COMMA] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(325), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(319), + [anon_sym_GT] = ACTIONS(317), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(323), - [anon_sym_DOT_DOT] = ACTIONS(325), - [anon_sym_DOT_DOT_EQ] = ACTIONS(323), - [anon_sym_DASH] = ACTIONS(325), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE_PIPE] = ACTIONS(323), + [anon_sym_AMP] = ACTIONS(321), + [anon_sym_DOT_DOT_DOT] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(323), + [anon_sym_DOT_DOT_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_AMP_AMP] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(315), [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(325), - [anon_sym_EQ_EQ] = ACTIONS(323), - [anon_sym_BANG_EQ] = ACTIONS(323), - [anon_sym_LT_EQ] = ACTIONS(323), - [anon_sym_GT_EQ] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_PERCENT] = ACTIONS(325), - [anon_sym_PLUS_EQ] = ACTIONS(323), - [anon_sym_DASH_EQ] = ACTIONS(323), - [anon_sym_STAR_EQ] = ACTIONS(323), - [anon_sym_SLASH_EQ] = ACTIONS(323), - [anon_sym_PERCENT_EQ] = ACTIONS(323), - [anon_sym_AMP_EQ] = ACTIONS(323), - [anon_sym_PIPE_EQ] = ACTIONS(323), - [anon_sym_CARET_EQ] = ACTIONS(323), - [anon_sym_LT_LT_EQ] = ACTIONS(323), - [anon_sym_GT_GT_EQ] = ACTIONS(323), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_GT_GT] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(317), + [anon_sym_PERCENT] = ACTIONS(317), + [anon_sym_PLUS_EQ] = ACTIONS(315), + [anon_sym_DASH_EQ] = ACTIONS(315), + [anon_sym_STAR_EQ] = ACTIONS(315), + [anon_sym_SLASH_EQ] = ACTIONS(315), + [anon_sym_PERCENT_EQ] = ACTIONS(315), + [anon_sym_AMP_EQ] = ACTIONS(315), + [anon_sym_PIPE_EQ] = ACTIONS(315), + [anon_sym_CARET_EQ] = ACTIONS(315), + [anon_sym_LT_LT_EQ] = ACTIONS(315), + [anon_sym_GT_GT_EQ] = ACTIONS(315), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(325), + [anon_sym_DOT] = ACTIONS(317), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -17094,50 +16604,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1035), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1014), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(13), @@ -17185,17 +16695,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(303), [anon_sym_EQ] = ACTIONS(329), [anon_sym_COMMA] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(319), [anon_sym_GT] = ACTIONS(329), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(321), [anon_sym_DOT_DOT_DOT] = ACTIONS(327), - [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_DOT_DOT] = ACTIONS(323), [anon_sym_DOT_DOT_EQ] = ACTIONS(327), [anon_sym_DASH] = ACTIONS(303), [anon_sym_AMP_AMP] = ACTIONS(327), [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(321), + [anon_sym_PIPE] = ACTIONS(325), [anon_sym_CARET] = ACTIONS(329), [anon_sym_EQ_EQ] = ACTIONS(327), [anon_sym_BANG_EQ] = ACTIONS(327), @@ -17232,50 +16742,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1188), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(277), [anon_sym_LBRACE] = ACTIONS(277), @@ -17365,189 +16875,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1201), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(329), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(327), - [anon_sym_DOT_DOT] = ACTIONS(355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(327), - [anon_sym_BANG_EQ] = ACTIONS(327), - [anon_sym_LT_EQ] = ACTIONS(327), - [anon_sym_GT_EQ] = ACTIONS(327), - [anon_sym_LT_LT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(329), - [anon_sym_PERCENT] = ACTIONS(329), - [anon_sym_PLUS_EQ] = ACTIONS(327), - [anon_sym_DASH_EQ] = ACTIONS(327), - [anon_sym_STAR_EQ] = ACTIONS(327), - [anon_sym_SLASH_EQ] = ACTIONS(327), - [anon_sym_PERCENT_EQ] = ACTIONS(327), - [anon_sym_AMP_EQ] = ACTIONS(327), - [anon_sym_PIPE_EQ] = ACTIONS(327), - [anon_sym_CARET_EQ] = ACTIONS(327), - [anon_sym_LT_LT_EQ] = ACTIONS(327), - [anon_sym_GT_GT_EQ] = ACTIONS(327), - [anon_sym_move] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(329), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [24] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(761), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(767), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_PLUS] = ACTIONS(317), [anon_sym_STAR] = ACTIONS(341), - [anon_sym_QMARK] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(315), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -17566,7 +16944,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(333), [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(313), + [anon_sym_as] = ACTIONS(317), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), @@ -17581,171 +16959,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(313), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(319), + [anon_sym_GT] = ACTIONS(317), [anon_sym_COLON_COLON] = ACTIONS(343), [anon_sym_AMP] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(315), [anon_sym_DOT_DOT] = ACTIONS(355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(315), [anon_sym_DASH] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(313), - [anon_sym_EQ_EQ] = ACTIONS(311), - [anon_sym_BANG_EQ] = ACTIONS(311), - [anon_sym_LT_EQ] = ACTIONS(311), - [anon_sym_GT_EQ] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(313), - [anon_sym_GT_GT] = ACTIONS(313), - [anon_sym_SLASH] = ACTIONS(313), - [anon_sym_PERCENT] = ACTIONS(313), - [anon_sym_PLUS_EQ] = ACTIONS(311), - [anon_sym_DASH_EQ] = ACTIONS(311), - [anon_sym_STAR_EQ] = ACTIONS(311), - [anon_sym_SLASH_EQ] = ACTIONS(311), - [anon_sym_PERCENT_EQ] = ACTIONS(311), - [anon_sym_AMP_EQ] = ACTIONS(311), - [anon_sym_PIPE_EQ] = ACTIONS(311), - [anon_sym_CARET_EQ] = ACTIONS(311), - [anon_sym_LT_LT_EQ] = ACTIONS(311), - [anon_sym_GT_GT_EQ] = ACTIONS(311), - [anon_sym_move] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(313), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [25] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1203), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(323), - [anon_sym_PLUS] = ACTIONS(325), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_QMARK] = ACTIONS(323), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(325), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(325), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(323), - [anon_sym_DOT_DOT] = ACTIONS(325), - [anon_sym_DOT_DOT_EQ] = ACTIONS(323), - [anon_sym_DASH] = ACTIONS(325), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE_PIPE] = ACTIONS(323), + [anon_sym_AMP_AMP] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(315), [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(325), - [anon_sym_EQ_EQ] = ACTIONS(323), - [anon_sym_BANG_EQ] = ACTIONS(323), - [anon_sym_LT_EQ] = ACTIONS(323), - [anon_sym_GT_EQ] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_PERCENT] = ACTIONS(325), - [anon_sym_PLUS_EQ] = ACTIONS(323), - [anon_sym_DASH_EQ] = ACTIONS(323), - [anon_sym_STAR_EQ] = ACTIONS(323), - [anon_sym_SLASH_EQ] = ACTIONS(323), - [anon_sym_PERCENT_EQ] = ACTIONS(323), - [anon_sym_AMP_EQ] = ACTIONS(323), - [anon_sym_PIPE_EQ] = ACTIONS(323), - [anon_sym_CARET_EQ] = ACTIONS(323), - [anon_sym_LT_LT_EQ] = ACTIONS(323), - [anon_sym_GT_GT_EQ] = ACTIONS(323), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_GT_GT] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(317), + [anon_sym_PERCENT] = ACTIONS(317), + [anon_sym_PLUS_EQ] = ACTIONS(315), + [anon_sym_DASH_EQ] = ACTIONS(315), + [anon_sym_STAR_EQ] = ACTIONS(315), + [anon_sym_SLASH_EQ] = ACTIONS(315), + [anon_sym_PERCENT_EQ] = ACTIONS(315), + [anon_sym_AMP_EQ] = ACTIONS(315), + [anon_sym_PIPE_EQ] = ACTIONS(315), + [anon_sym_CARET_EQ] = ACTIONS(315), + [anon_sym_LT_LT_EQ] = ACTIONS(315), + [anon_sym_GT_GT_EQ] = ACTIONS(315), [anon_sym_move] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(325), + [anon_sym_DOT] = ACTIONS(317), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -17760,51 +17006,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [26] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(22), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [24] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(305), [anon_sym_LBRACE] = ACTIONS(305), @@ -17829,7 +17075,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(333), [anon_sym_str] = ACTIONS(333), [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(309), + [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_as] = ACTIONS(307), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(335), @@ -17892,53 +17138,317 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [25] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(22), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(309), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(313), + [anon_sym_as] = ACTIONS(311), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(311), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(309), + [anon_sym_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_AMP_AMP] = ACTIONS(309), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ] = ACTIONS(309), + [anon_sym_LT_EQ] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(311), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_PLUS_EQ] = ACTIONS(309), + [anon_sym_DASH_EQ] = ACTIONS(309), + [anon_sym_STAR_EQ] = ACTIONS(309), + [anon_sym_SLASH_EQ] = ACTIONS(309), + [anon_sym_PERCENT_EQ] = ACTIONS(309), + [anon_sym_AMP_EQ] = ACTIONS(309), + [anon_sym_PIPE_EQ] = ACTIONS(309), + [anon_sym_CARET_EQ] = ACTIONS(309), + [anon_sym_LT_LT_EQ] = ACTIONS(309), + [anon_sym_GT_GT_EQ] = ACTIONS(309), + [anon_sym_move] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(311), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [26] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(329), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(319), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(325), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(327), + [anon_sym_BANG_EQ] = ACTIONS(327), + [anon_sym_LT_EQ] = ACTIONS(327), + [anon_sym_GT_EQ] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_PLUS_EQ] = ACTIONS(327), + [anon_sym_DASH_EQ] = ACTIONS(327), + [anon_sym_STAR_EQ] = ACTIONS(327), + [anon_sym_SLASH_EQ] = ACTIONS(327), + [anon_sym_PERCENT_EQ] = ACTIONS(327), + [anon_sym_AMP_EQ] = ACTIONS(327), + [anon_sym_PIPE_EQ] = ACTIONS(327), + [anon_sym_CARET_EQ] = ACTIONS(327), + [anon_sym_LT_LT_EQ] = ACTIONS(327), + [anon_sym_GT_GT_EQ] = ACTIONS(327), + [anon_sym_move] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(329), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, [27] = { - [sym_attribute_item] = STATE(37), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1102), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(37), + [sym_attribute_item] = STATE(39), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(39), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(357), @@ -18001,52 +17511,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym_attribute_item] = STATE(592), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1096), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(592), + [sym_attribute_item] = STATE(609), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1145), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(609), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -18110,50 +17620,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [29] = { [sym_attribute_item] = STATE(28), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1090), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1146), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [aux_sym_enum_variant_list_repeat1] = STATE(28), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), @@ -18217,52 +17727,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1120), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(42), + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1196), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(371), @@ -18324,55 +17834,162 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1120), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(42), + [sym_else_clause] = STATE(71), + [ts_builtin_sym_end] = ACTIONS(373), + [sym_identifier] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(373), + [anon_sym_macro_rules_BANG] = ACTIONS(373), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_RBRACE] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(375), + [anon_sym_i8] = ACTIONS(375), + [anon_sym_u16] = ACTIONS(375), + [anon_sym_i16] = ACTIONS(375), + [anon_sym_u32] = ACTIONS(375), + [anon_sym_i32] = ACTIONS(375), + [anon_sym_u64] = ACTIONS(375), + [anon_sym_i64] = ACTIONS(375), + [anon_sym_u128] = ACTIONS(375), + [anon_sym_i128] = ACTIONS(375), + [anon_sym_isize] = ACTIONS(375), + [anon_sym_usize] = ACTIONS(375), + [anon_sym_f32] = ACTIONS(375), + [anon_sym_f64] = ACTIONS(375), + [anon_sym_bool] = ACTIONS(375), + [anon_sym_str] = ACTIONS(375), + [anon_sym_char] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_as] = ACTIONS(375), + [anon_sym_async] = ACTIONS(375), + [anon_sym_break] = ACTIONS(375), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_default] = ACTIONS(375), + [anon_sym_enum] = ACTIONS(375), + [anon_sym_fn] = ACTIONS(375), + [anon_sym_for] = ACTIONS(375), + [anon_sym_if] = ACTIONS(375), + [anon_sym_impl] = ACTIONS(375), + [anon_sym_let] = ACTIONS(375), + [anon_sym_loop] = ACTIONS(375), + [anon_sym_match] = ACTIONS(375), + [anon_sym_mod] = ACTIONS(375), + [anon_sym_pub] = ACTIONS(375), + [anon_sym_return] = ACTIONS(375), + [anon_sym_static] = ACTIONS(375), + [anon_sym_struct] = ACTIONS(375), + [anon_sym_trait] = ACTIONS(375), + [anon_sym_type] = ACTIONS(375), + [anon_sym_union] = ACTIONS(375), + [anon_sym_unsafe] = ACTIONS(375), + [anon_sym_use] = ACTIONS(375), + [anon_sym_while] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_extern] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_else] = ACTIONS(377), + [anon_sym_move] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(375), + [sym_integer_literal] = ACTIONS(373), + [aux_sym_string_literal_token1] = ACTIONS(373), + [sym_char_literal] = ACTIONS(373), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(375), + [sym_super] = ACTIONS(375), + [sym_crate] = ACTIONS(375), + [sym_metavariable] = ACTIONS(373), + [sym_raw_string_literal] = ACTIONS(373), + [sym_float_literal] = ACTIONS(373), + [sym_block_comment] = ACTIONS(3), + }, + [32] = { + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1196), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(379), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -18430,163 +18047,163 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [32] = { - [sym_else_clause] = STATE(56), - [ts_builtin_sym_end] = ACTIONS(375), - [sym_identifier] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(375), - [anon_sym_macro_rules_BANG] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_RBRACE] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(377), - [anon_sym_i8] = ACTIONS(377), - [anon_sym_u16] = ACTIONS(377), - [anon_sym_i16] = ACTIONS(377), - [anon_sym_u32] = ACTIONS(377), - [anon_sym_i32] = ACTIONS(377), - [anon_sym_u64] = ACTIONS(377), - [anon_sym_i64] = ACTIONS(377), - [anon_sym_u128] = ACTIONS(377), - [anon_sym_i128] = ACTIONS(377), - [anon_sym_isize] = ACTIONS(377), - [anon_sym_usize] = ACTIONS(377), - [anon_sym_f32] = ACTIONS(377), - [anon_sym_f64] = ACTIONS(377), - [anon_sym_bool] = ACTIONS(377), - [anon_sym_str] = ACTIONS(377), - [anon_sym_char] = ACTIONS(377), - [anon_sym_SQUOTE] = ACTIONS(377), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(377), - [anon_sym_break] = ACTIONS(377), - [anon_sym_const] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(377), - [anon_sym_default] = ACTIONS(377), - [anon_sym_enum] = ACTIONS(377), - [anon_sym_fn] = ACTIONS(377), - [anon_sym_for] = ACTIONS(377), - [anon_sym_if] = ACTIONS(377), - [anon_sym_impl] = ACTIONS(377), - [anon_sym_let] = ACTIONS(377), - [anon_sym_loop] = ACTIONS(377), - [anon_sym_match] = ACTIONS(377), - [anon_sym_mod] = ACTIONS(377), - [anon_sym_pub] = ACTIONS(377), - [anon_sym_return] = ACTIONS(377), - [anon_sym_static] = ACTIONS(377), - [anon_sym_struct] = ACTIONS(377), - [anon_sym_trait] = ACTIONS(377), - [anon_sym_type] = ACTIONS(377), - [anon_sym_union] = ACTIONS(377), - [anon_sym_unsafe] = ACTIONS(377), - [anon_sym_use] = ACTIONS(377), - [anon_sym_while] = ACTIONS(377), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_COLON_COLON] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_else] = ACTIONS(379), - [anon_sym_move] = ACTIONS(377), - [anon_sym_DOT] = ACTIONS(377), - [sym_integer_literal] = ACTIONS(375), - [aux_sym_string_literal_token1] = ACTIONS(375), - [sym_char_literal] = ACTIONS(375), - [anon_sym_true] = ACTIONS(377), - [anon_sym_false] = ACTIONS(377), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(377), - [sym_super] = ACTIONS(377), - [sym_crate] = ACTIONS(377), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(375), - [sym_float_literal] = ACTIONS(375), + [33] = { + [sym_else_clause] = STATE(44), + [ts_builtin_sym_end] = ACTIONS(381), + [sym_identifier] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_macro_rules_BANG] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u8] = ACTIONS(383), + [anon_sym_i8] = ACTIONS(383), + [anon_sym_u16] = ACTIONS(383), + [anon_sym_i16] = ACTIONS(383), + [anon_sym_u32] = ACTIONS(383), + [anon_sym_i32] = ACTIONS(383), + [anon_sym_u64] = ACTIONS(383), + [anon_sym_i64] = ACTIONS(383), + [anon_sym_u128] = ACTIONS(383), + [anon_sym_i128] = ACTIONS(383), + [anon_sym_isize] = ACTIONS(383), + [anon_sym_usize] = ACTIONS(383), + [anon_sym_f32] = ACTIONS(383), + [anon_sym_f64] = ACTIONS(383), + [anon_sym_bool] = ACTIONS(383), + [anon_sym_str] = ACTIONS(383), + [anon_sym_char] = ACTIONS(383), + [anon_sym_SQUOTE] = ACTIONS(383), + [anon_sym_as] = ACTIONS(383), + [anon_sym_async] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_const] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_default] = ACTIONS(383), + [anon_sym_enum] = ACTIONS(383), + [anon_sym_fn] = ACTIONS(383), + [anon_sym_for] = ACTIONS(383), + [anon_sym_if] = ACTIONS(383), + [anon_sym_impl] = ACTIONS(383), + [anon_sym_let] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(383), + [anon_sym_match] = ACTIONS(383), + [anon_sym_mod] = ACTIONS(383), + [anon_sym_pub] = ACTIONS(383), + [anon_sym_return] = ACTIONS(383), + [anon_sym_static] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(383), + [anon_sym_trait] = ACTIONS(383), + [anon_sym_type] = ACTIONS(383), + [anon_sym_union] = ACTIONS(383), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_use] = ACTIONS(383), + [anon_sym_while] = ACTIONS(383), + [anon_sym_POUND] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_else] = ACTIONS(377), + [anon_sym_move] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(381), + [aux_sym_string_literal_token1] = ACTIONS(381), + [sym_char_literal] = ACTIONS(381), + [anon_sym_true] = ACTIONS(383), + [anon_sym_false] = ACTIONS(383), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(383), + [sym_super] = ACTIONS(383), + [sym_crate] = ACTIONS(383), + [sym_metavariable] = ACTIONS(381), + [sym_raw_string_literal] = ACTIONS(381), + [sym_float_literal] = ACTIONS(381), [sym_block_comment] = ACTIONS(3), }, - [33] = { - [sym_attribute_item] = STATE(39), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1114), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(39), + [34] = { + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1196), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(385), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -18644,160 +18261,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [34] = { - [sym_else_clause] = STATE(62), - [ts_builtin_sym_end] = ACTIONS(383), - [sym_identifier] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_macro_rules_BANG] = ACTIONS(383), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(383), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(383), - [anon_sym_u8] = ACTIONS(385), - [anon_sym_i8] = ACTIONS(385), - [anon_sym_u16] = ACTIONS(385), - [anon_sym_i16] = ACTIONS(385), - [anon_sym_u32] = ACTIONS(385), - [anon_sym_i32] = ACTIONS(385), - [anon_sym_u64] = ACTIONS(385), - [anon_sym_i64] = ACTIONS(385), - [anon_sym_u128] = ACTIONS(385), - [anon_sym_i128] = ACTIONS(385), - [anon_sym_isize] = ACTIONS(385), - [anon_sym_usize] = ACTIONS(385), - [anon_sym_f32] = ACTIONS(385), - [anon_sym_f64] = ACTIONS(385), - [anon_sym_bool] = ACTIONS(385), - [anon_sym_str] = ACTIONS(385), - [anon_sym_char] = ACTIONS(385), - [anon_sym_SQUOTE] = ACTIONS(385), - [anon_sym_as] = ACTIONS(385), - [anon_sym_async] = ACTIONS(385), - [anon_sym_break] = ACTIONS(385), - [anon_sym_const] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_default] = ACTIONS(385), - [anon_sym_enum] = ACTIONS(385), - [anon_sym_fn] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_impl] = ACTIONS(385), - [anon_sym_let] = ACTIONS(385), - [anon_sym_loop] = ACTIONS(385), - [anon_sym_match] = ACTIONS(385), - [anon_sym_mod] = ACTIONS(385), - [anon_sym_pub] = ACTIONS(385), - [anon_sym_return] = ACTIONS(385), - [anon_sym_static] = ACTIONS(385), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_trait] = ACTIONS(385), - [anon_sym_type] = ACTIONS(385), - [anon_sym_union] = ACTIONS(385), - [anon_sym_unsafe] = ACTIONS(385), - [anon_sym_use] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_POUND] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_COLON_COLON] = ACTIONS(383), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_AMP_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(383), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(383), - [anon_sym_BANG_EQ] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_else] = ACTIONS(379), - [anon_sym_move] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [sym_integer_literal] = ACTIONS(383), - [aux_sym_string_literal_token1] = ACTIONS(383), - [sym_char_literal] = ACTIONS(383), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(385), - [sym_super] = ACTIONS(385), - [sym_crate] = ACTIONS(385), - [sym_metavariable] = ACTIONS(383), - [sym_raw_string_literal] = ACTIONS(383), - [sym_float_literal] = ACTIONS(383), - [sym_block_comment] = ACTIONS(3), - }, [35] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1120), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(42), + [sym_attribute_item] = STATE(41), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1168), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(41), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(387), @@ -18859,6 +18369,112 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1196), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(40), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [37] = { [ts_builtin_sym_end] = ACTIONS(389), [sym_identifier] = ACTIONS(391), [anon_sym_SEMI] = ACTIONS(389), @@ -18964,112 +18580,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(389), [sym_block_comment] = ACTIONS(3), }, - [37] = { - [sym_attribute_item] = STATE(592), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1103), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(592), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, [38] = { [ts_builtin_sym_end] = ACTIONS(393), [sym_identifier] = ACTIONS(395), @@ -19177,52 +18687,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym_attribute_item] = STATE(592), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1224), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(592), + [sym_attribute_item] = STATE(609), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1152), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(609), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -19283,158 +18793,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [ts_builtin_sym_end] = ACTIONS(397), - [sym_identifier] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_macro_rules_BANG] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(399), - [anon_sym_const] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_default] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(399), - [anon_sym_fn] = ACTIONS(399), - [anon_sym_for] = ACTIONS(399), - [anon_sym_if] = ACTIONS(399), - [anon_sym_impl] = ACTIONS(399), - [anon_sym_let] = ACTIONS(399), - [anon_sym_loop] = ACTIONS(399), - [anon_sym_match] = ACTIONS(399), - [anon_sym_mod] = ACTIONS(399), - [anon_sym_pub] = ACTIONS(399), - [anon_sym_return] = ACTIONS(399), - [anon_sym_static] = ACTIONS(399), - [anon_sym_struct] = ACTIONS(399), - [anon_sym_trait] = ACTIONS(399), - [anon_sym_type] = ACTIONS(399), - [anon_sym_union] = ACTIONS(399), - [anon_sym_unsafe] = ACTIONS(399), - [anon_sym_use] = ACTIONS(399), - [anon_sym_while] = ACTIONS(399), - [anon_sym_POUND] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_extern] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_else] = ACTIONS(399), - [anon_sym_move] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(397), - [aux_sym_string_literal_token1] = ACTIONS(397), - [sym_char_literal] = ACTIONS(397), - [anon_sym_true] = ACTIONS(399), - [anon_sym_false] = ACTIONS(399), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(399), - [sym_super] = ACTIONS(399), - [sym_crate] = ACTIONS(399), - [sym_metavariable] = ACTIONS(397), - [sym_raw_string_literal] = ACTIONS(397), - [sym_float_literal] = ACTIONS(397), - [sym_block_comment] = ACTIONS(3), - }, - [41] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1120), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(42), + [sym_attribute_item] = STATE(609), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1159), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(609), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -19494,53 +18898,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [42] = { - [sym_attribute_item] = STATE(592), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1148), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(592), + [41] = { + [sym_attribute_item] = STATE(609), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(609), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -19600,6 +19004,112 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [42] = { + [ts_builtin_sym_end] = ACTIONS(397), + [sym_identifier] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_macro_rules_BANG] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(399), + [anon_sym_break] = ACTIONS(399), + [anon_sym_const] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_default] = ACTIONS(399), + [anon_sym_enum] = ACTIONS(399), + [anon_sym_fn] = ACTIONS(399), + [anon_sym_for] = ACTIONS(399), + [anon_sym_if] = ACTIONS(399), + [anon_sym_impl] = ACTIONS(399), + [anon_sym_let] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_match] = ACTIONS(399), + [anon_sym_mod] = ACTIONS(399), + [anon_sym_pub] = ACTIONS(399), + [anon_sym_return] = ACTIONS(399), + [anon_sym_static] = ACTIONS(399), + [anon_sym_struct] = ACTIONS(399), + [anon_sym_trait] = ACTIONS(399), + [anon_sym_type] = ACTIONS(399), + [anon_sym_union] = ACTIONS(399), + [anon_sym_unsafe] = ACTIONS(399), + [anon_sym_use] = ACTIONS(399), + [anon_sym_while] = ACTIONS(399), + [anon_sym_POUND] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_extern] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_else] = ACTIONS(399), + [anon_sym_move] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(399), + [sym_integer_literal] = ACTIONS(397), + [aux_sym_string_literal_token1] = ACTIONS(397), + [sym_char_literal] = ACTIONS(397), + [anon_sym_true] = ACTIONS(399), + [anon_sym_false] = ACTIONS(399), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(399), + [sym_super] = ACTIONS(399), + [sym_crate] = ACTIONS(399), + [sym_metavariable] = ACTIONS(397), + [sym_raw_string_literal] = ACTIONS(397), + [sym_float_literal] = ACTIONS(397), + [sym_block_comment] = ACTIONS(3), + }, [43] = { [ts_builtin_sym_end] = ACTIONS(401), [sym_identifier] = ACTIONS(403), @@ -20021,159 +19531,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [47] = { - [ts_builtin_sym_end] = ACTIONS(417), - [sym_identifier] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_macro_rules_BANG] = ACTIONS(417), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_u8] = ACTIONS(419), - [anon_sym_i8] = ACTIONS(419), - [anon_sym_u16] = ACTIONS(419), - [anon_sym_i16] = ACTIONS(419), - [anon_sym_u32] = ACTIONS(419), - [anon_sym_i32] = ACTIONS(419), - [anon_sym_u64] = ACTIONS(419), - [anon_sym_i64] = ACTIONS(419), - [anon_sym_u128] = ACTIONS(419), - [anon_sym_i128] = ACTIONS(419), - [anon_sym_isize] = ACTIONS(419), - [anon_sym_usize] = ACTIONS(419), - [anon_sym_f32] = ACTIONS(419), - [anon_sym_f64] = ACTIONS(419), - [anon_sym_bool] = ACTIONS(419), - [anon_sym_str] = ACTIONS(419), - [anon_sym_char] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(419), - [anon_sym_as] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(419), - [anon_sym_default] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(419), - [anon_sym_fn] = ACTIONS(419), - [anon_sym_for] = ACTIONS(419), - [anon_sym_if] = ACTIONS(419), - [anon_sym_impl] = ACTIONS(419), - [anon_sym_let] = ACTIONS(419), - [anon_sym_loop] = ACTIONS(419), - [anon_sym_match] = ACTIONS(419), - [anon_sym_mod] = ACTIONS(419), - [anon_sym_pub] = ACTIONS(419), - [anon_sym_return] = ACTIONS(419), - [anon_sym_static] = ACTIONS(419), - [anon_sym_struct] = ACTIONS(419), - [anon_sym_trait] = ACTIONS(419), - [anon_sym_type] = ACTIONS(419), - [anon_sym_union] = ACTIONS(419), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_use] = ACTIONS(419), - [anon_sym_while] = ACTIONS(419), - [anon_sym_POUND] = ACTIONS(417), - [anon_sym_BANG] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(419), - [anon_sym_extern] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_COLON_COLON] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_CARET] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_LT_EQ] = ACTIONS(417), - [anon_sym_GT_EQ] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(417), - [anon_sym_DASH_EQ] = ACTIONS(417), - [anon_sym_STAR_EQ] = ACTIONS(417), - [anon_sym_SLASH_EQ] = ACTIONS(417), - [anon_sym_PERCENT_EQ] = ACTIONS(417), - [anon_sym_AMP_EQ] = ACTIONS(417), - [anon_sym_PIPE_EQ] = ACTIONS(417), - [anon_sym_CARET_EQ] = ACTIONS(417), - [anon_sym_LT_LT_EQ] = ACTIONS(417), - [anon_sym_GT_GT_EQ] = ACTIONS(417), - [anon_sym_move] = ACTIONS(419), - [anon_sym_DOT] = ACTIONS(419), - [sym_integer_literal] = ACTIONS(417), - [aux_sym_string_literal_token1] = ACTIONS(417), - [sym_char_literal] = ACTIONS(417), - [anon_sym_true] = ACTIONS(419), - [anon_sym_false] = ACTIONS(419), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(419), - [sym_super] = ACTIONS(419), - [sym_crate] = ACTIONS(419), - [sym_metavariable] = ACTIONS(417), - [sym_raw_string_literal] = ACTIONS(417), - [sym_float_literal] = ACTIONS(417), - [sym_block_comment] = ACTIONS(3), - }, - [48] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1171), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_tuple_expression_repeat1] = STATE(72), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1183), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_tuple_expression_repeat1] = STATE(59), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -20230,6 +19635,111 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [48] = { + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_macro_rules_BANG] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(421), + [anon_sym_as] = ACTIONS(421), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(421), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(421), + [anon_sym_fn] = ACTIONS(421), + [anon_sym_for] = ACTIONS(421), + [anon_sym_if] = ACTIONS(421), + [anon_sym_impl] = ACTIONS(421), + [anon_sym_let] = ACTIONS(421), + [anon_sym_loop] = ACTIONS(421), + [anon_sym_match] = ACTIONS(421), + [anon_sym_mod] = ACTIONS(421), + [anon_sym_pub] = ACTIONS(421), + [anon_sym_return] = ACTIONS(421), + [anon_sym_static] = ACTIONS(421), + [anon_sym_struct] = ACTIONS(421), + [anon_sym_trait] = ACTIONS(421), + [anon_sym_type] = ACTIONS(421), + [anon_sym_union] = ACTIONS(421), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_use] = ACTIONS(421), + [anon_sym_while] = ACTIONS(421), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_BANG] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_extern] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(421), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_PERCENT] = ACTIONS(421), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_STAR_EQ] = ACTIONS(419), + [anon_sym_SLASH_EQ] = ACTIONS(419), + [anon_sym_PERCENT_EQ] = ACTIONS(419), + [anon_sym_AMP_EQ] = ACTIONS(419), + [anon_sym_PIPE_EQ] = ACTIONS(419), + [anon_sym_CARET_EQ] = ACTIONS(419), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_GT_GT_EQ] = ACTIONS(419), + [anon_sym_move] = ACTIONS(421), + [anon_sym_DOT] = ACTIONS(421), + [sym_integer_literal] = ACTIONS(419), + [aux_sym_string_literal_token1] = ACTIONS(419), + [sym_char_literal] = ACTIONS(419), + [anon_sym_true] = ACTIONS(421), + [anon_sym_false] = ACTIONS(421), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(421), + [sym_super] = ACTIONS(421), + [sym_crate] = ACTIONS(421), + [sym_metavariable] = ACTIONS(419), + [sym_raw_string_literal] = ACTIONS(419), + [sym_float_literal] = ACTIONS(419), + [sym_block_comment] = ACTIONS(3), + }, [49] = { [ts_builtin_sym_end] = ACTIONS(423), [sym_identifier] = ACTIONS(425), @@ -20546,1209 +20056,789 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [52] = { - [ts_builtin_sym_end] = ACTIONS(435), - [sym_identifier] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(435), - [anon_sym_macro_rules_BANG] = ACTIONS(435), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(435), - [anon_sym_u8] = ACTIONS(437), - [anon_sym_i8] = ACTIONS(437), - [anon_sym_u16] = ACTIONS(437), - [anon_sym_i16] = ACTIONS(437), - [anon_sym_u32] = ACTIONS(437), - [anon_sym_i32] = ACTIONS(437), - [anon_sym_u64] = ACTIONS(437), - [anon_sym_i64] = ACTIONS(437), - [anon_sym_u128] = ACTIONS(437), - [anon_sym_i128] = ACTIONS(437), - [anon_sym_isize] = ACTIONS(437), - [anon_sym_usize] = ACTIONS(437), - [anon_sym_f32] = ACTIONS(437), - [anon_sym_f64] = ACTIONS(437), - [anon_sym_bool] = ACTIONS(437), - [anon_sym_str] = ACTIONS(437), - [anon_sym_char] = ACTIONS(437), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_as] = ACTIONS(437), - [anon_sym_async] = ACTIONS(437), - [anon_sym_break] = ACTIONS(437), - [anon_sym_const] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(437), - [anon_sym_default] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(437), - [anon_sym_fn] = ACTIONS(437), - [anon_sym_for] = ACTIONS(437), - [anon_sym_if] = ACTIONS(437), - [anon_sym_impl] = ACTIONS(437), - [anon_sym_let] = ACTIONS(437), - [anon_sym_loop] = ACTIONS(437), - [anon_sym_match] = ACTIONS(437), - [anon_sym_mod] = ACTIONS(437), - [anon_sym_pub] = ACTIONS(437), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(437), - [anon_sym_struct] = ACTIONS(437), - [anon_sym_trait] = ACTIONS(437), - [anon_sym_type] = ACTIONS(437), - [anon_sym_union] = ACTIONS(437), - [anon_sym_unsafe] = ACTIONS(437), - [anon_sym_use] = ACTIONS(437), - [anon_sym_while] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_extern] = ACTIONS(437), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_COLON_COLON] = ACTIONS(435), - [anon_sym_AMP] = ACTIONS(437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(435), - [anon_sym_DOT_DOT] = ACTIONS(437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(437), - [anon_sym_AMP_AMP] = ACTIONS(435), - [anon_sym_PIPE_PIPE] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_CARET] = ACTIONS(437), - [anon_sym_EQ_EQ] = ACTIONS(435), - [anon_sym_BANG_EQ] = ACTIONS(435), - [anon_sym_LT_EQ] = ACTIONS(435), - [anon_sym_GT_EQ] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(437), - [anon_sym_GT_GT] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_PLUS_EQ] = ACTIONS(435), - [anon_sym_DASH_EQ] = ACTIONS(435), - [anon_sym_STAR_EQ] = ACTIONS(435), - [anon_sym_SLASH_EQ] = ACTIONS(435), - [anon_sym_PERCENT_EQ] = ACTIONS(435), - [anon_sym_AMP_EQ] = ACTIONS(435), - [anon_sym_PIPE_EQ] = ACTIONS(435), - [anon_sym_CARET_EQ] = ACTIONS(435), - [anon_sym_LT_LT_EQ] = ACTIONS(435), - [anon_sym_GT_GT_EQ] = ACTIONS(435), - [anon_sym_move] = ACTIONS(437), - [anon_sym_DOT] = ACTIONS(437), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(435), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(437), - [anon_sym_false] = ACTIONS(437), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(437), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(435), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1174), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_tuple_expression_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [53] = { - [ts_builtin_sym_end] = ACTIONS(439), - [sym_identifier] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_macro_rules_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_u8] = ACTIONS(441), - [anon_sym_i8] = ACTIONS(441), - [anon_sym_u16] = ACTIONS(441), - [anon_sym_i16] = ACTIONS(441), - [anon_sym_u32] = ACTIONS(441), - [anon_sym_i32] = ACTIONS(441), - [anon_sym_u64] = ACTIONS(441), - [anon_sym_i64] = ACTIONS(441), - [anon_sym_u128] = ACTIONS(441), - [anon_sym_i128] = ACTIONS(441), - [anon_sym_isize] = ACTIONS(441), - [anon_sym_usize] = ACTIONS(441), - [anon_sym_f32] = ACTIONS(441), - [anon_sym_f64] = ACTIONS(441), - [anon_sym_bool] = ACTIONS(441), - [anon_sym_str] = ACTIONS(441), - [anon_sym_char] = ACTIONS(441), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_as] = ACTIONS(441), - [anon_sym_async] = ACTIONS(441), - [anon_sym_break] = ACTIONS(441), - [anon_sym_const] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(441), - [anon_sym_default] = ACTIONS(441), - [anon_sym_enum] = ACTIONS(441), - [anon_sym_fn] = ACTIONS(441), - [anon_sym_for] = ACTIONS(441), - [anon_sym_if] = ACTIONS(441), - [anon_sym_impl] = ACTIONS(441), - [anon_sym_let] = ACTIONS(441), - [anon_sym_loop] = ACTIONS(441), - [anon_sym_match] = ACTIONS(441), - [anon_sym_mod] = ACTIONS(441), - [anon_sym_pub] = ACTIONS(441), - [anon_sym_return] = ACTIONS(441), - [anon_sym_static] = ACTIONS(441), - [anon_sym_struct] = ACTIONS(441), - [anon_sym_trait] = ACTIONS(441), - [anon_sym_type] = ACTIONS(441), - [anon_sym_union] = ACTIONS(441), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_use] = ACTIONS(441), - [anon_sym_while] = ACTIONS(441), - [anon_sym_POUND] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_extern] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(441), - [anon_sym_COLON_COLON] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_EQ_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT_GT] = ACTIONS(441), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_AMP_EQ] = ACTIONS(439), - [anon_sym_PIPE_EQ] = ACTIONS(439), - [anon_sym_CARET_EQ] = ACTIONS(439), - [anon_sym_LT_LT_EQ] = ACTIONS(439), - [anon_sym_GT_GT_EQ] = ACTIONS(439), - [anon_sym_move] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(441), - [sym_integer_literal] = ACTIONS(439), - [aux_sym_string_literal_token1] = ACTIONS(439), - [sym_char_literal] = ACTIONS(439), - [anon_sym_true] = ACTIONS(441), - [anon_sym_false] = ACTIONS(441), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(441), - [sym_crate] = ACTIONS(441), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(439), - [sym_float_literal] = ACTIONS(439), + [ts_builtin_sym_end] = ACTIONS(437), + [sym_identifier] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(437), + [anon_sym_macro_rules_BANG] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(437), + [anon_sym_LBRACE] = ACTIONS(437), + [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_QMARK] = ACTIONS(437), + [anon_sym_u8] = ACTIONS(439), + [anon_sym_i8] = ACTIONS(439), + [anon_sym_u16] = ACTIONS(439), + [anon_sym_i16] = ACTIONS(439), + [anon_sym_u32] = ACTIONS(439), + [anon_sym_i32] = ACTIONS(439), + [anon_sym_u64] = ACTIONS(439), + [anon_sym_i64] = ACTIONS(439), + [anon_sym_u128] = ACTIONS(439), + [anon_sym_i128] = ACTIONS(439), + [anon_sym_isize] = ACTIONS(439), + [anon_sym_usize] = ACTIONS(439), + [anon_sym_f32] = ACTIONS(439), + [anon_sym_f64] = ACTIONS(439), + [anon_sym_bool] = ACTIONS(439), + [anon_sym_str] = ACTIONS(439), + [anon_sym_char] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(439), + [anon_sym_as] = ACTIONS(439), + [anon_sym_async] = ACTIONS(439), + [anon_sym_break] = ACTIONS(439), + [anon_sym_const] = ACTIONS(439), + [anon_sym_continue] = ACTIONS(439), + [anon_sym_default] = ACTIONS(439), + [anon_sym_enum] = ACTIONS(439), + [anon_sym_fn] = ACTIONS(439), + [anon_sym_for] = ACTIONS(439), + [anon_sym_if] = ACTIONS(439), + [anon_sym_impl] = ACTIONS(439), + [anon_sym_let] = ACTIONS(439), + [anon_sym_loop] = ACTIONS(439), + [anon_sym_match] = ACTIONS(439), + [anon_sym_mod] = ACTIONS(439), + [anon_sym_pub] = ACTIONS(439), + [anon_sym_return] = ACTIONS(439), + [anon_sym_static] = ACTIONS(439), + [anon_sym_struct] = ACTIONS(439), + [anon_sym_trait] = ACTIONS(439), + [anon_sym_type] = ACTIONS(439), + [anon_sym_union] = ACTIONS(439), + [anon_sym_unsafe] = ACTIONS(439), + [anon_sym_use] = ACTIONS(439), + [anon_sym_while] = ACTIONS(439), + [anon_sym_POUND] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_EQ] = ACTIONS(439), + [anon_sym_extern] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_COLON_COLON] = ACTIONS(437), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [anon_sym_DOT_DOT] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(437), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(437), + [anon_sym_PIPE_PIPE] = ACTIONS(437), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(439), + [anon_sym_EQ_EQ] = ACTIONS(437), + [anon_sym_BANG_EQ] = ACTIONS(437), + [anon_sym_LT_EQ] = ACTIONS(437), + [anon_sym_GT_EQ] = ACTIONS(437), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PERCENT] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(437), + [anon_sym_DASH_EQ] = ACTIONS(437), + [anon_sym_STAR_EQ] = ACTIONS(437), + [anon_sym_SLASH_EQ] = ACTIONS(437), + [anon_sym_PERCENT_EQ] = ACTIONS(437), + [anon_sym_AMP_EQ] = ACTIONS(437), + [anon_sym_PIPE_EQ] = ACTIONS(437), + [anon_sym_CARET_EQ] = ACTIONS(437), + [anon_sym_LT_LT_EQ] = ACTIONS(437), + [anon_sym_GT_GT_EQ] = ACTIONS(437), + [anon_sym_move] = ACTIONS(439), + [anon_sym_DOT] = ACTIONS(439), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(437), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(439), + [anon_sym_false] = ACTIONS(439), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(437), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), [sym_block_comment] = ACTIONS(3), }, [54] = { - [ts_builtin_sym_end] = ACTIONS(443), - [sym_identifier] = ACTIONS(445), - [anon_sym_SEMI] = ACTIONS(443), - [anon_sym_macro_rules_BANG] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(443), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(445), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_u8] = ACTIONS(445), - [anon_sym_i8] = ACTIONS(445), - [anon_sym_u16] = ACTIONS(445), - [anon_sym_i16] = ACTIONS(445), - [anon_sym_u32] = ACTIONS(445), - [anon_sym_i32] = ACTIONS(445), - [anon_sym_u64] = ACTIONS(445), - [anon_sym_i64] = ACTIONS(445), - [anon_sym_u128] = ACTIONS(445), - [anon_sym_i128] = ACTIONS(445), - [anon_sym_isize] = ACTIONS(445), - [anon_sym_usize] = ACTIONS(445), - [anon_sym_f32] = ACTIONS(445), - [anon_sym_f64] = ACTIONS(445), - [anon_sym_bool] = ACTIONS(445), - [anon_sym_str] = ACTIONS(445), - [anon_sym_char] = ACTIONS(445), - [anon_sym_SQUOTE] = ACTIONS(445), - [anon_sym_as] = ACTIONS(445), - [anon_sym_async] = ACTIONS(445), - [anon_sym_break] = ACTIONS(445), - [anon_sym_const] = ACTIONS(445), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_default] = ACTIONS(445), - [anon_sym_enum] = ACTIONS(445), - [anon_sym_fn] = ACTIONS(445), - [anon_sym_for] = ACTIONS(445), - [anon_sym_if] = ACTIONS(445), - [anon_sym_impl] = ACTIONS(445), - [anon_sym_let] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(445), - [anon_sym_match] = ACTIONS(445), - [anon_sym_mod] = ACTIONS(445), - [anon_sym_pub] = ACTIONS(445), - [anon_sym_return] = ACTIONS(445), - [anon_sym_static] = ACTIONS(445), - [anon_sym_struct] = ACTIONS(445), - [anon_sym_trait] = ACTIONS(445), - [anon_sym_type] = ACTIONS(445), - [anon_sym_union] = ACTIONS(445), - [anon_sym_unsafe] = ACTIONS(445), - [anon_sym_use] = ACTIONS(445), - [anon_sym_while] = ACTIONS(445), - [anon_sym_POUND] = ACTIONS(443), - [anon_sym_BANG] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(445), - [anon_sym_extern] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(445), - [anon_sym_GT] = ACTIONS(445), - [anon_sym_COLON_COLON] = ACTIONS(443), - [anon_sym_AMP] = ACTIONS(445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(443), - [anon_sym_DOT_DOT] = ACTIONS(445), - [anon_sym_DOT_DOT_EQ] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_CARET] = ACTIONS(445), - [anon_sym_EQ_EQ] = ACTIONS(443), - [anon_sym_BANG_EQ] = ACTIONS(443), - [anon_sym_LT_EQ] = ACTIONS(443), - [anon_sym_GT_EQ] = ACTIONS(443), - [anon_sym_LT_LT] = ACTIONS(445), - [anon_sym_GT_GT] = ACTIONS(445), - [anon_sym_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(443), - [anon_sym_DASH_EQ] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(443), - [anon_sym_SLASH_EQ] = ACTIONS(443), - [anon_sym_PERCENT_EQ] = ACTIONS(443), - [anon_sym_AMP_EQ] = ACTIONS(443), - [anon_sym_PIPE_EQ] = ACTIONS(443), - [anon_sym_CARET_EQ] = ACTIONS(443), - [anon_sym_LT_LT_EQ] = ACTIONS(443), - [anon_sym_GT_GT_EQ] = ACTIONS(443), - [anon_sym_move] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(445), - [sym_integer_literal] = ACTIONS(443), - [aux_sym_string_literal_token1] = ACTIONS(443), - [sym_char_literal] = ACTIONS(443), - [anon_sym_true] = ACTIONS(445), - [anon_sym_false] = ACTIONS(445), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(445), - [sym_super] = ACTIONS(445), - [sym_crate] = ACTIONS(445), - [sym_metavariable] = ACTIONS(443), - [sym_raw_string_literal] = ACTIONS(443), - [sym_float_literal] = ACTIONS(443), + [ts_builtin_sym_end] = ACTIONS(441), + [sym_identifier] = ACTIONS(443), + [anon_sym_SEMI] = ACTIONS(441), + [anon_sym_macro_rules_BANG] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(441), + [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_QMARK] = ACTIONS(441), + [anon_sym_u8] = ACTIONS(443), + [anon_sym_i8] = ACTIONS(443), + [anon_sym_u16] = ACTIONS(443), + [anon_sym_i16] = ACTIONS(443), + [anon_sym_u32] = ACTIONS(443), + [anon_sym_i32] = ACTIONS(443), + [anon_sym_u64] = ACTIONS(443), + [anon_sym_i64] = ACTIONS(443), + [anon_sym_u128] = ACTIONS(443), + [anon_sym_i128] = ACTIONS(443), + [anon_sym_isize] = ACTIONS(443), + [anon_sym_usize] = ACTIONS(443), + [anon_sym_f32] = ACTIONS(443), + [anon_sym_f64] = ACTIONS(443), + [anon_sym_bool] = ACTIONS(443), + [anon_sym_str] = ACTIONS(443), + [anon_sym_char] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(443), + [anon_sym_as] = ACTIONS(443), + [anon_sym_async] = ACTIONS(443), + [anon_sym_break] = ACTIONS(443), + [anon_sym_const] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_default] = ACTIONS(443), + [anon_sym_enum] = ACTIONS(443), + [anon_sym_fn] = ACTIONS(443), + [anon_sym_for] = ACTIONS(443), + [anon_sym_if] = ACTIONS(443), + [anon_sym_impl] = ACTIONS(443), + [anon_sym_let] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(443), + [anon_sym_mod] = ACTIONS(443), + [anon_sym_pub] = ACTIONS(443), + [anon_sym_return] = ACTIONS(443), + [anon_sym_static] = ACTIONS(443), + [anon_sym_struct] = ACTIONS(443), + [anon_sym_trait] = ACTIONS(443), + [anon_sym_type] = ACTIONS(443), + [anon_sym_union] = ACTIONS(443), + [anon_sym_unsafe] = ACTIONS(443), + [anon_sym_use] = ACTIONS(443), + [anon_sym_while] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(443), + [anon_sym_extern] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(443), + [anon_sym_GT] = ACTIONS(443), + [anon_sym_COLON_COLON] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(441), + [anon_sym_DOT_DOT] = ACTIONS(443), + [anon_sym_DOT_DOT_EQ] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_AMP_AMP] = ACTIONS(441), + [anon_sym_PIPE_PIPE] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_CARET] = ACTIONS(443), + [anon_sym_EQ_EQ] = ACTIONS(441), + [anon_sym_BANG_EQ] = ACTIONS(441), + [anon_sym_LT_EQ] = ACTIONS(441), + [anon_sym_GT_EQ] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(443), + [anon_sym_GT_GT] = ACTIONS(443), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [anon_sym_PLUS_EQ] = ACTIONS(441), + [anon_sym_DASH_EQ] = ACTIONS(441), + [anon_sym_STAR_EQ] = ACTIONS(441), + [anon_sym_SLASH_EQ] = ACTIONS(441), + [anon_sym_PERCENT_EQ] = ACTIONS(441), + [anon_sym_AMP_EQ] = ACTIONS(441), + [anon_sym_PIPE_EQ] = ACTIONS(441), + [anon_sym_CARET_EQ] = ACTIONS(441), + [anon_sym_LT_LT_EQ] = ACTIONS(441), + [anon_sym_GT_GT_EQ] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(443), + [sym_integer_literal] = ACTIONS(441), + [aux_sym_string_literal_token1] = ACTIONS(441), + [sym_char_literal] = ACTIONS(441), + [anon_sym_true] = ACTIONS(443), + [anon_sym_false] = ACTIONS(443), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(443), + [sym_crate] = ACTIONS(443), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(441), + [sym_float_literal] = ACTIONS(441), [sym_block_comment] = ACTIONS(3), }, [55] = { - [ts_builtin_sym_end] = ACTIONS(447), - [sym_identifier] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym_macro_rules_BANG] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym_QMARK] = ACTIONS(447), - [anon_sym_u8] = ACTIONS(449), - [anon_sym_i8] = ACTIONS(449), - [anon_sym_u16] = ACTIONS(449), - [anon_sym_i16] = ACTIONS(449), - [anon_sym_u32] = ACTIONS(449), - [anon_sym_i32] = ACTIONS(449), - [anon_sym_u64] = ACTIONS(449), - [anon_sym_i64] = ACTIONS(449), - [anon_sym_u128] = ACTIONS(449), - [anon_sym_i128] = ACTIONS(449), - [anon_sym_isize] = ACTIONS(449), - [anon_sym_usize] = ACTIONS(449), - [anon_sym_f32] = ACTIONS(449), - [anon_sym_f64] = ACTIONS(449), - [anon_sym_bool] = ACTIONS(449), - [anon_sym_str] = ACTIONS(449), - [anon_sym_char] = ACTIONS(449), - [anon_sym_SQUOTE] = ACTIONS(449), - [anon_sym_as] = ACTIONS(449), - [anon_sym_async] = ACTIONS(449), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(449), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_default] = ACTIONS(449), - [anon_sym_enum] = ACTIONS(449), - [anon_sym_fn] = ACTIONS(449), - [anon_sym_for] = ACTIONS(449), - [anon_sym_if] = ACTIONS(449), - [anon_sym_impl] = ACTIONS(449), - [anon_sym_let] = ACTIONS(449), - [anon_sym_loop] = ACTIONS(449), - [anon_sym_match] = ACTIONS(449), - [anon_sym_mod] = ACTIONS(449), - [anon_sym_pub] = ACTIONS(449), - [anon_sym_return] = ACTIONS(449), - [anon_sym_static] = ACTIONS(449), - [anon_sym_struct] = ACTIONS(449), - [anon_sym_trait] = ACTIONS(449), - [anon_sym_type] = ACTIONS(449), - [anon_sym_union] = ACTIONS(449), - [anon_sym_unsafe] = ACTIONS(449), - [anon_sym_use] = ACTIONS(449), - [anon_sym_while] = ACTIONS(449), - [anon_sym_POUND] = ACTIONS(447), - [anon_sym_BANG] = ACTIONS(449), - [anon_sym_EQ] = ACTIONS(449), - [anon_sym_extern] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(449), - [anon_sym_COLON_COLON] = ACTIONS(447), - [anon_sym_AMP] = ACTIONS(449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(447), - [anon_sym_DOT_DOT] = ACTIONS(449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(447), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(447), - [anon_sym_PIPE] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(447), - [anon_sym_BANG_EQ] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(447), - [anon_sym_GT_EQ] = ACTIONS(447), - [anon_sym_LT_LT] = ACTIONS(449), - [anon_sym_GT_GT] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_PERCENT] = ACTIONS(449), - [anon_sym_PLUS_EQ] = ACTIONS(447), - [anon_sym_DASH_EQ] = ACTIONS(447), - [anon_sym_STAR_EQ] = ACTIONS(447), - [anon_sym_SLASH_EQ] = ACTIONS(447), - [anon_sym_PERCENT_EQ] = ACTIONS(447), - [anon_sym_AMP_EQ] = ACTIONS(447), - [anon_sym_PIPE_EQ] = ACTIONS(447), - [anon_sym_CARET_EQ] = ACTIONS(447), - [anon_sym_LT_LT_EQ] = ACTIONS(447), - [anon_sym_GT_GT_EQ] = ACTIONS(447), - [anon_sym_move] = ACTIONS(449), - [anon_sym_DOT] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(447), - [aux_sym_string_literal_token1] = ACTIONS(447), - [sym_char_literal] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(449), - [sym_super] = ACTIONS(449), - [sym_crate] = ACTIONS(449), - [sym_metavariable] = ACTIONS(447), - [sym_raw_string_literal] = ACTIONS(447), - [sym_float_literal] = ACTIONS(447), + [ts_builtin_sym_end] = ACTIONS(445), + [sym_identifier] = ACTIONS(447), + [anon_sym_SEMI] = ACTIONS(445), + [anon_sym_macro_rules_BANG] = ACTIONS(445), + [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_QMARK] = ACTIONS(445), + [anon_sym_u8] = ACTIONS(447), + [anon_sym_i8] = ACTIONS(447), + [anon_sym_u16] = ACTIONS(447), + [anon_sym_i16] = ACTIONS(447), + [anon_sym_u32] = ACTIONS(447), + [anon_sym_i32] = ACTIONS(447), + [anon_sym_u64] = ACTIONS(447), + [anon_sym_i64] = ACTIONS(447), + [anon_sym_u128] = ACTIONS(447), + [anon_sym_i128] = ACTIONS(447), + [anon_sym_isize] = ACTIONS(447), + [anon_sym_usize] = ACTIONS(447), + [anon_sym_f32] = ACTIONS(447), + [anon_sym_f64] = ACTIONS(447), + [anon_sym_bool] = ACTIONS(447), + [anon_sym_str] = ACTIONS(447), + [anon_sym_char] = ACTIONS(447), + [anon_sym_SQUOTE] = ACTIONS(447), + [anon_sym_as] = ACTIONS(447), + [anon_sym_async] = ACTIONS(447), + [anon_sym_break] = ACTIONS(447), + [anon_sym_const] = ACTIONS(447), + [anon_sym_continue] = ACTIONS(447), + [anon_sym_default] = ACTIONS(447), + [anon_sym_enum] = ACTIONS(447), + [anon_sym_fn] = ACTIONS(447), + [anon_sym_for] = ACTIONS(447), + [anon_sym_if] = ACTIONS(447), + [anon_sym_impl] = ACTIONS(447), + [anon_sym_let] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(447), + [anon_sym_match] = ACTIONS(447), + [anon_sym_mod] = ACTIONS(447), + [anon_sym_pub] = ACTIONS(447), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(447), + [anon_sym_struct] = ACTIONS(447), + [anon_sym_trait] = ACTIONS(447), + [anon_sym_type] = ACTIONS(447), + [anon_sym_union] = ACTIONS(447), + [anon_sym_unsafe] = ACTIONS(447), + [anon_sym_use] = ACTIONS(447), + [anon_sym_while] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(445), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_EQ] = ACTIONS(447), + [anon_sym_extern] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_COLON_COLON] = ACTIONS(445), + [anon_sym_AMP] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(445), + [anon_sym_DOT_DOT] = ACTIONS(447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(445), + [anon_sym_PIPE_PIPE] = ACTIONS(445), + [anon_sym_PIPE] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_EQ_EQ] = ACTIONS(445), + [anon_sym_BANG_EQ] = ACTIONS(445), + [anon_sym_LT_EQ] = ACTIONS(445), + [anon_sym_GT_EQ] = ACTIONS(445), + [anon_sym_LT_LT] = ACTIONS(447), + [anon_sym_GT_GT] = ACTIONS(447), + [anon_sym_SLASH] = ACTIONS(447), + [anon_sym_PERCENT] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(445), + [anon_sym_DASH_EQ] = ACTIONS(445), + [anon_sym_STAR_EQ] = ACTIONS(445), + [anon_sym_SLASH_EQ] = ACTIONS(445), + [anon_sym_PERCENT_EQ] = ACTIONS(445), + [anon_sym_AMP_EQ] = ACTIONS(445), + [anon_sym_PIPE_EQ] = ACTIONS(445), + [anon_sym_CARET_EQ] = ACTIONS(445), + [anon_sym_LT_LT_EQ] = ACTIONS(445), + [anon_sym_GT_GT_EQ] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_DOT] = ACTIONS(447), + [sym_integer_literal] = ACTIONS(445), + [aux_sym_string_literal_token1] = ACTIONS(445), + [sym_char_literal] = ACTIONS(445), + [anon_sym_true] = ACTIONS(447), + [anon_sym_false] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(447), + [sym_super] = ACTIONS(447), + [sym_crate] = ACTIONS(447), + [sym_metavariable] = ACTIONS(445), + [sym_raw_string_literal] = ACTIONS(445), + [sym_float_literal] = ACTIONS(445), [sym_block_comment] = ACTIONS(3), }, [56] = { - [ts_builtin_sym_end] = ACTIONS(451), - [sym_identifier] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(451), - [anon_sym_macro_rules_BANG] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(451), - [anon_sym_PLUS] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(453), - [anon_sym_i8] = ACTIONS(453), - [anon_sym_u16] = ACTIONS(453), - [anon_sym_i16] = ACTIONS(453), - [anon_sym_u32] = ACTIONS(453), - [anon_sym_i32] = ACTIONS(453), - [anon_sym_u64] = ACTIONS(453), - [anon_sym_i64] = ACTIONS(453), - [anon_sym_u128] = ACTIONS(453), - [anon_sym_i128] = ACTIONS(453), - [anon_sym_isize] = ACTIONS(453), - [anon_sym_usize] = ACTIONS(453), - [anon_sym_f32] = ACTIONS(453), - [anon_sym_f64] = ACTIONS(453), - [anon_sym_bool] = ACTIONS(453), - [anon_sym_str] = ACTIONS(453), - [anon_sym_char] = ACTIONS(453), - [anon_sym_SQUOTE] = ACTIONS(453), - [anon_sym_as] = ACTIONS(453), - [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(453), - [anon_sym_const] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(453), - [anon_sym_default] = ACTIONS(453), - [anon_sym_enum] = ACTIONS(453), - [anon_sym_fn] = ACTIONS(453), - [anon_sym_for] = ACTIONS(453), - [anon_sym_if] = ACTIONS(453), - [anon_sym_impl] = ACTIONS(453), - [anon_sym_let] = ACTIONS(453), - [anon_sym_loop] = ACTIONS(453), - [anon_sym_match] = ACTIONS(453), - [anon_sym_mod] = ACTIONS(453), - [anon_sym_pub] = ACTIONS(453), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(453), - [anon_sym_struct] = ACTIONS(453), - [anon_sym_trait] = ACTIONS(453), - [anon_sym_type] = ACTIONS(453), - [anon_sym_union] = ACTIONS(453), - [anon_sym_unsafe] = ACTIONS(453), - [anon_sym_use] = ACTIONS(453), - [anon_sym_while] = ACTIONS(453), - [anon_sym_POUND] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(453), - [anon_sym_EQ] = ACTIONS(453), - [anon_sym_extern] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(453), - [anon_sym_COLON_COLON] = ACTIONS(451), - [anon_sym_AMP] = ACTIONS(453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(453), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(453), - [anon_sym_GT_GT] = ACTIONS(453), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_PERCENT] = ACTIONS(453), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), - [anon_sym_STAR_EQ] = ACTIONS(451), - [anon_sym_SLASH_EQ] = ACTIONS(451), - [anon_sym_PERCENT_EQ] = ACTIONS(451), - [anon_sym_AMP_EQ] = ACTIONS(451), - [anon_sym_PIPE_EQ] = ACTIONS(451), - [anon_sym_CARET_EQ] = ACTIONS(451), - [anon_sym_LT_LT_EQ] = ACTIONS(451), - [anon_sym_GT_GT_EQ] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_DOT] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(451), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(453), - [sym_super] = ACTIONS(453), - [sym_crate] = ACTIONS(453), - [sym_metavariable] = ACTIONS(451), - [sym_raw_string_literal] = ACTIONS(451), - [sym_float_literal] = ACTIONS(451), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_tuple_expression_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_RPAREN] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_u8] = ACTIONS(466), + [anon_sym_i8] = ACTIONS(466), + [anon_sym_u16] = ACTIONS(466), + [anon_sym_i16] = ACTIONS(466), + [anon_sym_u32] = ACTIONS(466), + [anon_sym_i32] = ACTIONS(466), + [anon_sym_u64] = ACTIONS(466), + [anon_sym_i64] = ACTIONS(466), + [anon_sym_u128] = ACTIONS(466), + [anon_sym_i128] = ACTIONS(466), + [anon_sym_isize] = ACTIONS(466), + [anon_sym_usize] = ACTIONS(466), + [anon_sym_f32] = ACTIONS(466), + [anon_sym_f64] = ACTIONS(466), + [anon_sym_bool] = ACTIONS(466), + [anon_sym_str] = ACTIONS(466), + [anon_sym_char] = ACTIONS(466), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_async] = ACTIONS(472), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_default] = ACTIONS(484), + [anon_sym_for] = ACTIONS(487), + [anon_sym_if] = ACTIONS(490), + [anon_sym_loop] = ACTIONS(493), + [anon_sym_match] = ACTIONS(496), + [anon_sym_return] = ACTIONS(499), + [anon_sym_union] = ACTIONS(484), + [anon_sym_unsafe] = ACTIONS(502), + [anon_sym_while] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_AMP] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_move] = ACTIONS(523), + [sym_integer_literal] = ACTIONS(526), + [aux_sym_string_literal_token1] = ACTIONS(529), + [sym_char_literal] = ACTIONS(526), + [anon_sym_true] = ACTIONS(532), + [anon_sym_false] = ACTIONS(532), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(535), + [sym_super] = ACTIONS(538), + [sym_crate] = ACTIONS(538), + [sym_metavariable] = ACTIONS(541), + [sym_raw_string_literal] = ACTIONS(526), + [sym_float_literal] = ACTIONS(526), [sym_block_comment] = ACTIONS(3), }, [57] = { - [ts_builtin_sym_end] = ACTIONS(455), - [sym_identifier] = ACTIONS(457), - [anon_sym_SEMI] = ACTIONS(459), - [anon_sym_macro_rules_BANG] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_as] = ACTIONS(461), - [anon_sym_async] = ACTIONS(457), - [anon_sym_break] = ACTIONS(457), - [anon_sym_const] = ACTIONS(457), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_default] = ACTIONS(457), - [anon_sym_enum] = ACTIONS(457), - [anon_sym_fn] = ACTIONS(457), - [anon_sym_for] = ACTIONS(457), - [anon_sym_if] = ACTIONS(457), - [anon_sym_impl] = ACTIONS(457), - [anon_sym_let] = ACTIONS(457), - [anon_sym_loop] = ACTIONS(457), - [anon_sym_match] = ACTIONS(457), - [anon_sym_mod] = ACTIONS(457), - [anon_sym_pub] = ACTIONS(457), - [anon_sym_return] = ACTIONS(457), - [anon_sym_static] = ACTIONS(457), - [anon_sym_struct] = ACTIONS(457), - [anon_sym_trait] = ACTIONS(457), - [anon_sym_type] = ACTIONS(457), - [anon_sym_union] = ACTIONS(457), - [anon_sym_unsafe] = ACTIONS(457), - [anon_sym_use] = ACTIONS(457), - [anon_sym_while] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(455), - [anon_sym_BANG] = ACTIONS(457), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_extern] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_COLON_COLON] = ACTIONS(455), - [anon_sym_AMP] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(459), - [anon_sym_DOT_DOT] = ACTIONS(461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_PIPE_PIPE] = ACTIONS(459), - [anon_sym_PIPE] = ACTIONS(461), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(459), - [anon_sym_BANG_EQ] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_PERCENT] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(459), - [anon_sym_DASH_EQ] = ACTIONS(459), - [anon_sym_STAR_EQ] = ACTIONS(459), - [anon_sym_SLASH_EQ] = ACTIONS(459), - [anon_sym_PERCENT_EQ] = ACTIONS(459), - [anon_sym_AMP_EQ] = ACTIONS(459), - [anon_sym_PIPE_EQ] = ACTIONS(459), - [anon_sym_CARET_EQ] = ACTIONS(459), - [anon_sym_LT_LT_EQ] = ACTIONS(459), - [anon_sym_GT_GT_EQ] = ACTIONS(459), - [anon_sym_move] = ACTIONS(457), - [anon_sym_DOT] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(455), - [aux_sym_string_literal_token1] = ACTIONS(455), - [sym_char_literal] = ACTIONS(455), - [anon_sym_true] = ACTIONS(457), - [anon_sym_false] = ACTIONS(457), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(457), - [sym_crate] = ACTIONS(457), - [sym_metavariable] = ACTIONS(455), - [sym_raw_string_literal] = ACTIONS(455), - [sym_float_literal] = ACTIONS(455), + [ts_builtin_sym_end] = ACTIONS(544), + [sym_identifier] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_macro_rules_BANG] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(548), + [anon_sym_u8] = ACTIONS(546), + [anon_sym_i8] = ACTIONS(546), + [anon_sym_u16] = ACTIONS(546), + [anon_sym_i16] = ACTIONS(546), + [anon_sym_u32] = ACTIONS(546), + [anon_sym_i32] = ACTIONS(546), + [anon_sym_u64] = ACTIONS(546), + [anon_sym_i64] = ACTIONS(546), + [anon_sym_u128] = ACTIONS(546), + [anon_sym_i128] = ACTIONS(546), + [anon_sym_isize] = ACTIONS(546), + [anon_sym_usize] = ACTIONS(546), + [anon_sym_f32] = ACTIONS(546), + [anon_sym_f64] = ACTIONS(546), + [anon_sym_bool] = ACTIONS(546), + [anon_sym_str] = ACTIONS(546), + [anon_sym_char] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(546), + [anon_sym_as] = ACTIONS(550), + [anon_sym_async] = ACTIONS(546), + [anon_sym_break] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_default] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(546), + [anon_sym_fn] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_impl] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_loop] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_mod] = ACTIONS(546), + [anon_sym_pub] = ACTIONS(546), + [anon_sym_return] = ACTIONS(546), + [anon_sym_static] = ACTIONS(546), + [anon_sym_struct] = ACTIONS(546), + [anon_sym_trait] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_union] = ACTIONS(546), + [anon_sym_unsafe] = ACTIONS(546), + [anon_sym_use] = ACTIONS(546), + [anon_sym_while] = ACTIONS(546), + [anon_sym_POUND] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(548), + [anon_sym_DOT_DOT] = ACTIONS(550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_PLUS_EQ] = ACTIONS(548), + [anon_sym_DASH_EQ] = ACTIONS(548), + [anon_sym_STAR_EQ] = ACTIONS(548), + [anon_sym_SLASH_EQ] = ACTIONS(548), + [anon_sym_PERCENT_EQ] = ACTIONS(548), + [anon_sym_AMP_EQ] = ACTIONS(548), + [anon_sym_PIPE_EQ] = ACTIONS(548), + [anon_sym_CARET_EQ] = ACTIONS(548), + [anon_sym_LT_LT_EQ] = ACTIONS(548), + [anon_sym_GT_GT_EQ] = ACTIONS(548), + [anon_sym_move] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(550), + [sym_integer_literal] = ACTIONS(544), + [aux_sym_string_literal_token1] = ACTIONS(544), + [sym_char_literal] = ACTIONS(544), + [anon_sym_true] = ACTIONS(546), + [anon_sym_false] = ACTIONS(546), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(546), + [sym_super] = ACTIONS(546), + [sym_crate] = ACTIONS(546), + [sym_metavariable] = ACTIONS(544), + [sym_raw_string_literal] = ACTIONS(544), + [sym_float_literal] = ACTIONS(544), [sym_block_comment] = ACTIONS(3), }, [58] = { - [ts_builtin_sym_end] = ACTIONS(463), - [sym_identifier] = ACTIONS(465), - [anon_sym_SEMI] = ACTIONS(463), - [anon_sym_macro_rules_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(465), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_u8] = ACTIONS(465), - [anon_sym_i8] = ACTIONS(465), - [anon_sym_u16] = ACTIONS(465), - [anon_sym_i16] = ACTIONS(465), - [anon_sym_u32] = ACTIONS(465), - [anon_sym_i32] = ACTIONS(465), - [anon_sym_u64] = ACTIONS(465), - [anon_sym_i64] = ACTIONS(465), - [anon_sym_u128] = ACTIONS(465), - [anon_sym_i128] = ACTIONS(465), - [anon_sym_isize] = ACTIONS(465), - [anon_sym_usize] = ACTIONS(465), - [anon_sym_f32] = ACTIONS(465), - [anon_sym_f64] = ACTIONS(465), - [anon_sym_bool] = ACTIONS(465), - [anon_sym_str] = ACTIONS(465), - [anon_sym_char] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(465), - [anon_sym_as] = ACTIONS(465), - [anon_sym_async] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_const] = ACTIONS(465), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_default] = ACTIONS(465), - [anon_sym_enum] = ACTIONS(465), - [anon_sym_fn] = ACTIONS(465), - [anon_sym_for] = ACTIONS(465), - [anon_sym_if] = ACTIONS(465), - [anon_sym_impl] = ACTIONS(465), - [anon_sym_let] = ACTIONS(465), - [anon_sym_loop] = ACTIONS(465), - [anon_sym_match] = ACTIONS(465), - [anon_sym_mod] = ACTIONS(465), - [anon_sym_pub] = ACTIONS(465), - [anon_sym_return] = ACTIONS(465), - [anon_sym_static] = ACTIONS(465), - [anon_sym_struct] = ACTIONS(465), - [anon_sym_trait] = ACTIONS(465), - [anon_sym_type] = ACTIONS(465), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(465), - [anon_sym_use] = ACTIONS(465), - [anon_sym_while] = ACTIONS(465), - [anon_sym_POUND] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_EQ] = ACTIONS(465), - [anon_sym_extern] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(465), - [anon_sym_GT] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(463), - [anon_sym_AMP] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(463), - [anon_sym_DOT_DOT] = ACTIONS(465), - [anon_sym_DOT_DOT_EQ] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_AMP_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(463), - [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_CARET] = ACTIONS(465), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_LT_LT] = ACTIONS(465), - [anon_sym_GT_GT] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(465), - [anon_sym_PERCENT] = ACTIONS(465), - [anon_sym_PLUS_EQ] = ACTIONS(463), - [anon_sym_DASH_EQ] = ACTIONS(463), - [anon_sym_STAR_EQ] = ACTIONS(463), - [anon_sym_SLASH_EQ] = ACTIONS(463), - [anon_sym_PERCENT_EQ] = ACTIONS(463), - [anon_sym_AMP_EQ] = ACTIONS(463), - [anon_sym_PIPE_EQ] = ACTIONS(463), - [anon_sym_CARET_EQ] = ACTIONS(463), - [anon_sym_LT_LT_EQ] = ACTIONS(463), - [anon_sym_GT_GT_EQ] = ACTIONS(463), - [anon_sym_move] = ACTIONS(465), - [anon_sym_DOT] = ACTIONS(465), - [sym_integer_literal] = ACTIONS(463), - [aux_sym_string_literal_token1] = ACTIONS(463), - [sym_char_literal] = ACTIONS(463), - [anon_sym_true] = ACTIONS(465), - [anon_sym_false] = ACTIONS(465), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(465), - [sym_super] = ACTIONS(465), - [sym_crate] = ACTIONS(465), - [sym_metavariable] = ACTIONS(463), - [sym_raw_string_literal] = ACTIONS(463), - [sym_float_literal] = ACTIONS(463), + [ts_builtin_sym_end] = ACTIONS(552), + [sym_identifier] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(552), + [anon_sym_macro_rules_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(552), + [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_LBRACK] = ACTIONS(552), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_QMARK] = ACTIONS(552), + [anon_sym_u8] = ACTIONS(554), + [anon_sym_i8] = ACTIONS(554), + [anon_sym_u16] = ACTIONS(554), + [anon_sym_i16] = ACTIONS(554), + [anon_sym_u32] = ACTIONS(554), + [anon_sym_i32] = ACTIONS(554), + [anon_sym_u64] = ACTIONS(554), + [anon_sym_i64] = ACTIONS(554), + [anon_sym_u128] = ACTIONS(554), + [anon_sym_i128] = ACTIONS(554), + [anon_sym_isize] = ACTIONS(554), + [anon_sym_usize] = ACTIONS(554), + [anon_sym_f32] = ACTIONS(554), + [anon_sym_f64] = ACTIONS(554), + [anon_sym_bool] = ACTIONS(554), + [anon_sym_str] = ACTIONS(554), + [anon_sym_char] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(554), + [anon_sym_as] = ACTIONS(554), + [anon_sym_async] = ACTIONS(554), + [anon_sym_break] = ACTIONS(554), + [anon_sym_const] = ACTIONS(554), + [anon_sym_continue] = ACTIONS(554), + [anon_sym_default] = ACTIONS(554), + [anon_sym_enum] = ACTIONS(554), + [anon_sym_fn] = ACTIONS(554), + [anon_sym_for] = ACTIONS(554), + [anon_sym_if] = ACTIONS(554), + [anon_sym_impl] = ACTIONS(554), + [anon_sym_let] = ACTIONS(554), + [anon_sym_loop] = ACTIONS(554), + [anon_sym_match] = ACTIONS(554), + [anon_sym_mod] = ACTIONS(554), + [anon_sym_pub] = ACTIONS(554), + [anon_sym_return] = ACTIONS(554), + [anon_sym_static] = ACTIONS(554), + [anon_sym_struct] = ACTIONS(554), + [anon_sym_trait] = ACTIONS(554), + [anon_sym_type] = ACTIONS(554), + [anon_sym_union] = ACTIONS(554), + [anon_sym_unsafe] = ACTIONS(554), + [anon_sym_use] = ACTIONS(554), + [anon_sym_while] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_extern] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(552), + [anon_sym_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(552), + [anon_sym_PIPE_PIPE] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(552), + [anon_sym_BANG_EQ] = ACTIONS(552), + [anon_sym_LT_EQ] = ACTIONS(552), + [anon_sym_GT_EQ] = ACTIONS(552), + [anon_sym_LT_LT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [anon_sym_PLUS_EQ] = ACTIONS(552), + [anon_sym_DASH_EQ] = ACTIONS(552), + [anon_sym_STAR_EQ] = ACTIONS(552), + [anon_sym_SLASH_EQ] = ACTIONS(552), + [anon_sym_PERCENT_EQ] = ACTIONS(552), + [anon_sym_AMP_EQ] = ACTIONS(552), + [anon_sym_PIPE_EQ] = ACTIONS(552), + [anon_sym_CARET_EQ] = ACTIONS(552), + [anon_sym_LT_LT_EQ] = ACTIONS(552), + [anon_sym_GT_GT_EQ] = ACTIONS(552), + [anon_sym_move] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [sym_integer_literal] = ACTIONS(552), + [aux_sym_string_literal_token1] = ACTIONS(552), + [sym_char_literal] = ACTIONS(552), + [anon_sym_true] = ACTIONS(554), + [anon_sym_false] = ACTIONS(554), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(554), + [sym_super] = ACTIONS(554), + [sym_crate] = ACTIONS(554), + [sym_metavariable] = ACTIONS(552), + [sym_raw_string_literal] = ACTIONS(552), + [sym_float_literal] = ACTIONS(552), [sym_block_comment] = ACTIONS(3), }, [59] = { - [ts_builtin_sym_end] = ACTIONS(467), - [sym_identifier] = ACTIONS(469), - [anon_sym_SEMI] = ACTIONS(467), - [anon_sym_macro_rules_BANG] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(467), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_as] = ACTIONS(469), - [anon_sym_async] = ACTIONS(469), - [anon_sym_break] = ACTIONS(469), - [anon_sym_const] = ACTIONS(469), - [anon_sym_continue] = ACTIONS(469), - [anon_sym_default] = ACTIONS(469), - [anon_sym_enum] = ACTIONS(469), - [anon_sym_fn] = ACTIONS(469), - [anon_sym_for] = ACTIONS(469), - [anon_sym_if] = ACTIONS(469), - [anon_sym_impl] = ACTIONS(469), - [anon_sym_let] = ACTIONS(469), - [anon_sym_loop] = ACTIONS(469), - [anon_sym_match] = ACTIONS(469), - [anon_sym_mod] = ACTIONS(469), - [anon_sym_pub] = ACTIONS(469), - [anon_sym_return] = ACTIONS(469), - [anon_sym_static] = ACTIONS(469), - [anon_sym_struct] = ACTIONS(469), - [anon_sym_trait] = ACTIONS(469), - [anon_sym_type] = ACTIONS(469), - [anon_sym_union] = ACTIONS(469), - [anon_sym_unsafe] = ACTIONS(469), - [anon_sym_use] = ACTIONS(469), - [anon_sym_while] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(467), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_EQ] = ACTIONS(469), - [anon_sym_extern] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(469), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_AMP] = ACTIONS(469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(469), - [anon_sym_DOT_DOT_EQ] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_AMP_AMP] = ACTIONS(467), - [anon_sym_PIPE_PIPE] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(469), - [anon_sym_CARET] = ACTIONS(469), - [anon_sym_EQ_EQ] = ACTIONS(467), - [anon_sym_BANG_EQ] = ACTIONS(467), - [anon_sym_LT_EQ] = ACTIONS(467), - [anon_sym_GT_EQ] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_GT_GT] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(469), - [anon_sym_PLUS_EQ] = ACTIONS(467), - [anon_sym_DASH_EQ] = ACTIONS(467), - [anon_sym_STAR_EQ] = ACTIONS(467), - [anon_sym_SLASH_EQ] = ACTIONS(467), - [anon_sym_PERCENT_EQ] = ACTIONS(467), - [anon_sym_AMP_EQ] = ACTIONS(467), - [anon_sym_PIPE_EQ] = ACTIONS(467), - [anon_sym_CARET_EQ] = ACTIONS(467), - [anon_sym_LT_LT_EQ] = ACTIONS(467), - [anon_sym_GT_GT_EQ] = ACTIONS(467), - [anon_sym_move] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(469), - [sym_integer_literal] = ACTIONS(467), - [aux_sym_string_literal_token1] = ACTIONS(467), - [sym_char_literal] = ACTIONS(467), - [anon_sym_true] = ACTIONS(469), - [anon_sym_false] = ACTIONS(469), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(469), - [sym_super] = ACTIONS(469), - [sym_crate] = ACTIONS(469), - [sym_metavariable] = ACTIONS(467), - [sym_raw_string_literal] = ACTIONS(467), - [sym_float_literal] = ACTIONS(467), - [sym_block_comment] = ACTIONS(3), - }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(471), - [sym_identifier] = ACTIONS(473), - [anon_sym_SEMI] = ACTIONS(471), - [anon_sym_macro_rules_BANG] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_LBRACE] = ACTIONS(471), - [anon_sym_RBRACE] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(473), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(473), - [anon_sym_i8] = ACTIONS(473), - [anon_sym_u16] = ACTIONS(473), - [anon_sym_i16] = ACTIONS(473), - [anon_sym_u32] = ACTIONS(473), - [anon_sym_i32] = ACTIONS(473), - [anon_sym_u64] = ACTIONS(473), - [anon_sym_i64] = ACTIONS(473), - [anon_sym_u128] = ACTIONS(473), - [anon_sym_i128] = ACTIONS(473), - [anon_sym_isize] = ACTIONS(473), - [anon_sym_usize] = ACTIONS(473), - [anon_sym_f32] = ACTIONS(473), - [anon_sym_f64] = ACTIONS(473), - [anon_sym_bool] = ACTIONS(473), - [anon_sym_str] = ACTIONS(473), - [anon_sym_char] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(473), - [anon_sym_as] = ACTIONS(461), - [anon_sym_async] = ACTIONS(473), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(473), - [anon_sym_default] = ACTIONS(473), - [anon_sym_enum] = ACTIONS(473), - [anon_sym_fn] = ACTIONS(473), - [anon_sym_for] = ACTIONS(473), - [anon_sym_if] = ACTIONS(473), - [anon_sym_impl] = ACTIONS(473), - [anon_sym_let] = ACTIONS(473), - [anon_sym_loop] = ACTIONS(473), - [anon_sym_match] = ACTIONS(473), - [anon_sym_mod] = ACTIONS(473), - [anon_sym_pub] = ACTIONS(473), - [anon_sym_return] = ACTIONS(473), - [anon_sym_static] = ACTIONS(473), - [anon_sym_struct] = ACTIONS(473), - [anon_sym_trait] = ACTIONS(473), - [anon_sym_type] = ACTIONS(473), - [anon_sym_union] = ACTIONS(473), - [anon_sym_unsafe] = ACTIONS(473), - [anon_sym_use] = ACTIONS(473), - [anon_sym_while] = ACTIONS(473), - [anon_sym_POUND] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_extern] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(459), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_PIPE_PIPE] = ACTIONS(459), - [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(459), - [anon_sym_BANG_EQ] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_PERCENT] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(459), - [anon_sym_DASH_EQ] = ACTIONS(459), - [anon_sym_STAR_EQ] = ACTIONS(459), - [anon_sym_SLASH_EQ] = ACTIONS(459), - [anon_sym_PERCENT_EQ] = ACTIONS(459), - [anon_sym_AMP_EQ] = ACTIONS(459), - [anon_sym_PIPE_EQ] = ACTIONS(459), - [anon_sym_CARET_EQ] = ACTIONS(459), - [anon_sym_LT_LT_EQ] = ACTIONS(459), - [anon_sym_GT_GT_EQ] = ACTIONS(459), - [anon_sym_move] = ACTIONS(473), - [anon_sym_DOT] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(471), - [aux_sym_string_literal_token1] = ACTIONS(471), - [sym_char_literal] = ACTIONS(471), - [anon_sym_true] = ACTIONS(473), - [anon_sym_false] = ACTIONS(473), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(473), - [sym_super] = ACTIONS(473), - [sym_crate] = ACTIONS(473), - [sym_metavariable] = ACTIONS(471), - [sym_raw_string_literal] = ACTIONS(471), - [sym_float_literal] = ACTIONS(471), - [sym_block_comment] = ACTIONS(3), - }, - [61] = { - [ts_builtin_sym_end] = ACTIONS(475), - [sym_identifier] = ACTIONS(477), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_macro_rules_BANG] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(477), - [anon_sym_as] = ACTIONS(477), - [anon_sym_async] = ACTIONS(477), - [anon_sym_break] = ACTIONS(477), - [anon_sym_const] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_default] = ACTIONS(477), - [anon_sym_enum] = ACTIONS(477), - [anon_sym_fn] = ACTIONS(477), - [anon_sym_for] = ACTIONS(477), - [anon_sym_if] = ACTIONS(477), - [anon_sym_impl] = ACTIONS(477), - [anon_sym_let] = ACTIONS(477), - [anon_sym_loop] = ACTIONS(477), - [anon_sym_match] = ACTIONS(477), - [anon_sym_mod] = ACTIONS(477), - [anon_sym_pub] = ACTIONS(477), - [anon_sym_return] = ACTIONS(477), - [anon_sym_static] = ACTIONS(477), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_trait] = ACTIONS(477), - [anon_sym_type] = ACTIONS(477), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(477), - [anon_sym_use] = ACTIONS(477), - [anon_sym_while] = ACTIONS(477), - [anon_sym_POUND] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_extern] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_COLON_COLON] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(475), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(475), - [anon_sym_BANG_EQ] = ACTIONS(475), - [anon_sym_LT_EQ] = ACTIONS(475), - [anon_sym_GT_EQ] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_PERCENT] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(475), - [anon_sym_DASH_EQ] = ACTIONS(475), - [anon_sym_STAR_EQ] = ACTIONS(475), - [anon_sym_SLASH_EQ] = ACTIONS(475), - [anon_sym_PERCENT_EQ] = ACTIONS(475), - [anon_sym_AMP_EQ] = ACTIONS(475), - [anon_sym_PIPE_EQ] = ACTIONS(475), - [anon_sym_CARET_EQ] = ACTIONS(475), - [anon_sym_LT_LT_EQ] = ACTIONS(475), - [anon_sym_GT_GT_EQ] = ACTIONS(475), - [anon_sym_move] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(477), - [sym_integer_literal] = ACTIONS(475), - [aux_sym_string_literal_token1] = ACTIONS(475), - [sym_char_literal] = ACTIONS(475), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(477), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(475), - [sym_raw_string_literal] = ACTIONS(475), - [sym_float_literal] = ACTIONS(475), - [sym_block_comment] = ACTIONS(3), - }, - [62] = { - [ts_builtin_sym_end] = ACTIONS(479), - [sym_identifier] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(479), - [anon_sym_macro_rules_BANG] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_RBRACE] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(479), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(479), - [anon_sym_u8] = ACTIONS(481), - [anon_sym_i8] = ACTIONS(481), - [anon_sym_u16] = ACTIONS(481), - [anon_sym_i16] = ACTIONS(481), - [anon_sym_u32] = ACTIONS(481), - [anon_sym_i32] = ACTIONS(481), - [anon_sym_u64] = ACTIONS(481), - [anon_sym_i64] = ACTIONS(481), - [anon_sym_u128] = ACTIONS(481), - [anon_sym_i128] = ACTIONS(481), - [anon_sym_isize] = ACTIONS(481), - [anon_sym_usize] = ACTIONS(481), - [anon_sym_f32] = ACTIONS(481), - [anon_sym_f64] = ACTIONS(481), - [anon_sym_bool] = ACTIONS(481), - [anon_sym_str] = ACTIONS(481), - [anon_sym_char] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_as] = ACTIONS(481), - [anon_sym_async] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_const] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_default] = ACTIONS(481), - [anon_sym_enum] = ACTIONS(481), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_for] = ACTIONS(481), - [anon_sym_if] = ACTIONS(481), - [anon_sym_impl] = ACTIONS(481), - [anon_sym_let] = ACTIONS(481), - [anon_sym_loop] = ACTIONS(481), - [anon_sym_match] = ACTIONS(481), - [anon_sym_mod] = ACTIONS(481), - [anon_sym_pub] = ACTIONS(481), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(481), - [anon_sym_struct] = ACTIONS(481), - [anon_sym_trait] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_union] = ACTIONS(481), - [anon_sym_unsafe] = ACTIONS(481), - [anon_sym_use] = ACTIONS(481), - [anon_sym_while] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_extern] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(479), - [anon_sym_DOT_DOT] = ACTIONS(481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym_EQ_EQ] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(479), - [anon_sym_GT_EQ] = ACTIONS(479), - [anon_sym_LT_LT] = ACTIONS(481), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_PLUS_EQ] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(479), - [anon_sym_STAR_EQ] = ACTIONS(479), - [anon_sym_SLASH_EQ] = ACTIONS(479), - [anon_sym_PERCENT_EQ] = ACTIONS(479), - [anon_sym_AMP_EQ] = ACTIONS(479), - [anon_sym_PIPE_EQ] = ACTIONS(479), - [anon_sym_CARET_EQ] = ACTIONS(479), - [anon_sym_LT_LT_EQ] = ACTIONS(479), - [anon_sym_GT_GT_EQ] = ACTIONS(479), - [anon_sym_move] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(479), - [aux_sym_string_literal_token1] = ACTIONS(479), - [sym_char_literal] = ACTIONS(479), - [anon_sym_true] = ACTIONS(481), - [anon_sym_false] = ACTIONS(481), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(481), - [sym_super] = ACTIONS(481), - [sym_crate] = ACTIONS(481), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(479), - [sym_float_literal] = ACTIONS(479), - [sym_block_comment] = ACTIONS(3), - }, - [63] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1149), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_tuple_expression_repeat1] = STATE(64), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1179), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_tuple_expression_repeat1] = STATE(56), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(483), + [anon_sym_RPAREN] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21805,790 +20895,370 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [64] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1181), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_tuple_expression_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(485), - [anon_sym_LPAREN] = ACTIONS(488), - [anon_sym_RPAREN] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_LBRACK] = ACTIONS(496), - [anon_sym_STAR] = ACTIONS(499), - [anon_sym_u8] = ACTIONS(502), - [anon_sym_i8] = ACTIONS(502), - [anon_sym_u16] = ACTIONS(502), - [anon_sym_i16] = ACTIONS(502), - [anon_sym_u32] = ACTIONS(502), - [anon_sym_i32] = ACTIONS(502), - [anon_sym_u64] = ACTIONS(502), - [anon_sym_i64] = ACTIONS(502), - [anon_sym_u128] = ACTIONS(502), - [anon_sym_i128] = ACTIONS(502), - [anon_sym_isize] = ACTIONS(502), - [anon_sym_usize] = ACTIONS(502), - [anon_sym_f32] = ACTIONS(502), - [anon_sym_f64] = ACTIONS(502), - [anon_sym_bool] = ACTIONS(502), - [anon_sym_str] = ACTIONS(502), - [anon_sym_char] = ACTIONS(502), - [anon_sym_SQUOTE] = ACTIONS(505), - [anon_sym_async] = ACTIONS(508), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(514), - [anon_sym_continue] = ACTIONS(517), - [anon_sym_default] = ACTIONS(520), - [anon_sym_for] = ACTIONS(523), - [anon_sym_if] = ACTIONS(526), - [anon_sym_loop] = ACTIONS(529), - [anon_sym_match] = ACTIONS(532), - [anon_sym_return] = ACTIONS(535), - [anon_sym_union] = ACTIONS(520), - [anon_sym_unsafe] = ACTIONS(538), - [anon_sym_while] = ACTIONS(541), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(550), - [anon_sym_DOT_DOT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_move] = ACTIONS(559), + [60] = { + [ts_builtin_sym_end] = ACTIONS(558), + [sym_identifier] = ACTIONS(560), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_macro_rules_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(548), + [anon_sym_u8] = ACTIONS(560), + [anon_sym_i8] = ACTIONS(560), + [anon_sym_u16] = ACTIONS(560), + [anon_sym_i16] = ACTIONS(560), + [anon_sym_u32] = ACTIONS(560), + [anon_sym_i32] = ACTIONS(560), + [anon_sym_u64] = ACTIONS(560), + [anon_sym_i64] = ACTIONS(560), + [anon_sym_u128] = ACTIONS(560), + [anon_sym_i128] = ACTIONS(560), + [anon_sym_isize] = ACTIONS(560), + [anon_sym_usize] = ACTIONS(560), + [anon_sym_f32] = ACTIONS(560), + [anon_sym_f64] = ACTIONS(560), + [anon_sym_bool] = ACTIONS(560), + [anon_sym_str] = ACTIONS(560), + [anon_sym_char] = ACTIONS(560), + [anon_sym_SQUOTE] = ACTIONS(560), + [anon_sym_as] = ACTIONS(550), + [anon_sym_async] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_const] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_default] = ACTIONS(560), + [anon_sym_enum] = ACTIONS(560), + [anon_sym_fn] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_if] = ACTIONS(560), + [anon_sym_impl] = ACTIONS(560), + [anon_sym_let] = ACTIONS(560), + [anon_sym_loop] = ACTIONS(560), + [anon_sym_match] = ACTIONS(560), + [anon_sym_mod] = ACTIONS(560), + [anon_sym_pub] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_static] = ACTIONS(560), + [anon_sym_struct] = ACTIONS(560), + [anon_sym_trait] = ACTIONS(560), + [anon_sym_type] = ACTIONS(560), + [anon_sym_union] = ACTIONS(560), + [anon_sym_unsafe] = ACTIONS(560), + [anon_sym_use] = ACTIONS(560), + [anon_sym_while] = ACTIONS(560), + [anon_sym_POUND] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(548), + [anon_sym_DOT_DOT] = ACTIONS(560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_PLUS_EQ] = ACTIONS(548), + [anon_sym_DASH_EQ] = ACTIONS(548), + [anon_sym_STAR_EQ] = ACTIONS(548), + [anon_sym_SLASH_EQ] = ACTIONS(548), + [anon_sym_PERCENT_EQ] = ACTIONS(548), + [anon_sym_AMP_EQ] = ACTIONS(548), + [anon_sym_PIPE_EQ] = ACTIONS(548), + [anon_sym_CARET_EQ] = ACTIONS(548), + [anon_sym_LT_LT_EQ] = ACTIONS(548), + [anon_sym_GT_GT_EQ] = ACTIONS(548), + [anon_sym_move] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(550), + [sym_integer_literal] = ACTIONS(558), + [aux_sym_string_literal_token1] = ACTIONS(558), + [sym_char_literal] = ACTIONS(558), + [anon_sym_true] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(560), + [sym_super] = ACTIONS(560), + [sym_crate] = ACTIONS(560), + [sym_metavariable] = ACTIONS(558), + [sym_raw_string_literal] = ACTIONS(558), + [sym_float_literal] = ACTIONS(558), + [sym_block_comment] = ACTIONS(3), + }, + [61] = { + [ts_builtin_sym_end] = ACTIONS(562), + [sym_identifier] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_macro_rules_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_u8] = ACTIONS(564), + [anon_sym_i8] = ACTIONS(564), + [anon_sym_u16] = ACTIONS(564), + [anon_sym_i16] = ACTIONS(564), + [anon_sym_u32] = ACTIONS(564), + [anon_sym_i32] = ACTIONS(564), + [anon_sym_u64] = ACTIONS(564), + [anon_sym_i64] = ACTIONS(564), + [anon_sym_u128] = ACTIONS(564), + [anon_sym_i128] = ACTIONS(564), + [anon_sym_isize] = ACTIONS(564), + [anon_sym_usize] = ACTIONS(564), + [anon_sym_f32] = ACTIONS(564), + [anon_sym_f64] = ACTIONS(564), + [anon_sym_bool] = ACTIONS(564), + [anon_sym_str] = ACTIONS(564), + [anon_sym_char] = ACTIONS(564), + [anon_sym_SQUOTE] = ACTIONS(564), + [anon_sym_as] = ACTIONS(564), + [anon_sym_async] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_const] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_default] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_fn] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_if] = ACTIONS(564), + [anon_sym_impl] = ACTIONS(564), + [anon_sym_let] = ACTIONS(564), + [anon_sym_loop] = ACTIONS(564), + [anon_sym_match] = ACTIONS(564), + [anon_sym_mod] = ACTIONS(564), + [anon_sym_pub] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_static] = ACTIONS(564), + [anon_sym_struct] = ACTIONS(564), + [anon_sym_trait] = ACTIONS(564), + [anon_sym_type] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [anon_sym_unsafe] = ACTIONS(564), + [anon_sym_use] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_POUND] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_extern] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_COLON_COLON] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_STAR_EQ] = ACTIONS(562), + [anon_sym_SLASH_EQ] = ACTIONS(562), + [anon_sym_PERCENT_EQ] = ACTIONS(562), + [anon_sym_AMP_EQ] = ACTIONS(562), + [anon_sym_PIPE_EQ] = ACTIONS(562), + [anon_sym_CARET_EQ] = ACTIONS(562), + [anon_sym_LT_LT_EQ] = ACTIONS(562), + [anon_sym_GT_GT_EQ] = ACTIONS(562), + [anon_sym_move] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), [sym_integer_literal] = ACTIONS(562), - [aux_sym_string_literal_token1] = ACTIONS(565), + [aux_sym_string_literal_token1] = ACTIONS(562), [sym_char_literal] = ACTIONS(562), - [anon_sym_true] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), + [anon_sym_true] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(571), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(577), + [sym_self] = ACTIONS(564), + [sym_super] = ACTIONS(564), + [sym_crate] = ACTIONS(564), + [sym_metavariable] = ACTIONS(562), [sym_raw_string_literal] = ACTIONS(562), [sym_float_literal] = ACTIONS(562), [sym_block_comment] = ACTIONS(3), }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(580), - [sym_identifier] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_macro_rules_BANG] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(582), - [anon_sym_i8] = ACTIONS(582), - [anon_sym_u16] = ACTIONS(582), - [anon_sym_i16] = ACTIONS(582), - [anon_sym_u32] = ACTIONS(582), - [anon_sym_i32] = ACTIONS(582), - [anon_sym_u64] = ACTIONS(582), - [anon_sym_i64] = ACTIONS(582), - [anon_sym_u128] = ACTIONS(582), - [anon_sym_i128] = ACTIONS(582), - [anon_sym_isize] = ACTIONS(582), - [anon_sym_usize] = ACTIONS(582), - [anon_sym_f32] = ACTIONS(582), - [anon_sym_f64] = ACTIONS(582), - [anon_sym_bool] = ACTIONS(582), - [anon_sym_str] = ACTIONS(582), - [anon_sym_char] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(582), - [anon_sym_as] = ACTIONS(582), - [anon_sym_async] = ACTIONS(582), - [anon_sym_break] = ACTIONS(582), - [anon_sym_const] = ACTIONS(582), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_default] = ACTIONS(582), - [anon_sym_enum] = ACTIONS(582), - [anon_sym_fn] = ACTIONS(582), - [anon_sym_for] = ACTIONS(582), - [anon_sym_if] = ACTIONS(582), - [anon_sym_impl] = ACTIONS(582), - [anon_sym_let] = ACTIONS(582), - [anon_sym_loop] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_mod] = ACTIONS(582), - [anon_sym_pub] = ACTIONS(582), - [anon_sym_return] = ACTIONS(582), - [anon_sym_static] = ACTIONS(582), - [anon_sym_struct] = ACTIONS(582), - [anon_sym_trait] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_union] = ACTIONS(582), - [anon_sym_unsafe] = ACTIONS(582), - [anon_sym_use] = ACTIONS(582), - [anon_sym_while] = ACTIONS(582), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_extern] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(582), - [anon_sym_COLON_COLON] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_DOT_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT] = ACTIONS(582), - [anon_sym_DOT_DOT_EQ] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_AMP_AMP] = ACTIONS(580), - [anon_sym_PIPE_PIPE] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_EQ_EQ] = ACTIONS(580), - [anon_sym_BANG_EQ] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_GT_GT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_PLUS_EQ] = ACTIONS(580), - [anon_sym_DASH_EQ] = ACTIONS(580), - [anon_sym_STAR_EQ] = ACTIONS(580), - [anon_sym_SLASH_EQ] = ACTIONS(580), - [anon_sym_PERCENT_EQ] = ACTIONS(580), - [anon_sym_AMP_EQ] = ACTIONS(580), - [anon_sym_PIPE_EQ] = ACTIONS(580), - [anon_sym_CARET_EQ] = ACTIONS(580), - [anon_sym_LT_LT_EQ] = ACTIONS(580), - [anon_sym_GT_GT_EQ] = ACTIONS(580), - [anon_sym_move] = ACTIONS(582), - [anon_sym_DOT] = ACTIONS(582), - [sym_integer_literal] = ACTIONS(580), - [aux_sym_string_literal_token1] = ACTIONS(580), - [sym_char_literal] = ACTIONS(580), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(582), - [sym_super] = ACTIONS(582), - [sym_crate] = ACTIONS(582), - [sym_metavariable] = ACTIONS(580), - [sym_raw_string_literal] = ACTIONS(580), - [sym_float_literal] = ACTIONS(580), - [sym_block_comment] = ACTIONS(3), - }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(584), - [sym_identifier] = ACTIONS(586), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_macro_rules_BANG] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(584), - [anon_sym_u8] = ACTIONS(586), - [anon_sym_i8] = ACTIONS(586), - [anon_sym_u16] = ACTIONS(586), - [anon_sym_i16] = ACTIONS(586), - [anon_sym_u32] = ACTIONS(586), - [anon_sym_i32] = ACTIONS(586), - [anon_sym_u64] = ACTIONS(586), - [anon_sym_i64] = ACTIONS(586), - [anon_sym_u128] = ACTIONS(586), - [anon_sym_i128] = ACTIONS(586), - [anon_sym_isize] = ACTIONS(586), - [anon_sym_usize] = ACTIONS(586), - [anon_sym_f32] = ACTIONS(586), - [anon_sym_f64] = ACTIONS(586), - [anon_sym_bool] = ACTIONS(586), - [anon_sym_str] = ACTIONS(586), - [anon_sym_char] = ACTIONS(586), - [anon_sym_SQUOTE] = ACTIONS(586), - [anon_sym_as] = ACTIONS(586), - [anon_sym_async] = ACTIONS(586), - [anon_sym_break] = ACTIONS(586), - [anon_sym_const] = ACTIONS(586), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_default] = ACTIONS(586), - [anon_sym_enum] = ACTIONS(586), - [anon_sym_fn] = ACTIONS(586), - [anon_sym_for] = ACTIONS(586), - [anon_sym_if] = ACTIONS(586), - [anon_sym_impl] = ACTIONS(586), - [anon_sym_let] = ACTIONS(586), - [anon_sym_loop] = ACTIONS(586), - [anon_sym_match] = ACTIONS(586), - [anon_sym_mod] = ACTIONS(586), - [anon_sym_pub] = ACTIONS(586), - [anon_sym_return] = ACTIONS(586), - [anon_sym_static] = ACTIONS(586), - [anon_sym_struct] = ACTIONS(586), - [anon_sym_trait] = ACTIONS(586), - [anon_sym_type] = ACTIONS(586), - [anon_sym_union] = ACTIONS(586), - [anon_sym_unsafe] = ACTIONS(586), - [anon_sym_use] = ACTIONS(586), - [anon_sym_while] = ACTIONS(586), - [anon_sym_POUND] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_extern] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_COLON_COLON] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(584), - [anon_sym_DASH_EQ] = ACTIONS(584), - [anon_sym_STAR_EQ] = ACTIONS(584), - [anon_sym_SLASH_EQ] = ACTIONS(584), - [anon_sym_PERCENT_EQ] = ACTIONS(584), - [anon_sym_AMP_EQ] = ACTIONS(584), - [anon_sym_PIPE_EQ] = ACTIONS(584), - [anon_sym_CARET_EQ] = ACTIONS(584), - [anon_sym_LT_LT_EQ] = ACTIONS(584), - [anon_sym_GT_GT_EQ] = ACTIONS(584), - [anon_sym_move] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [sym_integer_literal] = ACTIONS(584), - [aux_sym_string_literal_token1] = ACTIONS(584), - [sym_char_literal] = ACTIONS(584), - [anon_sym_true] = ACTIONS(586), - [anon_sym_false] = ACTIONS(586), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(586), - [sym_super] = ACTIONS(586), - [sym_crate] = ACTIONS(586), - [sym_metavariable] = ACTIONS(584), - [sym_raw_string_literal] = ACTIONS(584), - [sym_float_literal] = ACTIONS(584), - [sym_block_comment] = ACTIONS(3), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(588), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_macro_rules_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(588), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_extern] = ACTIONS(590), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_COLON_COLON] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT_EQ] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(590), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(590), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_STAR_EQ] = ACTIONS(588), - [anon_sym_SLASH_EQ] = ACTIONS(588), - [anon_sym_PERCENT_EQ] = ACTIONS(588), - [anon_sym_AMP_EQ] = ACTIONS(588), - [anon_sym_PIPE_EQ] = ACTIONS(588), - [anon_sym_CARET_EQ] = ACTIONS(588), - [anon_sym_LT_LT_EQ] = ACTIONS(588), - [anon_sym_GT_GT_EQ] = ACTIONS(588), - [anon_sym_move] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(588), - [aux_sym_string_literal_token1] = ACTIONS(588), - [sym_char_literal] = ACTIONS(588), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(588), - [sym_raw_string_literal] = ACTIONS(588), - [sym_float_literal] = ACTIONS(588), - [sym_block_comment] = ACTIONS(3), - }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(592), - [sym_identifier] = ACTIONS(594), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_macro_rules_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(594), - [anon_sym_i8] = ACTIONS(594), - [anon_sym_u16] = ACTIONS(594), - [anon_sym_i16] = ACTIONS(594), - [anon_sym_u32] = ACTIONS(594), - [anon_sym_i32] = ACTIONS(594), - [anon_sym_u64] = ACTIONS(594), - [anon_sym_i64] = ACTIONS(594), - [anon_sym_u128] = ACTIONS(594), - [anon_sym_i128] = ACTIONS(594), - [anon_sym_isize] = ACTIONS(594), - [anon_sym_usize] = ACTIONS(594), - [anon_sym_f32] = ACTIONS(594), - [anon_sym_f64] = ACTIONS(594), - [anon_sym_bool] = ACTIONS(594), - [anon_sym_str] = ACTIONS(594), - [anon_sym_char] = ACTIONS(594), - [anon_sym_SQUOTE] = ACTIONS(594), - [anon_sym_as] = ACTIONS(594), - [anon_sym_async] = ACTIONS(594), - [anon_sym_break] = ACTIONS(594), - [anon_sym_const] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(594), - [anon_sym_default] = ACTIONS(594), - [anon_sym_enum] = ACTIONS(594), - [anon_sym_fn] = ACTIONS(594), - [anon_sym_for] = ACTIONS(594), - [anon_sym_if] = ACTIONS(594), - [anon_sym_impl] = ACTIONS(594), - [anon_sym_let] = ACTIONS(594), - [anon_sym_loop] = ACTIONS(594), - [anon_sym_match] = ACTIONS(594), - [anon_sym_mod] = ACTIONS(594), - [anon_sym_pub] = ACTIONS(594), - [anon_sym_return] = ACTIONS(594), - [anon_sym_static] = ACTIONS(594), - [anon_sym_struct] = ACTIONS(594), - [anon_sym_trait] = ACTIONS(594), - [anon_sym_type] = ACTIONS(594), - [anon_sym_union] = ACTIONS(594), - [anon_sym_unsafe] = ACTIONS(594), - [anon_sym_use] = ACTIONS(594), - [anon_sym_while] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(594), - [anon_sym_EQ] = ACTIONS(594), - [anon_sym_extern] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_AMP] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(594), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_move] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(594), - [sym_integer_literal] = ACTIONS(592), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(592), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(594), - [sym_super] = ACTIONS(594), - [sym_crate] = ACTIONS(594), - [sym_metavariable] = ACTIONS(592), - [sym_raw_string_literal] = ACTIONS(592), - [sym_float_literal] = ACTIONS(592), - [sym_block_comment] = ACTIONS(3), - }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(596), - [sym_identifier] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(596), - [anon_sym_macro_rules_BANG] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_RBRACE] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_PLUS] = ACTIONS(598), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(596), - [anon_sym_u8] = ACTIONS(598), - [anon_sym_i8] = ACTIONS(598), - [anon_sym_u16] = ACTIONS(598), - [anon_sym_i16] = ACTIONS(598), - [anon_sym_u32] = ACTIONS(598), - [anon_sym_i32] = ACTIONS(598), - [anon_sym_u64] = ACTIONS(598), - [anon_sym_i64] = ACTIONS(598), - [anon_sym_u128] = ACTIONS(598), - [anon_sym_i128] = ACTIONS(598), - [anon_sym_isize] = ACTIONS(598), - [anon_sym_usize] = ACTIONS(598), - [anon_sym_f32] = ACTIONS(598), - [anon_sym_f64] = ACTIONS(598), - [anon_sym_bool] = ACTIONS(598), - [anon_sym_str] = ACTIONS(598), - [anon_sym_char] = ACTIONS(598), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_as] = ACTIONS(598), - [anon_sym_async] = ACTIONS(598), - [anon_sym_break] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(598), - [anon_sym_default] = ACTIONS(598), - [anon_sym_enum] = ACTIONS(598), - [anon_sym_fn] = ACTIONS(598), - [anon_sym_for] = ACTIONS(598), - [anon_sym_if] = ACTIONS(598), - [anon_sym_impl] = ACTIONS(598), - [anon_sym_let] = ACTIONS(598), - [anon_sym_loop] = ACTIONS(598), - [anon_sym_match] = ACTIONS(598), - [anon_sym_mod] = ACTIONS(598), - [anon_sym_pub] = ACTIONS(598), - [anon_sym_return] = ACTIONS(598), - [anon_sym_static] = ACTIONS(598), - [anon_sym_struct] = ACTIONS(598), - [anon_sym_trait] = ACTIONS(598), - [anon_sym_type] = ACTIONS(598), - [anon_sym_union] = ACTIONS(598), - [anon_sym_unsafe] = ACTIONS(598), - [anon_sym_use] = ACTIONS(598), - [anon_sym_while] = ACTIONS(598), - [anon_sym_POUND] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(598), - [anon_sym_extern] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_COLON_COLON] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT] = ACTIONS(598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_CARET] = ACTIONS(598), - [anon_sym_EQ_EQ] = ACTIONS(596), - [anon_sym_BANG_EQ] = ACTIONS(596), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_LT_LT] = ACTIONS(598), - [anon_sym_GT_GT] = ACTIONS(598), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_PERCENT] = ACTIONS(598), - [anon_sym_PLUS_EQ] = ACTIONS(596), - [anon_sym_DASH_EQ] = ACTIONS(596), - [anon_sym_STAR_EQ] = ACTIONS(596), - [anon_sym_SLASH_EQ] = ACTIONS(596), - [anon_sym_PERCENT_EQ] = ACTIONS(596), - [anon_sym_AMP_EQ] = ACTIONS(596), - [anon_sym_PIPE_EQ] = ACTIONS(596), - [anon_sym_CARET_EQ] = ACTIONS(596), - [anon_sym_LT_LT_EQ] = ACTIONS(596), - [anon_sym_GT_GT_EQ] = ACTIONS(596), - [anon_sym_move] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(598), - [sym_integer_literal] = ACTIONS(596), - [aux_sym_string_literal_token1] = ACTIONS(596), - [sym_char_literal] = ACTIONS(596), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(598), - [sym_super] = ACTIONS(598), - [sym_crate] = ACTIONS(598), - [sym_metavariable] = ACTIONS(596), - [sym_raw_string_literal] = ACTIONS(596), - [sym_float_literal] = ACTIONS(596), - [sym_block_comment] = ACTIONS(3), - }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(600), - [anon_sym_macro_rules_BANG] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(602), - [anon_sym_i8] = ACTIONS(602), - [anon_sym_u16] = ACTIONS(602), - [anon_sym_i16] = ACTIONS(602), - [anon_sym_u32] = ACTIONS(602), - [anon_sym_i32] = ACTIONS(602), - [anon_sym_u64] = ACTIONS(602), - [anon_sym_i64] = ACTIONS(602), - [anon_sym_u128] = ACTIONS(602), - [anon_sym_i128] = ACTIONS(602), - [anon_sym_isize] = ACTIONS(602), - [anon_sym_usize] = ACTIONS(602), - [anon_sym_f32] = ACTIONS(602), - [anon_sym_f64] = ACTIONS(602), - [anon_sym_bool] = ACTIONS(602), - [anon_sym_str] = ACTIONS(602), - [anon_sym_char] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(602), - [anon_sym_as] = ACTIONS(602), - [anon_sym_async] = ACTIONS(602), - [anon_sym_break] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_default] = ACTIONS(602), - [anon_sym_enum] = ACTIONS(602), - [anon_sym_fn] = ACTIONS(602), - [anon_sym_for] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_impl] = ACTIONS(602), - [anon_sym_let] = ACTIONS(602), - [anon_sym_loop] = ACTIONS(602), - [anon_sym_match] = ACTIONS(602), - [anon_sym_mod] = ACTIONS(602), - [anon_sym_pub] = ACTIONS(602), - [anon_sym_return] = ACTIONS(602), - [anon_sym_static] = ACTIONS(602), - [anon_sym_struct] = ACTIONS(602), - [anon_sym_trait] = ACTIONS(602), - [anon_sym_type] = ACTIONS(602), - [anon_sym_union] = ACTIONS(602), - [anon_sym_unsafe] = ACTIONS(602), - [anon_sym_use] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_extern] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [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_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_move] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [sym_integer_literal] = ACTIONS(600), - [aux_sym_string_literal_token1] = ACTIONS(600), - [sym_char_literal] = ACTIONS(600), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(602), - [sym_super] = ACTIONS(602), - [sym_crate] = ACTIONS(602), - [sym_metavariable] = ACTIONS(600), - [sym_raw_string_literal] = ACTIONS(600), - [sym_float_literal] = ACTIONS(600), + [62] = { + [ts_builtin_sym_end] = ACTIONS(566), + [sym_identifier] = ACTIONS(568), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_macro_rules_BANG] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u128] = ACTIONS(568), + [anon_sym_i128] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_str] = ACTIONS(568), + [anon_sym_char] = ACTIONS(568), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_as] = ACTIONS(568), + [anon_sym_async] = ACTIONS(568), + [anon_sym_break] = ACTIONS(568), + [anon_sym_const] = ACTIONS(568), + [anon_sym_continue] = ACTIONS(568), + [anon_sym_default] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(568), + [anon_sym_fn] = ACTIONS(568), + [anon_sym_for] = ACTIONS(568), + [anon_sym_if] = ACTIONS(568), + [anon_sym_impl] = ACTIONS(568), + [anon_sym_let] = ACTIONS(568), + [anon_sym_loop] = ACTIONS(568), + [anon_sym_match] = ACTIONS(568), + [anon_sym_mod] = ACTIONS(568), + [anon_sym_pub] = ACTIONS(568), + [anon_sym_return] = ACTIONS(568), + [anon_sym_static] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(568), + [anon_sym_trait] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), + [anon_sym_union] = ACTIONS(568), + [anon_sym_unsafe] = ACTIONS(568), + [anon_sym_use] = ACTIONS(568), + [anon_sym_while] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(566), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_extern] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_move] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(566), + [aux_sym_string_literal_token1] = ACTIONS(566), + [sym_char_literal] = ACTIONS(566), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(568), + [sym_super] = ACTIONS(568), + [sym_crate] = ACTIONS(568), + [sym_metavariable] = ACTIONS(566), + [sym_raw_string_literal] = ACTIONS(566), + [sym_float_literal] = ACTIONS(566), [sym_block_comment] = ACTIONS(3), }, - [71] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1110), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_tuple_expression_repeat1] = STATE(63), + [63] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1179), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_tuple_expression_repeat1] = STATE(52), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(604), + [anon_sym_RPAREN] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -22645,156 +21315,1100 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [64] = { + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_macro_rules_BANG] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u128] = ACTIONS(572), + [anon_sym_i128] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_str] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_as] = ACTIONS(572), + [anon_sym_async] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(572), + [anon_sym_fn] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_impl] = ACTIONS(572), + [anon_sym_let] = ACTIONS(572), + [anon_sym_loop] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_mod] = ACTIONS(572), + [anon_sym_pub] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_static] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_trait] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_union] = ACTIONS(572), + [anon_sym_unsafe] = ACTIONS(572), + [anon_sym_use] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_extern] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_move] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(572), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_crate] = ACTIONS(572), + [sym_metavariable] = ACTIONS(570), + [sym_raw_string_literal] = ACTIONS(570), + [sym_float_literal] = ACTIONS(570), + [sym_block_comment] = ACTIONS(3), + }, + [65] = { + [ts_builtin_sym_end] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_macro_rules_BANG] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(576), + [anon_sym_i8] = ACTIONS(576), + [anon_sym_u16] = ACTIONS(576), + [anon_sym_i16] = ACTIONS(576), + [anon_sym_u32] = ACTIONS(576), + [anon_sym_i32] = ACTIONS(576), + [anon_sym_u64] = ACTIONS(576), + [anon_sym_i64] = ACTIONS(576), + [anon_sym_u128] = ACTIONS(576), + [anon_sym_i128] = ACTIONS(576), + [anon_sym_isize] = ACTIONS(576), + [anon_sym_usize] = ACTIONS(576), + [anon_sym_f32] = ACTIONS(576), + [anon_sym_f64] = ACTIONS(576), + [anon_sym_bool] = ACTIONS(576), + [anon_sym_str] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(576), + [anon_sym_as] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_break] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(576), + [anon_sym_fn] = ACTIONS(576), + [anon_sym_for] = ACTIONS(576), + [anon_sym_if] = ACTIONS(576), + [anon_sym_impl] = ACTIONS(576), + [anon_sym_let] = ACTIONS(576), + [anon_sym_loop] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_mod] = ACTIONS(576), + [anon_sym_pub] = ACTIONS(576), + [anon_sym_return] = ACTIONS(576), + [anon_sym_static] = ACTIONS(576), + [anon_sym_struct] = ACTIONS(576), + [anon_sym_trait] = ACTIONS(576), + [anon_sym_type] = ACTIONS(576), + [anon_sym_union] = ACTIONS(576), + [anon_sym_unsafe] = ACTIONS(576), + [anon_sym_use] = ACTIONS(576), + [anon_sym_while] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_extern] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_move] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(576), + [sym_integer_literal] = ACTIONS(574), + [aux_sym_string_literal_token1] = ACTIONS(574), + [sym_char_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_crate] = ACTIONS(576), + [sym_metavariable] = ACTIONS(574), + [sym_raw_string_literal] = ACTIONS(574), + [sym_float_literal] = ACTIONS(574), + [sym_block_comment] = ACTIONS(3), + }, + [66] = { + [ts_builtin_sym_end] = ACTIONS(578), + [sym_identifier] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(578), + [anon_sym_macro_rules_BANG] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_async] = ACTIONS(580), + [anon_sym_break] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(580), + [anon_sym_for] = ACTIONS(580), + [anon_sym_if] = ACTIONS(580), + [anon_sym_impl] = ACTIONS(580), + [anon_sym_let] = ACTIONS(580), + [anon_sym_loop] = ACTIONS(580), + [anon_sym_match] = ACTIONS(580), + [anon_sym_mod] = ACTIONS(580), + [anon_sym_pub] = ACTIONS(580), + [anon_sym_return] = ACTIONS(580), + [anon_sym_static] = ACTIONS(580), + [anon_sym_struct] = ACTIONS(580), + [anon_sym_trait] = ACTIONS(580), + [anon_sym_type] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_unsafe] = ACTIONS(580), + [anon_sym_use] = ACTIONS(580), + [anon_sym_while] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_extern] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_STAR_EQ] = ACTIONS(578), + [anon_sym_SLASH_EQ] = ACTIONS(578), + [anon_sym_PERCENT_EQ] = ACTIONS(578), + [anon_sym_AMP_EQ] = ACTIONS(578), + [anon_sym_PIPE_EQ] = ACTIONS(578), + [anon_sym_CARET_EQ] = ACTIONS(578), + [anon_sym_LT_LT_EQ] = ACTIONS(578), + [anon_sym_GT_GT_EQ] = ACTIONS(578), + [anon_sym_move] = ACTIONS(580), + [anon_sym_DOT] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(578), + [sym_raw_string_literal] = ACTIONS(578), + [sym_float_literal] = ACTIONS(578), + [sym_block_comment] = ACTIONS(3), + }, + [67] = { + [ts_builtin_sym_end] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(582), + [anon_sym_macro_rules_BANG] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_STAR] = ACTIONS(584), + [anon_sym_QMARK] = ACTIONS(582), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [anon_sym_POUND] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_extern] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_COLON_COLON] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(584), + [anon_sym_DOT_DOT_EQ] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_AMP_AMP] = ACTIONS(582), + [anon_sym_PIPE_PIPE] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(584), + [anon_sym_CARET] = ACTIONS(584), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(582), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_PLUS_EQ] = ACTIONS(582), + [anon_sym_DASH_EQ] = ACTIONS(582), + [anon_sym_STAR_EQ] = ACTIONS(582), + [anon_sym_SLASH_EQ] = ACTIONS(582), + [anon_sym_PERCENT_EQ] = ACTIONS(582), + [anon_sym_AMP_EQ] = ACTIONS(582), + [anon_sym_PIPE_EQ] = ACTIONS(582), + [anon_sym_CARET_EQ] = ACTIONS(582), + [anon_sym_LT_LT_EQ] = ACTIONS(582), + [anon_sym_GT_GT_EQ] = ACTIONS(582), + [anon_sym_move] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(582), + [aux_sym_string_literal_token1] = ACTIONS(582), + [sym_char_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(584), + [anon_sym_false] = ACTIONS(584), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_metavariable] = ACTIONS(582), + [sym_raw_string_literal] = ACTIONS(582), + [sym_float_literal] = ACTIONS(582), + [sym_block_comment] = ACTIONS(3), + }, + [68] = { + [ts_builtin_sym_end] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_macro_rules_BANG] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(588), + [anon_sym_i8] = ACTIONS(588), + [anon_sym_u16] = ACTIONS(588), + [anon_sym_i16] = ACTIONS(588), + [anon_sym_u32] = ACTIONS(588), + [anon_sym_i32] = ACTIONS(588), + [anon_sym_u64] = ACTIONS(588), + [anon_sym_i64] = ACTIONS(588), + [anon_sym_u128] = ACTIONS(588), + [anon_sym_i128] = ACTIONS(588), + [anon_sym_isize] = ACTIONS(588), + [anon_sym_usize] = ACTIONS(588), + [anon_sym_f32] = ACTIONS(588), + [anon_sym_f64] = ACTIONS(588), + [anon_sym_bool] = ACTIONS(588), + [anon_sym_str] = ACTIONS(588), + [anon_sym_char] = ACTIONS(588), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_as] = ACTIONS(588), + [anon_sym_async] = ACTIONS(588), + [anon_sym_break] = ACTIONS(588), + [anon_sym_const] = ACTIONS(588), + [anon_sym_continue] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_enum] = ACTIONS(588), + [anon_sym_fn] = ACTIONS(588), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(588), + [anon_sym_impl] = ACTIONS(588), + [anon_sym_let] = ACTIONS(588), + [anon_sym_loop] = ACTIONS(588), + [anon_sym_match] = ACTIONS(588), + [anon_sym_mod] = ACTIONS(588), + [anon_sym_pub] = ACTIONS(588), + [anon_sym_return] = ACTIONS(588), + [anon_sym_static] = ACTIONS(588), + [anon_sym_struct] = ACTIONS(588), + [anon_sym_trait] = ACTIONS(588), + [anon_sym_type] = ACTIONS(588), + [anon_sym_union] = ACTIONS(588), + [anon_sym_unsafe] = ACTIONS(588), + [anon_sym_use] = ACTIONS(588), + [anon_sym_while] = ACTIONS(588), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(588), + [anon_sym_extern] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_GT] = ACTIONS(588), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(588), + [anon_sym_PERCENT] = ACTIONS(588), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_move] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(588), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(586), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(588), + [anon_sym_false] = ACTIONS(588), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(588), + [sym_super] = ACTIONS(588), + [sym_crate] = ACTIONS(588), + [sym_metavariable] = ACTIONS(586), + [sym_raw_string_literal] = ACTIONS(586), + [sym_float_literal] = ACTIONS(586), + [sym_block_comment] = ACTIONS(3), + }, + [69] = { + [ts_builtin_sym_end] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_macro_rules_BANG] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_QMARK] = ACTIONS(590), + [anon_sym_u8] = ACTIONS(592), + [anon_sym_i8] = ACTIONS(592), + [anon_sym_u16] = ACTIONS(592), + [anon_sym_i16] = ACTIONS(592), + [anon_sym_u32] = ACTIONS(592), + [anon_sym_i32] = ACTIONS(592), + [anon_sym_u64] = ACTIONS(592), + [anon_sym_i64] = ACTIONS(592), + [anon_sym_u128] = ACTIONS(592), + [anon_sym_i128] = ACTIONS(592), + [anon_sym_isize] = ACTIONS(592), + [anon_sym_usize] = ACTIONS(592), + [anon_sym_f32] = ACTIONS(592), + [anon_sym_f64] = ACTIONS(592), + [anon_sym_bool] = ACTIONS(592), + [anon_sym_str] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_as] = ACTIONS(592), + [anon_sym_async] = ACTIONS(592), + [anon_sym_break] = ACTIONS(592), + [anon_sym_const] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(592), + [anon_sym_fn] = ACTIONS(592), + [anon_sym_for] = ACTIONS(592), + [anon_sym_if] = ACTIONS(592), + [anon_sym_impl] = ACTIONS(592), + [anon_sym_let] = ACTIONS(592), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(592), + [anon_sym_mod] = ACTIONS(592), + [anon_sym_pub] = ACTIONS(592), + [anon_sym_return] = ACTIONS(592), + [anon_sym_static] = ACTIONS(592), + [anon_sym_struct] = ACTIONS(592), + [anon_sym_trait] = ACTIONS(592), + [anon_sym_type] = ACTIONS(592), + [anon_sym_union] = ACTIONS(592), + [anon_sym_unsafe] = ACTIONS(592), + [anon_sym_use] = ACTIONS(592), + [anon_sym_while] = ACTIONS(592), + [anon_sym_POUND] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_extern] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_COLON_COLON] = ACTIONS(590), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(590), + [anon_sym_DOT_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT_EQ] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(590), + [anon_sym_PIPE_PIPE] = ACTIONS(590), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_PLUS_EQ] = ACTIONS(590), + [anon_sym_DASH_EQ] = ACTIONS(590), + [anon_sym_STAR_EQ] = ACTIONS(590), + [anon_sym_SLASH_EQ] = ACTIONS(590), + [anon_sym_PERCENT_EQ] = ACTIONS(590), + [anon_sym_AMP_EQ] = ACTIONS(590), + [anon_sym_PIPE_EQ] = ACTIONS(590), + [anon_sym_CARET_EQ] = ACTIONS(590), + [anon_sym_LT_LT_EQ] = ACTIONS(590), + [anon_sym_GT_GT_EQ] = ACTIONS(590), + [anon_sym_move] = ACTIONS(592), + [anon_sym_DOT] = ACTIONS(592), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(590), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(592), + [anon_sym_false] = ACTIONS(592), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(592), + [sym_super] = ACTIONS(592), + [sym_crate] = ACTIONS(592), + [sym_metavariable] = ACTIONS(590), + [sym_raw_string_literal] = ACTIONS(590), + [sym_float_literal] = ACTIONS(590), + [sym_block_comment] = ACTIONS(3), + }, + [70] = { + [ts_builtin_sym_end] = ACTIONS(594), + [sym_identifier] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_macro_rules_BANG] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_u8] = ACTIONS(596), + [anon_sym_i8] = ACTIONS(596), + [anon_sym_u16] = ACTIONS(596), + [anon_sym_i16] = ACTIONS(596), + [anon_sym_u32] = ACTIONS(596), + [anon_sym_i32] = ACTIONS(596), + [anon_sym_u64] = ACTIONS(596), + [anon_sym_i64] = ACTIONS(596), + [anon_sym_u128] = ACTIONS(596), + [anon_sym_i128] = ACTIONS(596), + [anon_sym_isize] = ACTIONS(596), + [anon_sym_usize] = ACTIONS(596), + [anon_sym_f32] = ACTIONS(596), + [anon_sym_f64] = ACTIONS(596), + [anon_sym_bool] = ACTIONS(596), + [anon_sym_str] = ACTIONS(596), + [anon_sym_char] = ACTIONS(596), + [anon_sym_SQUOTE] = ACTIONS(596), + [anon_sym_as] = ACTIONS(596), + [anon_sym_async] = ACTIONS(596), + [anon_sym_break] = ACTIONS(596), + [anon_sym_const] = ACTIONS(596), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_default] = ACTIONS(596), + [anon_sym_enum] = ACTIONS(596), + [anon_sym_fn] = ACTIONS(596), + [anon_sym_for] = ACTIONS(596), + [anon_sym_if] = ACTIONS(596), + [anon_sym_impl] = ACTIONS(596), + [anon_sym_let] = ACTIONS(596), + [anon_sym_loop] = ACTIONS(596), + [anon_sym_match] = ACTIONS(596), + [anon_sym_mod] = ACTIONS(596), + [anon_sym_pub] = ACTIONS(596), + [anon_sym_return] = ACTIONS(596), + [anon_sym_static] = ACTIONS(596), + [anon_sym_struct] = ACTIONS(596), + [anon_sym_trait] = ACTIONS(596), + [anon_sym_type] = ACTIONS(596), + [anon_sym_union] = ACTIONS(596), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_use] = ACTIONS(596), + [anon_sym_while] = ACTIONS(596), + [anon_sym_POUND] = ACTIONS(594), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_extern] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(594), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(594), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_AMP_EQ] = ACTIONS(594), + [anon_sym_PIPE_EQ] = ACTIONS(594), + [anon_sym_CARET_EQ] = ACTIONS(594), + [anon_sym_LT_LT_EQ] = ACTIONS(594), + [anon_sym_GT_GT_EQ] = ACTIONS(594), + [anon_sym_move] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [sym_integer_literal] = ACTIONS(594), + [aux_sym_string_literal_token1] = ACTIONS(594), + [sym_char_literal] = ACTIONS(594), + [anon_sym_true] = ACTIONS(596), + [anon_sym_false] = ACTIONS(596), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(596), + [sym_super] = ACTIONS(596), + [sym_crate] = ACTIONS(596), + [sym_metavariable] = ACTIONS(594), + [sym_raw_string_literal] = ACTIONS(594), + [sym_float_literal] = ACTIONS(594), + [sym_block_comment] = ACTIONS(3), + }, + [71] = { + [ts_builtin_sym_end] = ACTIONS(598), + [sym_identifier] = ACTIONS(600), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_macro_rules_BANG] = ACTIONS(598), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(598), + [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_SQUOTE] = ACTIONS(600), + [anon_sym_as] = ACTIONS(600), + [anon_sym_async] = 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_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_while] = ACTIONS(600), + [anon_sym_POUND] = ACTIONS(598), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_EQ] = ACTIONS(600), + [anon_sym_extern] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT_EQ] = ACTIONS(598), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [anon_sym_PIPE] = ACTIONS(600), + [anon_sym_CARET] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(598), + [anon_sym_BANG_EQ] = ACTIONS(598), + [anon_sym_LT_EQ] = ACTIONS(598), + [anon_sym_GT_EQ] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_SLASH] = ACTIONS(600), + [anon_sym_PERCENT] = ACTIONS(600), + [anon_sym_PLUS_EQ] = ACTIONS(598), + [anon_sym_DASH_EQ] = ACTIONS(598), + [anon_sym_STAR_EQ] = ACTIONS(598), + [anon_sym_SLASH_EQ] = ACTIONS(598), + [anon_sym_PERCENT_EQ] = ACTIONS(598), + [anon_sym_AMP_EQ] = ACTIONS(598), + [anon_sym_PIPE_EQ] = ACTIONS(598), + [anon_sym_CARET_EQ] = ACTIONS(598), + [anon_sym_LT_LT_EQ] = ACTIONS(598), + [anon_sym_GT_GT_EQ] = ACTIONS(598), + [anon_sym_move] = ACTIONS(600), + [anon_sym_DOT] = ACTIONS(600), + [sym_integer_literal] = ACTIONS(598), + [aux_sym_string_literal_token1] = ACTIONS(598), + [sym_char_literal] = ACTIONS(598), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_crate] = ACTIONS(600), + [sym_metavariable] = ACTIONS(598), + [sym_raw_string_literal] = ACTIONS(598), + [sym_float_literal] = ACTIONS(598), + [sym_block_comment] = ACTIONS(3), + }, [72] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1110), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_tuple_expression_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(604), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(602), + [sym_identifier] = ACTIONS(604), + [anon_sym_SEMI] = ACTIONS(602), + [anon_sym_macro_rules_BANG] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(604), + [anon_sym_i8] = ACTIONS(604), + [anon_sym_u16] = ACTIONS(604), + [anon_sym_i16] = ACTIONS(604), + [anon_sym_u32] = ACTIONS(604), + [anon_sym_i32] = ACTIONS(604), + [anon_sym_u64] = ACTIONS(604), + [anon_sym_i64] = ACTIONS(604), + [anon_sym_u128] = ACTIONS(604), + [anon_sym_i128] = ACTIONS(604), + [anon_sym_isize] = ACTIONS(604), + [anon_sym_usize] = ACTIONS(604), + [anon_sym_f32] = ACTIONS(604), + [anon_sym_f64] = ACTIONS(604), + [anon_sym_bool] = ACTIONS(604), + [anon_sym_str] = ACTIONS(604), + [anon_sym_char] = ACTIONS(604), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_as] = ACTIONS(604), + [anon_sym_async] = ACTIONS(604), + [anon_sym_break] = ACTIONS(604), + [anon_sym_const] = ACTIONS(604), + [anon_sym_continue] = ACTIONS(604), + [anon_sym_default] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(604), + [anon_sym_fn] = ACTIONS(604), + [anon_sym_for] = ACTIONS(604), + [anon_sym_if] = ACTIONS(604), + [anon_sym_impl] = ACTIONS(604), + [anon_sym_let] = ACTIONS(604), + [anon_sym_loop] = ACTIONS(604), + [anon_sym_match] = ACTIONS(604), + [anon_sym_mod] = ACTIONS(604), + [anon_sym_pub] = ACTIONS(604), + [anon_sym_return] = ACTIONS(604), + [anon_sym_static] = ACTIONS(604), + [anon_sym_struct] = ACTIONS(604), + [anon_sym_trait] = ACTIONS(604), + [anon_sym_type] = ACTIONS(604), + [anon_sym_union] = ACTIONS(604), + [anon_sym_unsafe] = ACTIONS(604), + [anon_sym_use] = ACTIONS(604), + [anon_sym_while] = ACTIONS(604), + [anon_sym_POUND] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_EQ] = ACTIONS(604), + [anon_sym_extern] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(604), + [anon_sym_GT] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT_DOT] = ACTIONS(602), + [anon_sym_DOT_DOT] = ACTIONS(604), + [anon_sym_DOT_DOT_EQ] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(604), + [anon_sym_CARET] = ACTIONS(604), + [anon_sym_EQ_EQ] = ACTIONS(602), + [anon_sym_BANG_EQ] = ACTIONS(602), + [anon_sym_LT_EQ] = ACTIONS(602), + [anon_sym_GT_EQ] = ACTIONS(602), + [anon_sym_LT_LT] = ACTIONS(604), + [anon_sym_GT_GT] = ACTIONS(604), + [anon_sym_SLASH] = ACTIONS(604), + [anon_sym_PERCENT] = ACTIONS(604), + [anon_sym_PLUS_EQ] = ACTIONS(602), + [anon_sym_DASH_EQ] = ACTIONS(602), + [anon_sym_STAR_EQ] = ACTIONS(602), + [anon_sym_SLASH_EQ] = ACTIONS(602), + [anon_sym_PERCENT_EQ] = ACTIONS(602), + [anon_sym_AMP_EQ] = ACTIONS(602), + [anon_sym_PIPE_EQ] = ACTIONS(602), + [anon_sym_CARET_EQ] = ACTIONS(602), + [anon_sym_LT_LT_EQ] = ACTIONS(602), + [anon_sym_GT_GT_EQ] = ACTIONS(602), + [anon_sym_move] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(604), + [sym_integer_literal] = ACTIONS(602), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(602), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(604), + [sym_super] = ACTIONS(604), + [sym_crate] = ACTIONS(604), + [sym_metavariable] = ACTIONS(602), + [sym_raw_string_literal] = ACTIONS(602), + [sym_float_literal] = ACTIONS(602), [sym_block_comment] = ACTIONS(3), }, [73] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_macro_rules_BANG] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(548), + [anon_sym_u8] = ACTIONS(546), + [anon_sym_i8] = ACTIONS(546), + [anon_sym_u16] = ACTIONS(546), + [anon_sym_i16] = ACTIONS(546), + [anon_sym_u32] = ACTIONS(546), + [anon_sym_i32] = ACTIONS(546), + [anon_sym_u64] = ACTIONS(546), + [anon_sym_i64] = ACTIONS(546), + [anon_sym_u128] = ACTIONS(546), + [anon_sym_i128] = ACTIONS(546), + [anon_sym_isize] = ACTIONS(546), + [anon_sym_usize] = ACTIONS(546), + [anon_sym_f32] = ACTIONS(546), + [anon_sym_f64] = ACTIONS(546), + [anon_sym_bool] = ACTIONS(546), + [anon_sym_str] = ACTIONS(546), + [anon_sym_char] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(546), + [anon_sym_as] = ACTIONS(550), + [anon_sym_async] = ACTIONS(546), + [anon_sym_break] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_default] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(546), + [anon_sym_fn] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_impl] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_loop] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_mod] = ACTIONS(546), + [anon_sym_pub] = ACTIONS(546), + [anon_sym_return] = ACTIONS(546), + [anon_sym_static] = ACTIONS(546), + [anon_sym_struct] = ACTIONS(546), + [anon_sym_trait] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_union] = ACTIONS(546), + [anon_sym_unsafe] = ACTIONS(546), + [anon_sym_use] = ACTIONS(546), + [anon_sym_while] = ACTIONS(546), + [anon_sym_POUND] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(548), + [anon_sym_DOT_DOT] = ACTIONS(550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_PLUS_EQ] = ACTIONS(548), + [anon_sym_DASH_EQ] = ACTIONS(548), + [anon_sym_STAR_EQ] = ACTIONS(548), + [anon_sym_SLASH_EQ] = ACTIONS(548), + [anon_sym_PERCENT_EQ] = ACTIONS(548), + [anon_sym_AMP_EQ] = ACTIONS(548), + [anon_sym_PIPE_EQ] = ACTIONS(548), + [anon_sym_CARET_EQ] = ACTIONS(548), + [anon_sym_LT_LT_EQ] = ACTIONS(548), + [anon_sym_GT_GT_EQ] = ACTIONS(548), + [anon_sym_move] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(550), + [sym_integer_literal] = ACTIONS(544), + [aux_sym_string_literal_token1] = ACTIONS(544), + [sym_char_literal] = ACTIONS(544), + [anon_sym_true] = ACTIONS(546), + [anon_sym_false] = ACTIONS(546), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(546), + [sym_super] = ACTIONS(546), + [sym_crate] = ACTIONS(546), + [sym_metavariable] = ACTIONS(544), + [sym_raw_string_literal] = ACTIONS(544), + [sym_float_literal] = ACTIONS(544), + [sym_block_comment] = ACTIONS(3), + }, + [74] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -22854,155 +22468,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [74] = { - [sym_identifier] = ACTIONS(457), - [anon_sym_SEMI] = ACTIONS(459), - [anon_sym_macro_rules_BANG] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_RBRACE] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_as] = ACTIONS(461), - [anon_sym_async] = ACTIONS(457), - [anon_sym_break] = ACTIONS(457), - [anon_sym_const] = ACTIONS(457), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_default] = ACTIONS(457), - [anon_sym_enum] = ACTIONS(457), - [anon_sym_fn] = ACTIONS(457), - [anon_sym_for] = ACTIONS(457), - [anon_sym_if] = ACTIONS(457), - [anon_sym_impl] = ACTIONS(457), - [anon_sym_let] = ACTIONS(457), - [anon_sym_loop] = ACTIONS(457), - [anon_sym_match] = ACTIONS(457), - [anon_sym_mod] = ACTIONS(457), - [anon_sym_pub] = ACTIONS(457), - [anon_sym_return] = ACTIONS(457), - [anon_sym_static] = ACTIONS(457), - [anon_sym_struct] = ACTIONS(457), - [anon_sym_trait] = ACTIONS(457), - [anon_sym_type] = ACTIONS(457), - [anon_sym_union] = ACTIONS(457), - [anon_sym_unsafe] = ACTIONS(457), - [anon_sym_use] = ACTIONS(457), - [anon_sym_while] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(455), - [anon_sym_BANG] = ACTIONS(457), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_extern] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_COLON_COLON] = ACTIONS(455), - [anon_sym_AMP] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(459), - [anon_sym_DOT_DOT] = ACTIONS(461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_PIPE_PIPE] = ACTIONS(459), - [anon_sym_PIPE] = ACTIONS(461), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(459), - [anon_sym_BANG_EQ] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_PERCENT] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(459), - [anon_sym_DASH_EQ] = ACTIONS(459), - [anon_sym_STAR_EQ] = ACTIONS(459), - [anon_sym_SLASH_EQ] = ACTIONS(459), - [anon_sym_PERCENT_EQ] = ACTIONS(459), - [anon_sym_AMP_EQ] = ACTIONS(459), - [anon_sym_PIPE_EQ] = ACTIONS(459), - [anon_sym_CARET_EQ] = ACTIONS(459), - [anon_sym_LT_LT_EQ] = ACTIONS(459), - [anon_sym_GT_GT_EQ] = ACTIONS(459), - [anon_sym_move] = ACTIONS(457), - [anon_sym_DOT] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(455), - [aux_sym_string_literal_token1] = ACTIONS(455), - [sym_char_literal] = ACTIONS(455), - [anon_sym_true] = ACTIONS(457), - [anon_sym_false] = ACTIONS(457), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(457), - [sym_crate] = ACTIONS(457), - [sym_metavariable] = ACTIONS(455), - [sym_raw_string_literal] = ACTIONS(455), - [sym_float_literal] = ACTIONS(455), - [sym_block_comment] = ACTIONS(3), - }, [75] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1145), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23033,7 +22543,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(614), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), @@ -23044,6 +22553,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), [anon_sym_AMP] = ACTIONS(610), + [sym_mutable_specifier] = ACTIONS(614), [anon_sym_DOT_DOT] = ACTIONS(612), [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), @@ -23063,50 +22573,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [76] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1189), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1068), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1180), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23137,6 +22647,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(616), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), @@ -23144,12 +22655,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(606), - [anon_sym_DASH_GT] = ACTIONS(616), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), [anon_sym_AMP] = ACTIONS(610), [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(341), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -23167,154 +22677,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [77] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1164), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1175), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_RBRACK] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(618), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [78] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1150), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1100), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23345,7 +22855,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(620), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), @@ -23353,11 +22862,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(606), + [anon_sym_DASH_GT] = ACTIONS(620), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), [anon_sym_AMP] = ACTIONS(610), [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(341), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -23375,50 +22885,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [79] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1168), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23479,154 +22989,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [80] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(624), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [81] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1002), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1092), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1100), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23664,12 +23070,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(620), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(626), [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(303), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), @@ -23686,56 +23092,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [82] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [81] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1175), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(628), + [anon_sym_RBRACK] = ACTIONS(624), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -23790,51 +23196,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1024), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [82] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1167), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23865,6 +23271,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(626), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), @@ -23872,12 +23279,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(606), - [anon_sym_DASH_GT] = ACTIONS(630), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), [anon_sym_AMP] = ACTIONS(610), [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(341), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -23894,51 +23300,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1137), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [83] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1166), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23969,7 +23375,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(632), + [anon_sym_let] = ACTIONS(628), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), @@ -23998,51 +23404,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [84] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1205), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -24073,7 +23479,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(634), + [anon_sym_let] = ACTIONS(630), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), @@ -24102,263 +23508,264 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [86] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1029), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1024), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), + [85] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1130), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(630), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_DASH_GT] = ACTIONS(632), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(303), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(341), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [87] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), + [86] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1161), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(634), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [88] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1070), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1068), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [87] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1175), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(636), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -24392,12 +23799,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(616), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), @@ -24414,56 +23820,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [88] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1112), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(638), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -24500,6 +23905,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), + [sym_mutable_specifier] = ACTIONS(638), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), @@ -24518,51 +23924,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [90] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1197), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [89] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1191), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -24593,6 +23999,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(640), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), @@ -24603,7 +24010,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), [anon_sym_AMP] = ACTIONS(610), - [sym_mutable_specifier] = ACTIONS(640), [anon_sym_DOT_DOT] = ACTIONS(612), [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), @@ -24622,51 +24028,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1158), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [90] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1199), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -24726,51 +24132,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [92] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1117), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [91] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1116), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1130), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -24808,11 +24214,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(632), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(303), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), @@ -24829,154 +24236,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [94] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1146), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [92] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25035,257 +24339,257 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1047), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [93] = { + [sym_attribute_item] = STATE(189), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(1895), + [sym_variadic_parameter] = STATE(1895), + [sym_parameter] = STATE(1895), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1814), + [sym_bracketed_type] = STATE(2455), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2456), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1501), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1728), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(646), + [anon_sym_RPAREN] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(662), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(682), + [anon_sym__] = ACTIONS(684), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(706), + [sym_crate] = ACTIONS(706), + [sym_metavariable] = ACTIONS(708), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [96] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [94] = { + [sym_attribute_item] = STATE(189), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(1895), + [sym_variadic_parameter] = STATE(1895), + [sym_parameter] = STATE(1895), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1814), + [sym_bracketed_type] = STATE(2455), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2456), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1501), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1728), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(646), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(662), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(712), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(682), + [anon_sym__] = ACTIONS(684), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(706), + [sym_crate] = ACTIONS(706), + [sym_metavariable] = ACTIONS(708), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [97] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1193), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [95] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25344,51 +24648,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [98] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1143), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [96] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25447,51 +24751,257 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [97] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [98] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1202), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, [99] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(976), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25551,50 +25061,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [100] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1141), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1164), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25654,50 +25164,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [101] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1195), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25757,50 +25267,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [102] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1144), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1201), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25860,50 +25370,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [103] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(972), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25963,50 +25473,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [104] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(971), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26066,50 +25576,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [105] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(969), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26169,50 +25679,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [106] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(968), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26272,50 +25782,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [107] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(970), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26375,53 +25885,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [108] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1169), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(219), + [sym_if_let_expression] = STATE(219), + [sym_match_expression] = STATE(219), + [sym_while_expression] = STATE(219), + [sym_while_let_expression] = STATE(219), + [sym_loop_expression] = STATE(219), + [sym_for_expression] = STATE(219), + [sym_const_block] = STATE(219), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2497), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(219), + [sym_async_block] = STATE(219), + [sym_block] = STATE(219), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(714), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -26442,19 +25952,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), + [anon_sym_async] = ACTIONS(716), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), + [anon_sym_const] = ACTIONS(718), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), + [anon_sym_for] = ACTIONS(720), + [anon_sym_if] = ACTIONS(722), + [anon_sym_loop] = ACTIONS(724), + [anon_sym_match] = ACTIONS(726), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), + [anon_sym_unsafe] = ACTIONS(728), + [anon_sym_while] = ACTIONS(730), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -26478,50 +25988,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [109] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1182), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26581,53 +26091,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [110] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1138), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(219), + [sym_if_let_expression] = STATE(219), + [sym_match_expression] = STATE(219), + [sym_while_expression] = STATE(219), + [sym_while_let_expression] = STATE(219), + [sym_loop_expression] = STATE(219), + [sym_for_expression] = STATE(219), + [sym_const_block] = STATE(219), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2497), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(219), + [sym_async_block] = STATE(219), + [sym_block] = STATE(219), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(714), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -26648,19 +26158,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), + [anon_sym_async] = ACTIONS(716), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), + [anon_sym_const] = ACTIONS(718), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), + [anon_sym_for] = ACTIONS(720), + [anon_sym_if] = ACTIONS(722), + [anon_sym_loop] = ACTIONS(724), + [anon_sym_match] = ACTIONS(726), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), + [anon_sym_unsafe] = ACTIONS(728), + [anon_sym_while] = ACTIONS(730), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -26684,50 +26194,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [111] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(761), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1257), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26787,153 +26297,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [112] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1161), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [113] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(999), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26992,51 +26399,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [113] = { + [sym_attribute_item] = STATE(189), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(1895), + [sym_variadic_parameter] = STATE(1895), + [sym_parameter] = STATE(1895), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1814), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2289), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(742), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(746), + [anon_sym__] = ACTIONS(748), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(752), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), + [sym_block_comment] = ACTIONS(3), + }, [114] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1199), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1051), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -27096,50 +26606,153 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [115] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(995), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [116] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1047), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -27198,54 +26811,157 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1190), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(221), - [sym_if_let_expression] = STATE(221), - [sym_match_expression] = STATE(221), - [sym_while_expression] = STATE(221), - [sym_while_let_expression] = STATE(221), - [sym_loop_expression] = STATE(221), - [sym_for_expression] = STATE(221), - [sym_const_block] = STATE(221), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(221), - [sym_async_block] = STATE(221), - [sym_block] = STATE(221), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [117] = { + [sym_attribute_item] = STATE(189), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(1895), + [sym_variadic_parameter] = STATE(1895), + [sym_parameter] = STATE(1895), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1814), + [sym_bracketed_type] = STATE(2455), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2456), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1501), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1728), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(646), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(662), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(682), + [anon_sym__] = ACTIONS(684), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(706), + [sym_crate] = ACTIONS(706), + [sym_metavariable] = ACTIONS(708), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), + [sym_block_comment] = ACTIONS(3), + }, + [118] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1046), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -27266,19 +26982,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(646), + [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(648), + [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(650), - [anon_sym_if] = ACTIONS(652), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_match] = ACTIONS(656), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(658), - [anon_sym_while] = ACTIONS(660), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -27301,54 +27017,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [117] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1132), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(221), - [sym_if_let_expression] = STATE(221), - [sym_match_expression] = STATE(221), - [sym_while_expression] = STATE(221), - [sym_while_let_expression] = STATE(221), - [sym_loop_expression] = STATE(221), - [sym_for_expression] = STATE(221), - [sym_const_block] = STATE(221), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(221), - [sym_async_block] = STATE(221), - [sym_block] = STATE(221), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [119] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1044), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -27369,19 +27085,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(646), + [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(648), + [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(650), - [anon_sym_if] = ACTIONS(652), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_match] = ACTIONS(656), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(658), - [anon_sym_while] = ACTIONS(660), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -27404,51 +27120,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1214), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [120] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1043), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -27507,51 +27223,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1191), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [121] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1170), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -27610,154 +27326,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1127), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [122] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1207), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [123] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1175), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -27816,154 +27532,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [122] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1119), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [124] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [123] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(994), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [125] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -28022,51 +27738,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1185), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [126] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -28125,154 +27841,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [127] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1040), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1159), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [128] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -28331,51 +28047,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(985), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [129] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -28434,360 +28150,360 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(983), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), + [130] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1185), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), + [131] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1180), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), + [132] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1192), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [133] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -28846,51 +28562,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [134] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -28949,51 +28665,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [133] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1118), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [135] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -29052,51 +28768,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1232), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [136] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(767), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -29155,51 +28871,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1196), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [137] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1037), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -29258,51 +28974,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1130), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [138] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1187), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -29361,363 +29077,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(1978), - [sym_variadic_parameter] = STATE(1978), - [sym_parameter] = STATE(1978), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1723), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(680), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(688), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(702), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(722), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [138] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(1978), - [sym_variadic_parameter] = STATE(1978), - [sym_parameter] = STATE(1978), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1723), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(740), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, [139] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(1978), - [sym_variadic_parameter] = STATE(1978), - [sym_parameter] = STATE(1978), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1723), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(754), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(680), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(688), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(756), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(702), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(722), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [140] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1198), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1250), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(224), + [sym_if_let_expression] = STATE(224), + [sym_match_expression] = STATE(224), + [sym_while_expression] = STATE(224), + [sym_while_let_expression] = STATE(224), + [sym_loop_expression] = STATE(224), + [sym_for_expression] = STATE(224), + [sym_const_block] = STATE(224), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2497), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(224), + [sym_async_block] = STATE(224), + [sym_block] = STATE(224), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(714), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -29738,19 +29145,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), + [anon_sym_async] = ACTIONS(716), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), + [anon_sym_const] = ACTIONS(718), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), + [anon_sym_for] = ACTIONS(720), + [anon_sym_if] = ACTIONS(722), + [anon_sym_loop] = ACTIONS(724), + [anon_sym_match] = ACTIONS(726), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), + [anon_sym_unsafe] = ACTIONS(728), + [anon_sym_while] = ACTIONS(730), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -29773,51 +29180,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1186), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [140] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1034), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -29876,51 +29283,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1205), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [141] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1031), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -29979,51 +29386,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [143] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1156), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [142] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1172), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -30082,54 +29489,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1155), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(228), - [sym_if_let_expression] = STATE(228), - [sym_match_expression] = STATE(228), - [sym_while_expression] = STATE(228), - [sym_while_let_expression] = STATE(228), - [sym_loop_expression] = STATE(228), - [sym_for_expression] = STATE(228), - [sym_const_block] = STATE(228), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(228), - [sym_async_block] = STATE(228), - [sym_block] = STATE(228), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [143] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1021), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -30150,19 +29557,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(646), + [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(648), + [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(650), - [anon_sym_if] = ACTIONS(652), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_match] = ACTIONS(656), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(658), - [anon_sym_while] = ACTIONS(660), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -30185,51 +29592,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1208), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [144] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1020), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -30288,154 +29695,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [145] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [146] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -30494,51 +29901,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1123), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [147] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -30597,51 +30004,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1210), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [148] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -30700,51 +30107,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [149] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(224), + [sym_if_let_expression] = STATE(224), + [sym_match_expression] = STATE(224), + [sym_while_expression] = STATE(224), + [sym_while_let_expression] = STATE(224), + [sym_loop_expression] = STATE(224), + [sym_for_expression] = STATE(224), + [sym_const_block] = STATE(224), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2497), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(224), + [sym_async_block] = STATE(224), + [sym_block] = STATE(224), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(716), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(718), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(720), + [anon_sym_if] = ACTIONS(722), + [anon_sym_loop] = ACTIONS(724), + [anon_sym_match] = ACTIONS(726), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(728), + [anon_sym_while] = ACTIONS(730), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, [150] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1231), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -30804,50 +30314,256 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [151] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1169), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [152] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1157), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [153] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -30906,51 +30622,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1174), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [154] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1176), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -31009,51 +30725,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [155] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -31112,51 +30828,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1227), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [156] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1208), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -31215,51 +30931,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1233), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [157] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -31318,257 +31034,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [158] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(1978), - [sym_variadic_parameter] = STATE(1978), - [sym_parameter] = STATE(1978), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1723), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(680), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(688), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(760), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(702), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(722), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [158] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1172), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [159] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1193), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -31627,51 +31240,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1175), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [160] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [161] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -31730,154 +31446,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1184), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(228), - [sym_if_let_expression] = STATE(228), - [sym_match_expression] = STATE(228), - [sym_while_expression] = STATE(228), - [sym_while_let_expression] = STATE(228), - [sym_loop_expression] = STATE(228), - [sym_for_expression] = STATE(228), - [sym_const_block] = STATE(228), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(228), - [sym_async_block] = STATE(228), - [sym_block] = STATE(228), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(646), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(648), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(650), - [anon_sym_if] = ACTIONS(652), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_match] = ACTIONS(656), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(658), - [anon_sym_while] = ACTIONS(660), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [161] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1183), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [162] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -31936,51 +31549,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [162] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1131), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [163] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -32039,257 +31652,360 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [163] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), + [164] = { + [sym_attribute_item] = STATE(190), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(2039), + [sym_variadic_parameter] = STATE(2039), + [sym_parameter] = STATE(2039), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1760), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2289), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(742), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(746), + [anon_sym__] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(752), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), + [sym_block_comment] = ACTIONS(3), + }, + [165] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), + [166] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [165] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1225), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [167] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1171), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -32348,154 +32064,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1033), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [167] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [168] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -32554,154 +32167,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, [169] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1202), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -32761,50 +32271,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [170] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1162), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1271), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -32864,50 +32374,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [171] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1140), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1188), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -32967,50 +32477,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [172] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -33070,50 +32580,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [173] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -33173,50 +32683,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [174] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(767), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -33276,153 +32786,153 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [175] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1207), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [176] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1178), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -33482,153 +32992,153 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [177] = { - [sym_attribute_item] = STATE(189), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(1994), - [sym_variadic_parameter] = STATE(1994), - [sym_parameter] = STATE(1994), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1764), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(1926), + [sym__expression] = STATE(1077), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(760), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [178] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(761), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -33688,50 +33198,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [179] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1170), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -33791,50 +33301,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [180] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1220), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_bracketed_type] = STATE(2433), + [sym_generic_function] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(2071), + [sym__expression] = STATE(1165), + [sym_macro_invocation] = STATE(1082), + [sym_scoped_identifier] = STATE(1177), + [sym_scoped_type_identifier_in_expression_position] = STATE(2203), + [sym_range_expression] = STATE(1067), + [sym_unary_expression] = STATE(1067), + [sym_try_expression] = STATE(1067), + [sym_reference_expression] = STATE(1067), + [sym_binary_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_compound_assignment_expr] = STATE(1067), + [sym_type_cast_expression] = STATE(1067), + [sym_return_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_array_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_tuple_expression] = STATE(1067), + [sym_unit_expression] = STATE(1067), + [sym_struct_expression] = STATE(1067), + [sym_if_expression] = STATE(1067), + [sym_if_let_expression] = STATE(1067), + [sym_match_expression] = STATE(1067), + [sym_while_expression] = STATE(1067), + [sym_while_let_expression] = STATE(1067), + [sym_loop_expression] = STATE(1067), + [sym_for_expression] = STATE(1067), + [sym_const_block] = STATE(1067), + [sym_closure_expression] = STATE(1067), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2464), + [sym_break_expression] = STATE(1067), + [sym_continue_expression] = STATE(1067), + [sym_index_expression] = STATE(1067), + [sym_await_expression] = STATE(1067), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(1067), + [sym_async_block] = STATE(1067), + [sym_block] = STATE(1067), + [sym__literal] = STATE(1067), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -33894,2471 +33404,2471 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [181] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2086), - [sym_variadic_parameter] = STATE(2086), - [sym_parameter] = STATE(2086), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(2178), + [sym_variadic_parameter] = STATE(2178), + [sym_parameter] = STATE(2178), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1966), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2289), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(742), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(746), [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(752), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [182] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2086), - [sym_variadic_parameter] = STATE(2086), - [sym_parameter] = STATE(2086), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(2178), + [sym_variadic_parameter] = STATE(2178), + [sym_parameter] = STATE(2178), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1966), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2289), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(742), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(746), [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(752), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [183] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2086), - [sym_variadic_parameter] = STATE(2086), - [sym_parameter] = STATE(2086), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(2178), + [sym_variadic_parameter] = STATE(2178), + [sym_parameter] = STATE(2178), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1966), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2289), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), [anon_sym_RPAREN] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(742), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(746), [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(752), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [184] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2086), - [sym_variadic_parameter] = STATE(2086), - [sym_parameter] = STATE(2086), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(2178), + [sym_variadic_parameter] = STATE(2178), + [sym_parameter] = STATE(2178), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1966), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2289), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(742), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(746), [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(752), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [185] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2086), - [sym_variadic_parameter] = STATE(2086), - [sym_parameter] = STATE(2086), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(2178), + [sym_variadic_parameter] = STATE(2178), + [sym_parameter] = STATE(2178), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1966), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2289), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), [anon_sym_RPAREN] = ACTIONS(778), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(742), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(746), [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(752), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [186] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2086), - [sym_variadic_parameter] = STATE(2086), - [sym_parameter] = STATE(2086), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(2178), + [sym_variadic_parameter] = STATE(2178), + [sym_parameter] = STATE(2178), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1966), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2289), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), [anon_sym_RPAREN] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(742), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(746), [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(752), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [187] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2086), - [sym_variadic_parameter] = STATE(2086), - [sym_parameter] = STATE(2086), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(2178), + [sym_variadic_parameter] = STATE(2178), + [sym_parameter] = STATE(2178), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1966), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2289), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(742), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(746), [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(752), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [188] = { - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(1857), - [sym_variadic_parameter] = STATE(1857), - [sym_parameter] = STATE(1857), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1697), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(2124), + [sym_variadic_parameter] = STATE(2124), + [sym_parameter] = STATE(2124), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(2049), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2289), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(742), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(746), [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(752), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [189] = { - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2020), - [sym_variadic_parameter] = STATE(2020), - [sym_parameter] = STATE(2020), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1740), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(1840), + [sym_variadic_parameter] = STATE(1840), + [sym_parameter] = STATE(1840), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1826), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2289), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(742), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(746), [anon_sym__] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(752), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [190] = { - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2218), - [sym_variadic_parameter] = STATE(2218), - [sym_parameter] = STATE(2218), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1922), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_self_parameter] = STATE(2085), + [sym_variadic_parameter] = STATE(2085), + [sym_parameter] = STATE(2085), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1745), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(1898), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2289), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(742), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(746), [anon_sym__] = ACTIONS(786), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(752), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [191] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1750), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(790), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1996), + [sym_bracketed_type] = STATE(2458), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2459), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1820), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_RBRACK] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(794), + [anon_sym_i8] = ACTIONS(794), + [anon_sym_u16] = ACTIONS(794), + [anon_sym_i16] = ACTIONS(794), + [anon_sym_u32] = ACTIONS(794), + [anon_sym_i32] = ACTIONS(794), + [anon_sym_u64] = ACTIONS(794), + [anon_sym_i64] = ACTIONS(794), + [anon_sym_u128] = ACTIONS(794), + [anon_sym_i128] = ACTIONS(794), + [anon_sym_isize] = ACTIONS(794), + [anon_sym_usize] = ACTIONS(794), + [anon_sym_f32] = ACTIONS(794), + [anon_sym_f64] = ACTIONS(794), + [anon_sym_bool] = ACTIONS(794), + [anon_sym_str] = ACTIONS(794), + [anon_sym_char] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(796), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(798), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(724), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(802), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(806), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(812), + [sym_super] = ACTIONS(812), + [sym_crate] = ACTIONS(812), + [sym_metavariable] = ACTIONS(814), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [192] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1750), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(790), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1772), + [sym_bracketed_type] = STATE(2455), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2456), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1501), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(646), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(818), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(820), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(724), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(682), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(706), + [sym_super] = ACTIONS(706), + [sym_crate] = ACTIONS(706), + [sym_metavariable] = ACTIONS(708), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [193] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1823), - [sym_bracketed_type] = STATE(2413), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2414), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1475), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1755), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_RBRACK] = ACTIONS(810), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(812), - [anon_sym_i8] = ACTIONS(812), - [anon_sym_u16] = ACTIONS(812), - [anon_sym_i16] = ACTIONS(812), - [anon_sym_u32] = ACTIONS(812), - [anon_sym_i32] = ACTIONS(812), - [anon_sym_u64] = ACTIONS(812), - [anon_sym_i64] = ACTIONS(812), - [anon_sym_u128] = ACTIONS(812), - [anon_sym_i128] = ACTIONS(812), - [anon_sym_isize] = ACTIONS(812), - [anon_sym_usize] = ACTIONS(812), - [anon_sym_f32] = ACTIONS(812), - [anon_sym_f64] = ACTIONS(812), - [anon_sym_bool] = ACTIONS(812), - [anon_sym_str] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(814), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(816), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1772), + [sym_bracketed_type] = STATE(2455), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2456), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1501), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(646), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(818), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(820), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(820), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(822), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(824), - [sym_super] = ACTIONS(824), - [sym_crate] = ACTIONS(824), - [sym_metavariable] = ACTIONS(826), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(682), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(706), + [sym_super] = ACTIONS(706), + [sym_crate] = ACTIONS(706), + [sym_metavariable] = ACTIONS(708), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [194] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1750), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1772), + [sym_bracketed_type] = STATE(2455), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2456), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1501), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(646), [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(790), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(818), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(820), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(724), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(682), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(706), + [sym_super] = ACTIONS(706), + [sym_crate] = ACTIONS(706), + [sym_metavariable] = ACTIONS(708), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [195] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1340), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(548), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(830), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(790), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1367), + [sym_bracketed_type] = STATE(2455), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2456), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1501), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1430), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(818), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(820), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(834), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(682), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(830), + [sym_super] = ACTIONS(706), + [sym_crate] = ACTIONS(706), + [sym_metavariable] = ACTIONS(708), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym_identifier] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(838), - [anon_sym_LPAREN] = ACTIONS(838), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_RBRACE] = ACTIONS(838), - [anon_sym_EQ_GT] = ACTIONS(838), - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_RBRACK] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_QMARK] = ACTIONS(838), - [anon_sym_u8] = ACTIONS(836), - [anon_sym_i8] = ACTIONS(836), - [anon_sym_u16] = ACTIONS(836), - [anon_sym_i16] = ACTIONS(836), - [anon_sym_u32] = ACTIONS(836), - [anon_sym_i32] = ACTIONS(836), - [anon_sym_u64] = ACTIONS(836), - [anon_sym_i64] = ACTIONS(836), - [anon_sym_u128] = ACTIONS(836), - [anon_sym_i128] = ACTIONS(836), - [anon_sym_isize] = ACTIONS(836), - [anon_sym_usize] = ACTIONS(836), - [anon_sym_f32] = ACTIONS(836), - [anon_sym_f64] = ACTIONS(836), - [anon_sym_bool] = ACTIONS(836), - [anon_sym_str] = ACTIONS(836), - [anon_sym_char] = ACTIONS(836), - [anon_sym_SQUOTE] = ACTIONS(836), - [anon_sym_as] = ACTIONS(836), - [anon_sym_async] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_default] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_union] = ACTIONS(836), - [anon_sym_unsafe] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(838), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_COLON_COLON] = ACTIONS(838), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1367), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1430), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(832), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(834), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(746), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(838), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(838), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(838), - [anon_sym_PIPE_PIPE] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(838), - [anon_sym_BANG_EQ] = ACTIONS(838), - [anon_sym_LT_EQ] = ACTIONS(838), - [anon_sym_GT_EQ] = ACTIONS(838), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_PLUS_EQ] = ACTIONS(838), - [anon_sym_DASH_EQ] = ACTIONS(838), - [anon_sym_STAR_EQ] = ACTIONS(838), - [anon_sym_SLASH_EQ] = ACTIONS(838), - [anon_sym_PERCENT_EQ] = ACTIONS(838), - [anon_sym_AMP_EQ] = ACTIONS(838), - [anon_sym_PIPE_EQ] = ACTIONS(838), - [anon_sym_CARET_EQ] = ACTIONS(838), - [anon_sym_LT_LT_EQ] = ACTIONS(838), - [anon_sym_GT_GT_EQ] = ACTIONS(838), - [anon_sym_move] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [sym_integer_literal] = ACTIONS(838), - [aux_sym_string_literal_token1] = ACTIONS(838), - [sym_char_literal] = ACTIONS(838), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(836), - [sym_super] = ACTIONS(836), - [sym_crate] = ACTIONS(836), - [sym_metavariable] = ACTIONS(838), - [sym_raw_string_literal] = ACTIONS(838), - [sym_float_literal] = ACTIONS(838), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(838), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [197] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1340), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(548), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(830), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(840), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(842), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2455), + [sym_lifetime] = STATE(602), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2456), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1501), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1457), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(818), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(820), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(848), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(682), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(706), + [sym_super] = ACTIONS(706), + [sym_crate] = ACTIONS(706), + [sym_metavariable] = ACTIONS(708), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [198] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1340), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(568), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(830), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(840), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(842), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1367), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1430), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(832), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(834), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(750), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(746), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(754), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [199] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1325), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1383), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(790), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1367), + [sym_bracketed_type] = STATE(2455), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2456), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1501), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1430), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(818), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(820), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(724), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(682), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(706), + [sym_super] = ACTIONS(706), + [sym_crate] = ACTIONS(706), + [sym_metavariable] = ACTIONS(708), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [200] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1325), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1383), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(790), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(602), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1457), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(832), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(834), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(852), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(746), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(844), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(754), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [201] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1325), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1383), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(840), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(842), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2452), + [sym_lifetime] = STATE(585), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2453), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1457), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_isize] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_f32] = ACTIONS(738), + [anon_sym_f64] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_str] = ACTIONS(738), + [anon_sym_char] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(832), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(834), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(750), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(746), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(846), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(848), + [sym_super] = ACTIONS(754), + [sym_crate] = ACTIONS(754), + [sym_metavariable] = ACTIONS(756), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [202] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1340), - [sym_bracketed_type] = STATE(2413), - [sym_lifetime] = STATE(568), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2414), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1475), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(812), - [anon_sym_i8] = ACTIONS(812), - [anon_sym_u16] = ACTIONS(812), - [anon_sym_i16] = ACTIONS(812), - [anon_sym_u32] = ACTIONS(812), - [anon_sym_i32] = ACTIONS(812), - [anon_sym_u64] = ACTIONS(812), - [anon_sym_i64] = ACTIONS(812), - [anon_sym_u128] = ACTIONS(812), - [anon_sym_i128] = ACTIONS(812), - [anon_sym_isize] = ACTIONS(812), - [anon_sym_usize] = ACTIONS(812), - [anon_sym_f32] = ACTIONS(812), - [anon_sym_f64] = ACTIONS(812), - [anon_sym_bool] = ACTIONS(812), - [anon_sym_str] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(830), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(814), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(816), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2458), + [sym_lifetime] = STATE(602), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2459), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1457), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(794), + [anon_sym_i8] = ACTIONS(794), + [anon_sym_u16] = ACTIONS(794), + [anon_sym_i16] = ACTIONS(794), + [anon_sym_u32] = ACTIONS(794), + [anon_sym_i32] = ACTIONS(794), + [anon_sym_u64] = ACTIONS(794), + [anon_sym_i64] = ACTIONS(794), + [anon_sym_u128] = ACTIONS(794), + [anon_sym_i128] = ACTIONS(794), + [anon_sym_isize] = ACTIONS(794), + [anon_sym_usize] = ACTIONS(794), + [anon_sym_f32] = ACTIONS(794), + [anon_sym_f64] = ACTIONS(794), + [anon_sym_bool] = ACTIONS(794), + [anon_sym_str] = ACTIONS(794), + [anon_sym_char] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(796), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(798), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(820), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(822), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(824), - [sym_super] = ACTIONS(824), - [sym_crate] = ACTIONS(824), - [sym_metavariable] = ACTIONS(826), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(802), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(806), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(812), + [sym_super] = ACTIONS(812), + [sym_crate] = ACTIONS(812), + [sym_metavariable] = ACTIONS(814), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [203] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1325), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1383), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(840), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(842), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(856), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_identifier] = ACTIONS(852), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_EQ_GT] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_RBRACK] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u128] = ACTIONS(852), + [anon_sym_i128] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_str] = ACTIONS(852), + [anon_sym_char] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_as] = ACTIONS(852), + [anon_sym_async] = ACTIONS(852), + [anon_sym_break] = ACTIONS(852), + [anon_sym_const] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_default] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_loop] = ACTIONS(852), + [anon_sym_match] = ACTIONS(852), + [anon_sym_return] = ACTIONS(852), + [anon_sym_union] = ACTIONS(852), + [anon_sym_unsafe] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_COMMA] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_COLON_COLON] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_PIPE_PIPE] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(854), + [anon_sym_BANG_EQ] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(854), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(852), + [anon_sym_PLUS_EQ] = ACTIONS(854), + [anon_sym_DASH_EQ] = ACTIONS(854), + [anon_sym_STAR_EQ] = ACTIONS(854), + [anon_sym_SLASH_EQ] = ACTIONS(854), + [anon_sym_PERCENT_EQ] = ACTIONS(854), + [anon_sym_AMP_EQ] = ACTIONS(854), + [anon_sym_PIPE_EQ] = ACTIONS(854), + [anon_sym_CARET_EQ] = ACTIONS(854), + [anon_sym_LT_LT_EQ] = ACTIONS(854), + [anon_sym_GT_GT_EQ] = ACTIONS(854), + [anon_sym_move] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(852), + [sym_integer_literal] = ACTIONS(854), + [aux_sym_string_literal_token1] = ACTIONS(854), + [sym_char_literal] = ACTIONS(854), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(852), + [sym_super] = ACTIONS(852), + [sym_crate] = ACTIONS(852), + [sym_metavariable] = ACTIONS(854), + [sym_raw_string_literal] = ACTIONS(854), + [sym_float_literal] = ACTIONS(854), [sym_block_comment] = ACTIONS(3), }, [204] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1325), - [sym_bracketed_type] = STATE(2413), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2414), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1475), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1383), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(812), - [anon_sym_i8] = ACTIONS(812), - [anon_sym_u16] = ACTIONS(812), - [anon_sym_i16] = ACTIONS(812), - [anon_sym_u32] = ACTIONS(812), - [anon_sym_i32] = ACTIONS(812), - [anon_sym_u64] = ACTIONS(812), - [anon_sym_i64] = ACTIONS(812), - [anon_sym_u128] = ACTIONS(812), - [anon_sym_i128] = ACTIONS(812), - [anon_sym_isize] = ACTIONS(812), - [anon_sym_usize] = ACTIONS(812), - [anon_sym_f32] = ACTIONS(812), - [anon_sym_f64] = ACTIONS(812), - [anon_sym_bool] = ACTIONS(812), - [anon_sym_str] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(814), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(816), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1367), + [sym_bracketed_type] = STATE(2458), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2459), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1430), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(794), + [anon_sym_i8] = ACTIONS(794), + [anon_sym_u16] = ACTIONS(794), + [anon_sym_i16] = ACTIONS(794), + [anon_sym_u32] = ACTIONS(794), + [anon_sym_i32] = ACTIONS(794), + [anon_sym_u64] = ACTIONS(794), + [anon_sym_i64] = ACTIONS(794), + [anon_sym_u128] = ACTIONS(794), + [anon_sym_i128] = ACTIONS(794), + [anon_sym_isize] = ACTIONS(794), + [anon_sym_usize] = ACTIONS(794), + [anon_sym_f32] = ACTIONS(794), + [anon_sym_f64] = ACTIONS(794), + [anon_sym_bool] = ACTIONS(794), + [anon_sym_str] = ACTIONS(794), + [anon_sym_char] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(796), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(798), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(820), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(822), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(824), - [sym_super] = ACTIONS(824), - [sym_crate] = ACTIONS(824), - [sym_metavariable] = ACTIONS(826), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(802), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(806), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(812), + [sym_super] = ACTIONS(812), + [sym_crate] = ACTIONS(812), + [sym_metavariable] = ACTIONS(814), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [205] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1340), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(568), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(830), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(790), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2455), + [sym_lifetime] = STATE(585), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2456), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1501), + [sym_scoped_type_identifier] = STATE(1471), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1457), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(660), + [anon_sym_default] = ACTIONS(818), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(820), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(724), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(682), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(856), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(858), + [sym_super] = ACTIONS(706), + [sym_crate] = ACTIONS(706), + [sym_metavariable] = ACTIONS(708), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [206] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1393), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1461), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), [sym_identifier] = ACTIONS(860), [anon_sym_LPAREN] = ACTIONS(862), [anon_sym_LBRACE] = ACTIONS(862), @@ -36396,13 +35906,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(860), [anon_sym_while] = ACTIONS(860), [anon_sym_BANG] = ACTIONS(862), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_ref] = ACTIONS(680), [anon_sym_DASH_GT] = ACTIONS(862), [anon_sym_LT] = ACTIONS(862), [anon_sym_COLON_COLON] = ACTIONS(862), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(862), - [sym_mutable_specifier] = ACTIONS(800), + [sym_mutable_specifier] = ACTIONS(808), [anon_sym_DOT_DOT] = ACTIONS(862), [anon_sym_DASH] = ACTIONS(860), [anon_sym_PIPE] = ACTIONS(862), @@ -36422,251 +35932,170 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [207] = { - [sym_else_clause] = STATE(227), - [sym_identifier] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(383), - [anon_sym_u8] = ACTIONS(385), - [anon_sym_i8] = ACTIONS(385), - [anon_sym_u16] = ACTIONS(385), - [anon_sym_i16] = ACTIONS(385), - [anon_sym_u32] = ACTIONS(385), - [anon_sym_i32] = ACTIONS(385), - [anon_sym_u64] = ACTIONS(385), - [anon_sym_i64] = ACTIONS(385), - [anon_sym_u128] = ACTIONS(385), - [anon_sym_i128] = ACTIONS(385), - [anon_sym_isize] = ACTIONS(385), - [anon_sym_usize] = ACTIONS(385), - [anon_sym_f32] = ACTIONS(385), - [anon_sym_f64] = ACTIONS(385), - [anon_sym_bool] = ACTIONS(385), - [anon_sym_str] = ACTIONS(385), - [anon_sym_char] = ACTIONS(385), - [anon_sym_as] = ACTIONS(385), - [anon_sym_const] = ACTIONS(385), - [anon_sym_default] = ACTIONS(385), - [anon_sym_union] = ACTIONS(385), - [anon_sym_POUND] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_COMMA] = ACTIONS(383), - [anon_sym_ref] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_COLON_COLON] = ACTIONS(383), - [anon_sym__] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(383), - [sym_mutable_specifier] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_AMP_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(383), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(383), - [anon_sym_BANG_EQ] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), + [sym_else_clause] = STATE(231), + [sym_identifier] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RBRACE] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(375), + [anon_sym_i8] = ACTIONS(375), + [anon_sym_u16] = ACTIONS(375), + [anon_sym_i16] = ACTIONS(375), + [anon_sym_u32] = ACTIONS(375), + [anon_sym_i32] = ACTIONS(375), + [anon_sym_u64] = ACTIONS(375), + [anon_sym_i64] = ACTIONS(375), + [anon_sym_u128] = ACTIONS(375), + [anon_sym_i128] = ACTIONS(375), + [anon_sym_isize] = ACTIONS(375), + [anon_sym_usize] = ACTIONS(375), + [anon_sym_f32] = ACTIONS(375), + [anon_sym_f64] = ACTIONS(375), + [anon_sym_bool] = ACTIONS(375), + [anon_sym_str] = ACTIONS(375), + [anon_sym_char] = ACTIONS(375), + [anon_sym_as] = ACTIONS(375), + [anon_sym_const] = ACTIONS(375), + [anon_sym_default] = ACTIONS(375), + [anon_sym_union] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(373), + [anon_sym_ref] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(373), + [anon_sym__] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [sym_mutable_specifier] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), [anon_sym_else] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(385), - [sym_integer_literal] = ACTIONS(383), - [aux_sym_string_literal_token1] = ACTIONS(383), - [sym_char_literal] = ACTIONS(383), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(375), + [sym_integer_literal] = ACTIONS(373), + [aux_sym_string_literal_token1] = ACTIONS(373), + [sym_char_literal] = ACTIONS(373), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(385), - [sym_super] = ACTIONS(385), - [sym_crate] = ACTIONS(385), - [sym_metavariable] = ACTIONS(383), - [sym_raw_string_literal] = ACTIONS(383), - [sym_float_literal] = ACTIONS(383), + [sym_self] = ACTIONS(375), + [sym_super] = ACTIONS(375), + [sym_crate] = ACTIONS(375), + [sym_metavariable] = ACTIONS(373), + [sym_raw_string_literal] = ACTIONS(373), + [sym_float_literal] = ACTIONS(373), [sym_block_comment] = ACTIONS(3), }, [208] = { - [sym_else_clause] = STATE(225), - [sym_identifier] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_RBRACE] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(377), - [anon_sym_i8] = ACTIONS(377), - [anon_sym_u16] = ACTIONS(377), - [anon_sym_i16] = ACTIONS(377), - [anon_sym_u32] = ACTIONS(377), - [anon_sym_i32] = ACTIONS(377), - [anon_sym_u64] = ACTIONS(377), - [anon_sym_i64] = ACTIONS(377), - [anon_sym_u128] = ACTIONS(377), - [anon_sym_i128] = ACTIONS(377), - [anon_sym_isize] = ACTIONS(377), - [anon_sym_usize] = ACTIONS(377), - [anon_sym_f32] = ACTIONS(377), - [anon_sym_f64] = ACTIONS(377), - [anon_sym_bool] = ACTIONS(377), - [anon_sym_str] = ACTIONS(377), - [anon_sym_char] = ACTIONS(377), - [anon_sym_as] = ACTIONS(377), - [anon_sym_const] = ACTIONS(377), - [anon_sym_default] = ACTIONS(377), - [anon_sym_union] = ACTIONS(377), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_COMMA] = ACTIONS(375), - [anon_sym_ref] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_COLON_COLON] = ACTIONS(375), - [anon_sym__] = ACTIONS(377), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [sym_mutable_specifier] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), + [sym_else_clause] = STATE(213), + [sym_identifier] = ACTIONS(383), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u8] = ACTIONS(383), + [anon_sym_i8] = ACTIONS(383), + [anon_sym_u16] = ACTIONS(383), + [anon_sym_i16] = ACTIONS(383), + [anon_sym_u32] = ACTIONS(383), + [anon_sym_i32] = ACTIONS(383), + [anon_sym_u64] = ACTIONS(383), + [anon_sym_i64] = ACTIONS(383), + [anon_sym_u128] = ACTIONS(383), + [anon_sym_i128] = ACTIONS(383), + [anon_sym_isize] = ACTIONS(383), + [anon_sym_usize] = ACTIONS(383), + [anon_sym_f32] = ACTIONS(383), + [anon_sym_f64] = ACTIONS(383), + [anon_sym_bool] = ACTIONS(383), + [anon_sym_str] = ACTIONS(383), + [anon_sym_char] = ACTIONS(383), + [anon_sym_as] = ACTIONS(383), + [anon_sym_const] = ACTIONS(383), + [anon_sym_default] = ACTIONS(383), + [anon_sym_union] = ACTIONS(383), + [anon_sym_POUND] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_ref] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(381), + [anon_sym__] = ACTIONS(383), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [sym_mutable_specifier] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), [anon_sym_else] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(377), - [sym_integer_literal] = ACTIONS(375), - [aux_sym_string_literal_token1] = ACTIONS(375), - [sym_char_literal] = ACTIONS(375), - [anon_sym_true] = ACTIONS(377), - [anon_sym_false] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(381), + [aux_sym_string_literal_token1] = ACTIONS(381), + [sym_char_literal] = ACTIONS(381), + [anon_sym_true] = ACTIONS(383), + [anon_sym_false] = ACTIONS(383), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(377), - [sym_super] = ACTIONS(377), - [sym_crate] = ACTIONS(377), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(375), - [sym_float_literal] = ACTIONS(375), + [sym_self] = ACTIONS(383), + [sym_super] = ACTIONS(383), + [sym_crate] = ACTIONS(383), + [sym_metavariable] = ACTIONS(381), + [sym_raw_string_literal] = ACTIONS(381), + [sym_float_literal] = ACTIONS(381), [sym_block_comment] = ACTIONS(3), }, [209] = { - [sym_identifier] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_u8] = ACTIONS(391), - [anon_sym_i8] = ACTIONS(391), - [anon_sym_u16] = ACTIONS(391), - [anon_sym_i16] = ACTIONS(391), - [anon_sym_u32] = ACTIONS(391), - [anon_sym_i32] = ACTIONS(391), - [anon_sym_u64] = ACTIONS(391), - [anon_sym_i64] = ACTIONS(391), - [anon_sym_u128] = ACTIONS(391), - [anon_sym_i128] = ACTIONS(391), - [anon_sym_isize] = ACTIONS(391), - [anon_sym_usize] = ACTIONS(391), - [anon_sym_f32] = ACTIONS(391), - [anon_sym_f64] = ACTIONS(391), - [anon_sym_bool] = ACTIONS(391), - [anon_sym_str] = ACTIONS(391), - [anon_sym_char] = ACTIONS(391), - [anon_sym_as] = ACTIONS(391), - [anon_sym_const] = ACTIONS(391), - [anon_sym_default] = ACTIONS(391), - [anon_sym_union] = ACTIONS(391), - [anon_sym_POUND] = ACTIONS(389), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_COMMA] = ACTIONS(389), - [anon_sym_ref] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym__] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_DOT_DOT_DOT] = ACTIONS(389), - [sym_mutable_specifier] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_CARET] = ACTIONS(391), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_PERCENT] = ACTIONS(391), - [anon_sym_PLUS_EQ] = ACTIONS(389), - [anon_sym_DASH_EQ] = ACTIONS(389), - [anon_sym_STAR_EQ] = ACTIONS(389), - [anon_sym_SLASH_EQ] = ACTIONS(389), - [anon_sym_PERCENT_EQ] = ACTIONS(389), - [anon_sym_AMP_EQ] = ACTIONS(389), - [anon_sym_PIPE_EQ] = ACTIONS(389), - [anon_sym_CARET_EQ] = ACTIONS(389), - [anon_sym_LT_LT_EQ] = ACTIONS(389), - [anon_sym_GT_GT_EQ] = ACTIONS(389), - [anon_sym_else] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(391), - [sym_integer_literal] = ACTIONS(389), - [aux_sym_string_literal_token1] = ACTIONS(389), - [sym_char_literal] = ACTIONS(389), - [anon_sym_true] = ACTIONS(391), - [anon_sym_false] = ACTIONS(391), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(391), - [sym_super] = ACTIONS(391), - [sym_crate] = ACTIONS(391), - [sym_metavariable] = ACTIONS(389), - [sym_raw_string_literal] = ACTIONS(389), - [sym_float_literal] = ACTIONS(389), - [sym_block_comment] = ACTIONS(3), - }, - [210] = { [sym_identifier] = ACTIONS(399), [anon_sym_LPAREN] = ACTIONS(397), [anon_sym_RBRACE] = ACTIONS(397), @@ -36747,7 +36176,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(397), [sym_block_comment] = ACTIONS(3), }, - [211] = { + [210] = { [sym_identifier] = ACTIONS(395), [anon_sym_LPAREN] = ACTIONS(393), [anon_sym_RBRACE] = ACTIONS(393), @@ -36828,487 +36257,168 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(393), [sym_block_comment] = ACTIONS(3), }, - [212] = { - [sym_identifier] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_u8] = ACTIONS(441), - [anon_sym_i8] = ACTIONS(441), - [anon_sym_u16] = ACTIONS(441), - [anon_sym_i16] = ACTIONS(441), - [anon_sym_u32] = ACTIONS(441), - [anon_sym_i32] = ACTIONS(441), - [anon_sym_u64] = ACTIONS(441), - [anon_sym_i64] = ACTIONS(441), - [anon_sym_u128] = ACTIONS(441), - [anon_sym_i128] = ACTIONS(441), - [anon_sym_isize] = ACTIONS(441), - [anon_sym_usize] = ACTIONS(441), - [anon_sym_f32] = ACTIONS(441), - [anon_sym_f64] = ACTIONS(441), - [anon_sym_bool] = ACTIONS(441), - [anon_sym_str] = ACTIONS(441), - [anon_sym_char] = ACTIONS(441), - [anon_sym_as] = ACTIONS(441), - [anon_sym_const] = ACTIONS(441), - [anon_sym_default] = ACTIONS(441), - [anon_sym_union] = ACTIONS(441), - [anon_sym_POUND] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(439), - [anon_sym_ref] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(441), - [anon_sym_COLON_COLON] = ACTIONS(439), - [anon_sym__] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [sym_mutable_specifier] = ACTIONS(441), - [anon_sym_DOT_DOT] = ACTIONS(441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_EQ_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT_GT] = ACTIONS(441), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_AMP_EQ] = ACTIONS(439), - [anon_sym_PIPE_EQ] = ACTIONS(439), - [anon_sym_CARET_EQ] = ACTIONS(439), - [anon_sym_LT_LT_EQ] = ACTIONS(439), - [anon_sym_GT_GT_EQ] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(441), - [sym_integer_literal] = ACTIONS(439), - [aux_sym_string_literal_token1] = ACTIONS(439), - [sym_char_literal] = ACTIONS(439), - [anon_sym_true] = ACTIONS(441), - [anon_sym_false] = ACTIONS(441), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(441), - [sym_crate] = ACTIONS(441), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(439), - [sym_float_literal] = ACTIONS(439), - [sym_block_comment] = ACTIONS(3), - }, - [213] = { - [sym_identifier] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(582), - [anon_sym_i8] = ACTIONS(582), - [anon_sym_u16] = ACTIONS(582), - [anon_sym_i16] = ACTIONS(582), - [anon_sym_u32] = ACTIONS(582), - [anon_sym_i32] = ACTIONS(582), - [anon_sym_u64] = ACTIONS(582), - [anon_sym_i64] = ACTIONS(582), - [anon_sym_u128] = ACTIONS(582), - [anon_sym_i128] = ACTIONS(582), - [anon_sym_isize] = ACTIONS(582), - [anon_sym_usize] = ACTIONS(582), - [anon_sym_f32] = ACTIONS(582), - [anon_sym_f64] = ACTIONS(582), - [anon_sym_bool] = ACTIONS(582), - [anon_sym_str] = ACTIONS(582), - [anon_sym_char] = ACTIONS(582), - [anon_sym_as] = ACTIONS(582), - [anon_sym_const] = ACTIONS(582), - [anon_sym_default] = ACTIONS(582), - [anon_sym_union] = ACTIONS(582), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(580), - [anon_sym_ref] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(582), - [anon_sym_COLON_COLON] = ACTIONS(580), - [anon_sym__] = ACTIONS(582), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_DOT_DOT_DOT] = ACTIONS(580), - [sym_mutable_specifier] = ACTIONS(582), - [anon_sym_DOT_DOT] = ACTIONS(582), - [anon_sym_DOT_DOT_EQ] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_AMP_AMP] = ACTIONS(580), - [anon_sym_PIPE_PIPE] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_EQ_EQ] = ACTIONS(580), - [anon_sym_BANG_EQ] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_GT_GT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_PLUS_EQ] = ACTIONS(580), - [anon_sym_DASH_EQ] = ACTIONS(580), - [anon_sym_STAR_EQ] = ACTIONS(580), - [anon_sym_SLASH_EQ] = ACTIONS(580), - [anon_sym_PERCENT_EQ] = ACTIONS(580), - [anon_sym_AMP_EQ] = ACTIONS(580), - [anon_sym_PIPE_EQ] = ACTIONS(580), - [anon_sym_CARET_EQ] = ACTIONS(580), - [anon_sym_LT_LT_EQ] = ACTIONS(580), - [anon_sym_GT_GT_EQ] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [sym_integer_literal] = ACTIONS(580), - [aux_sym_string_literal_token1] = ACTIONS(580), - [sym_char_literal] = ACTIONS(580), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(582), - [sym_super] = ACTIONS(582), - [sym_crate] = ACTIONS(582), - [sym_metavariable] = ACTIONS(580), - [sym_raw_string_literal] = ACTIONS(580), - [sym_float_literal] = ACTIONS(580), - [sym_block_comment] = ACTIONS(3), - }, - [214] = { - [sym_identifier] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(588), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_ref] = ACTIONS(590), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_COLON_COLON] = ACTIONS(588), - [anon_sym__] = ACTIONS(590), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(588), - [sym_mutable_specifier] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT_EQ] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(590), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(590), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_STAR_EQ] = ACTIONS(588), - [anon_sym_SLASH_EQ] = ACTIONS(588), - [anon_sym_PERCENT_EQ] = ACTIONS(588), - [anon_sym_AMP_EQ] = ACTIONS(588), - [anon_sym_PIPE_EQ] = ACTIONS(588), - [anon_sym_CARET_EQ] = ACTIONS(588), - [anon_sym_LT_LT_EQ] = ACTIONS(588), - [anon_sym_GT_GT_EQ] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(588), - [aux_sym_string_literal_token1] = ACTIONS(588), - [sym_char_literal] = ACTIONS(588), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(588), - [sym_raw_string_literal] = ACTIONS(588), - [sym_float_literal] = ACTIONS(588), - [sym_block_comment] = ACTIONS(3), - }, - [215] = { - [sym_identifier] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(602), - [anon_sym_i8] = ACTIONS(602), - [anon_sym_u16] = ACTIONS(602), - [anon_sym_i16] = ACTIONS(602), - [anon_sym_u32] = ACTIONS(602), - [anon_sym_i32] = ACTIONS(602), - [anon_sym_u64] = ACTIONS(602), - [anon_sym_i64] = ACTIONS(602), - [anon_sym_u128] = ACTIONS(602), - [anon_sym_i128] = ACTIONS(602), - [anon_sym_isize] = ACTIONS(602), - [anon_sym_usize] = ACTIONS(602), - [anon_sym_f32] = ACTIONS(602), - [anon_sym_f64] = ACTIONS(602), - [anon_sym_bool] = ACTIONS(602), - [anon_sym_str] = ACTIONS(602), - [anon_sym_char] = ACTIONS(602), - [anon_sym_as] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_default] = ACTIONS(602), - [anon_sym_union] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_ref] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym__] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [sym_mutable_specifier] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [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_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(602), - [sym_integer_literal] = ACTIONS(600), - [aux_sym_string_literal_token1] = ACTIONS(600), - [sym_char_literal] = ACTIONS(600), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(602), - [sym_super] = ACTIONS(602), - [sym_crate] = ACTIONS(602), - [sym_metavariable] = ACTIONS(600), - [sym_raw_string_literal] = ACTIONS(600), - [sym_float_literal] = ACTIONS(600), - [sym_block_comment] = ACTIONS(3), - }, - [216] = { - [sym_identifier] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(423), - [anon_sym_RBRACE] = ACTIONS(423), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_PLUS] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(423), - [anon_sym_u8] = ACTIONS(425), - [anon_sym_i8] = ACTIONS(425), - [anon_sym_u16] = ACTIONS(425), - [anon_sym_i16] = ACTIONS(425), - [anon_sym_u32] = ACTIONS(425), - [anon_sym_i32] = ACTIONS(425), - [anon_sym_u64] = ACTIONS(425), - [anon_sym_i64] = ACTIONS(425), - [anon_sym_u128] = ACTIONS(425), - [anon_sym_i128] = ACTIONS(425), - [anon_sym_isize] = ACTIONS(425), - [anon_sym_usize] = ACTIONS(425), - [anon_sym_f32] = ACTIONS(425), - [anon_sym_f64] = ACTIONS(425), - [anon_sym_bool] = ACTIONS(425), - [anon_sym_str] = ACTIONS(425), - [anon_sym_char] = ACTIONS(425), - [anon_sym_as] = ACTIONS(425), - [anon_sym_const] = ACTIONS(425), - [anon_sym_default] = ACTIONS(425), - [anon_sym_union] = ACTIONS(425), - [anon_sym_POUND] = ACTIONS(423), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym_COMMA] = ACTIONS(423), - [anon_sym_ref] = ACTIONS(425), - [anon_sym_LT] = ACTIONS(425), - [anon_sym_GT] = ACTIONS(425), - [anon_sym_COLON_COLON] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_AMP] = ACTIONS(425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(423), - [sym_mutable_specifier] = ACTIONS(425), - [anon_sym_DOT_DOT] = ACTIONS(425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(425), - [anon_sym_AMP_AMP] = ACTIONS(423), - [anon_sym_PIPE_PIPE] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_CARET] = ACTIONS(425), - [anon_sym_EQ_EQ] = ACTIONS(423), - [anon_sym_BANG_EQ] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(425), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_SLASH] = ACTIONS(425), - [anon_sym_PERCENT] = ACTIONS(425), - [anon_sym_PLUS_EQ] = ACTIONS(423), - [anon_sym_DASH_EQ] = ACTIONS(423), - [anon_sym_STAR_EQ] = ACTIONS(423), - [anon_sym_SLASH_EQ] = ACTIONS(423), - [anon_sym_PERCENT_EQ] = ACTIONS(423), - [anon_sym_AMP_EQ] = ACTIONS(423), - [anon_sym_PIPE_EQ] = ACTIONS(423), - [anon_sym_CARET_EQ] = ACTIONS(423), - [anon_sym_LT_LT_EQ] = ACTIONS(423), - [anon_sym_GT_GT_EQ] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(425), - [sym_integer_literal] = ACTIONS(423), - [aux_sym_string_literal_token1] = ACTIONS(423), - [sym_char_literal] = ACTIONS(423), - [anon_sym_true] = ACTIONS(425), - [anon_sym_false] = ACTIONS(425), + [211] = { + [sym_identifier] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(391), + [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_u8] = ACTIONS(391), + [anon_sym_i8] = ACTIONS(391), + [anon_sym_u16] = ACTIONS(391), + [anon_sym_i16] = ACTIONS(391), + [anon_sym_u32] = ACTIONS(391), + [anon_sym_i32] = ACTIONS(391), + [anon_sym_u64] = ACTIONS(391), + [anon_sym_i64] = ACTIONS(391), + [anon_sym_u128] = ACTIONS(391), + [anon_sym_i128] = ACTIONS(391), + [anon_sym_isize] = ACTIONS(391), + [anon_sym_usize] = ACTIONS(391), + [anon_sym_f32] = ACTIONS(391), + [anon_sym_f64] = ACTIONS(391), + [anon_sym_bool] = ACTIONS(391), + [anon_sym_str] = ACTIONS(391), + [anon_sym_char] = ACTIONS(391), + [anon_sym_as] = ACTIONS(391), + [anon_sym_const] = ACTIONS(391), + [anon_sym_default] = ACTIONS(391), + [anon_sym_union] = ACTIONS(391), + [anon_sym_POUND] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(389), + [anon_sym_ref] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym__] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_mutable_specifier] = ACTIONS(391), + [anon_sym_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_else] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(391), + [sym_integer_literal] = ACTIONS(389), + [aux_sym_string_literal_token1] = ACTIONS(389), + [sym_char_literal] = ACTIONS(389), + [anon_sym_true] = ACTIONS(391), + [anon_sym_false] = ACTIONS(391), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(425), - [sym_super] = ACTIONS(425), - [sym_crate] = ACTIONS(425), - [sym_metavariable] = ACTIONS(423), - [sym_raw_string_literal] = ACTIONS(423), - [sym_float_literal] = ACTIONS(423), + [sym_self] = ACTIONS(391), + [sym_super] = ACTIONS(391), + [sym_crate] = ACTIONS(391), + [sym_metavariable] = ACTIONS(389), + [sym_raw_string_literal] = ACTIONS(389), + [sym_float_literal] = ACTIONS(389), [sym_block_comment] = ACTIONS(3), }, - [217] = { - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(403), - [anon_sym_i8] = ACTIONS(403), - [anon_sym_u16] = ACTIONS(403), - [anon_sym_i16] = ACTIONS(403), - [anon_sym_u32] = ACTIONS(403), - [anon_sym_i32] = ACTIONS(403), - [anon_sym_u64] = ACTIONS(403), - [anon_sym_i64] = ACTIONS(403), - [anon_sym_u128] = ACTIONS(403), - [anon_sym_i128] = ACTIONS(403), - [anon_sym_isize] = ACTIONS(403), - [anon_sym_usize] = ACTIONS(403), - [anon_sym_f32] = ACTIONS(403), - [anon_sym_f64] = ACTIONS(403), - [anon_sym_bool] = ACTIONS(403), - [anon_sym_str] = ACTIONS(403), - [anon_sym_char] = ACTIONS(403), - [anon_sym_as] = ACTIONS(403), - [anon_sym_const] = ACTIONS(403), - [anon_sym_default] = ACTIONS(403), - [anon_sym_union] = ACTIONS(403), - [anon_sym_POUND] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(401), - [anon_sym_ref] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym__] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [sym_mutable_specifier] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [sym_integer_literal] = ACTIONS(401), - [aux_sym_string_literal_token1] = ACTIONS(401), - [sym_char_literal] = ACTIONS(401), - [anon_sym_true] = ACTIONS(403), - [anon_sym_false] = ACTIONS(403), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(403), - [sym_super] = ACTIONS(403), - [sym_crate] = ACTIONS(403), - [sym_metavariable] = ACTIONS(401), - [sym_raw_string_literal] = ACTIONS(401), - [sym_float_literal] = ACTIONS(401), + [212] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(2003), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_type_binding] = STATE(2165), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [sym_block] = STATE(2165), + [sym__literal] = STATE(2165), + [sym_string_literal] = STATE(2273), + [sym_boolean_literal] = STATE(2273), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), [sym_block_comment] = ACTIONS(3), }, - [218] = { + [213] = { [sym_identifier] = ACTIONS(407), [anon_sym_LPAREN] = ACTIONS(405), [anon_sym_RBRACE] = ACTIONS(405), @@ -37388,734 +36498,414 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(405), [sym_block_comment] = ACTIONS(3), }, - [219] = { - [sym_identifier] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(435), - [anon_sym_u8] = ACTIONS(437), - [anon_sym_i8] = ACTIONS(437), - [anon_sym_u16] = ACTIONS(437), - [anon_sym_i16] = ACTIONS(437), - [anon_sym_u32] = ACTIONS(437), - [anon_sym_i32] = ACTIONS(437), - [anon_sym_u64] = ACTIONS(437), - [anon_sym_i64] = ACTIONS(437), - [anon_sym_u128] = ACTIONS(437), - [anon_sym_i128] = ACTIONS(437), - [anon_sym_isize] = ACTIONS(437), - [anon_sym_usize] = ACTIONS(437), - [anon_sym_f32] = ACTIONS(437), - [anon_sym_f64] = ACTIONS(437), - [anon_sym_bool] = ACTIONS(437), - [anon_sym_str] = ACTIONS(437), - [anon_sym_char] = ACTIONS(437), - [anon_sym_as] = ACTIONS(437), - [anon_sym_const] = ACTIONS(437), - [anon_sym_default] = ACTIONS(437), - [anon_sym_union] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(435), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(435), - [anon_sym_ref] = ACTIONS(437), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_COLON_COLON] = ACTIONS(435), - [anon_sym__] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(435), - [sym_mutable_specifier] = ACTIONS(437), - [anon_sym_DOT_DOT] = ACTIONS(437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(437), - [anon_sym_AMP_AMP] = ACTIONS(435), - [anon_sym_PIPE_PIPE] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_CARET] = ACTIONS(437), - [anon_sym_EQ_EQ] = ACTIONS(435), - [anon_sym_BANG_EQ] = ACTIONS(435), - [anon_sym_LT_EQ] = ACTIONS(435), - [anon_sym_GT_EQ] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(437), - [anon_sym_GT_GT] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_PLUS_EQ] = ACTIONS(435), - [anon_sym_DASH_EQ] = ACTIONS(435), - [anon_sym_STAR_EQ] = ACTIONS(435), - [anon_sym_SLASH_EQ] = ACTIONS(435), - [anon_sym_PERCENT_EQ] = ACTIONS(435), - [anon_sym_AMP_EQ] = ACTIONS(435), - [anon_sym_PIPE_EQ] = ACTIONS(435), - [anon_sym_CARET_EQ] = ACTIONS(435), - [anon_sym_LT_LT_EQ] = ACTIONS(435), - [anon_sym_GT_GT_EQ] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(437), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(435), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(437), - [anon_sym_false] = ACTIONS(437), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(437), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(435), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - [sym_block_comment] = ACTIONS(3), - }, - [220] = { - [sym_identifier] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(447), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym_QMARK] = ACTIONS(447), - [anon_sym_u8] = ACTIONS(449), - [anon_sym_i8] = ACTIONS(449), - [anon_sym_u16] = ACTIONS(449), - [anon_sym_i16] = ACTIONS(449), - [anon_sym_u32] = ACTIONS(449), - [anon_sym_i32] = ACTIONS(449), - [anon_sym_u64] = ACTIONS(449), - [anon_sym_i64] = ACTIONS(449), - [anon_sym_u128] = ACTIONS(449), - [anon_sym_i128] = ACTIONS(449), - [anon_sym_isize] = ACTIONS(449), - [anon_sym_usize] = ACTIONS(449), - [anon_sym_f32] = ACTIONS(449), - [anon_sym_f64] = ACTIONS(449), - [anon_sym_bool] = ACTIONS(449), - [anon_sym_str] = ACTIONS(449), - [anon_sym_char] = ACTIONS(449), - [anon_sym_as] = ACTIONS(449), - [anon_sym_const] = ACTIONS(449), - [anon_sym_default] = ACTIONS(449), - [anon_sym_union] = ACTIONS(449), - [anon_sym_POUND] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(447), - [anon_sym_ref] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(449), - [anon_sym_COLON_COLON] = ACTIONS(447), - [anon_sym__] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(447), - [sym_mutable_specifier] = ACTIONS(449), - [anon_sym_DOT_DOT] = ACTIONS(449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(447), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(447), - [anon_sym_PIPE] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(447), - [anon_sym_BANG_EQ] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(447), - [anon_sym_GT_EQ] = ACTIONS(447), - [anon_sym_LT_LT] = ACTIONS(449), - [anon_sym_GT_GT] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_PERCENT] = ACTIONS(449), - [anon_sym_PLUS_EQ] = ACTIONS(447), - [anon_sym_DASH_EQ] = ACTIONS(447), - [anon_sym_STAR_EQ] = ACTIONS(447), - [anon_sym_SLASH_EQ] = ACTIONS(447), - [anon_sym_PERCENT_EQ] = ACTIONS(447), - [anon_sym_AMP_EQ] = ACTIONS(447), - [anon_sym_PIPE_EQ] = ACTIONS(447), - [anon_sym_CARET_EQ] = ACTIONS(447), - [anon_sym_LT_LT_EQ] = ACTIONS(447), - [anon_sym_GT_GT_EQ] = ACTIONS(447), - [anon_sym_DOT] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(447), - [aux_sym_string_literal_token1] = ACTIONS(447), - [sym_char_literal] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(449), - [sym_super] = ACTIONS(449), - [sym_crate] = ACTIONS(449), - [sym_metavariable] = ACTIONS(447), - [sym_raw_string_literal] = ACTIONS(447), - [sym_float_literal] = ACTIONS(447), - [sym_block_comment] = ACTIONS(3), - }, - [221] = { + [214] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(2003), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_type_binding] = STATE(2165), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [sym_block] = STATE(2165), + [sym__literal] = STATE(2165), + [sym_string_literal] = STATE(2273), + [sym_boolean_literal] = STATE(2273), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(866), [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(866), - [anon_sym_i8] = ACTIONS(866), - [anon_sym_u16] = ACTIONS(866), - [anon_sym_i16] = ACTIONS(866), - [anon_sym_u32] = ACTIONS(866), - [anon_sym_i32] = ACTIONS(866), - [anon_sym_u64] = ACTIONS(866), - [anon_sym_i64] = ACTIONS(866), - [anon_sym_u128] = ACTIONS(866), - [anon_sym_i128] = ACTIONS(866), - [anon_sym_isize] = ACTIONS(866), - [anon_sym_usize] = ACTIONS(866), - [anon_sym_f32] = ACTIONS(866), - [anon_sym_f64] = ACTIONS(866), - [anon_sym_bool] = ACTIONS(866), - [anon_sym_str] = ACTIONS(866), - [anon_sym_char] = ACTIONS(866), - [anon_sym_as] = ACTIONS(461), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(866), - [anon_sym_union] = ACTIONS(866), - [anon_sym_POUND] = ACTIONS(868), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_COMMA] = ACTIONS(459), - [anon_sym_ref] = ACTIONS(866), - [anon_sym_LT] = ACTIONS(866), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_COLON_COLON] = ACTIONS(868), - [anon_sym__] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(459), - [sym_mutable_specifier] = ACTIONS(866), - [anon_sym_DOT_DOT] = ACTIONS(866), - [anon_sym_DOT_DOT_EQ] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(866), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_PIPE_PIPE] = ACTIONS(459), - [anon_sym_PIPE] = ACTIONS(461), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(459), - [anon_sym_BANG_EQ] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_PERCENT] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(459), - [anon_sym_DASH_EQ] = ACTIONS(459), - [anon_sym_STAR_EQ] = ACTIONS(459), - [anon_sym_SLASH_EQ] = ACTIONS(459), - [anon_sym_PERCENT_EQ] = ACTIONS(459), - [anon_sym_AMP_EQ] = ACTIONS(459), - [anon_sym_PIPE_EQ] = ACTIONS(459), - [anon_sym_CARET_EQ] = ACTIONS(459), - [anon_sym_LT_LT_EQ] = ACTIONS(459), - [anon_sym_GT_GT_EQ] = ACTIONS(459), - [anon_sym_DOT] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(868), - [aux_sym_string_literal_token1] = ACTIONS(868), - [sym_char_literal] = ACTIONS(868), - [anon_sym_true] = ACTIONS(866), - [anon_sym_false] = ACTIONS(866), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(866), - [sym_super] = ACTIONS(866), - [sym_crate] = ACTIONS(866), - [sym_metavariable] = ACTIONS(868), - [sym_raw_string_literal] = ACTIONS(868), - [sym_float_literal] = ACTIONS(868), - [sym_block_comment] = ACTIONS(3), - }, - [222] = { - [sym_identifier] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(594), - [anon_sym_i8] = ACTIONS(594), - [anon_sym_u16] = ACTIONS(594), - [anon_sym_i16] = ACTIONS(594), - [anon_sym_u32] = ACTIONS(594), - [anon_sym_i32] = ACTIONS(594), - [anon_sym_u64] = ACTIONS(594), - [anon_sym_i64] = ACTIONS(594), - [anon_sym_u128] = ACTIONS(594), - [anon_sym_i128] = ACTIONS(594), - [anon_sym_isize] = ACTIONS(594), - [anon_sym_usize] = ACTIONS(594), - [anon_sym_f32] = ACTIONS(594), - [anon_sym_f64] = ACTIONS(594), - [anon_sym_bool] = ACTIONS(594), - [anon_sym_str] = ACTIONS(594), - [anon_sym_char] = ACTIONS(594), - [anon_sym_as] = ACTIONS(594), - [anon_sym_const] = ACTIONS(594), - [anon_sym_default] = ACTIONS(594), - [anon_sym_union] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_ref] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_AMP] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [sym_mutable_specifier] = ACTIONS(594), - [anon_sym_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(594), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(594), - [sym_integer_literal] = ACTIONS(592), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(592), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(594), - [sym_super] = ACTIONS(594), - [sym_crate] = ACTIONS(594), - [sym_metavariable] = ACTIONS(592), - [sym_raw_string_literal] = ACTIONS(592), - [sym_float_literal] = ACTIONS(592), - [sym_block_comment] = ACTIONS(3), - }, - [223] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1967), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2029), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2186), - [sym_boolean_literal] = STATE(2186), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), [sym_block_comment] = ACTIONS(3), }, - [224] = { - [sym_identifier] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_PLUS] = ACTIONS(411), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_QMARK] = ACTIONS(409), - [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_as] = ACTIONS(411), - [anon_sym_const] = ACTIONS(411), - [anon_sym_default] = ACTIONS(411), - [anon_sym_union] = ACTIONS(411), - [anon_sym_POUND] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(411), - [anon_sym_COMMA] = ACTIONS(409), - [anon_sym_ref] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_COLON_COLON] = ACTIONS(409), - [anon_sym__] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(409), - [sym_mutable_specifier] = ACTIONS(411), - [anon_sym_DOT_DOT] = ACTIONS(411), - [anon_sym_DOT_DOT_EQ] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_CARET] = ACTIONS(411), - [anon_sym_EQ_EQ] = ACTIONS(409), - [anon_sym_BANG_EQ] = ACTIONS(409), - [anon_sym_LT_EQ] = ACTIONS(409), - [anon_sym_GT_EQ] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [anon_sym_SLASH] = ACTIONS(411), - [anon_sym_PERCENT] = ACTIONS(411), - [anon_sym_PLUS_EQ] = ACTIONS(409), - [anon_sym_DASH_EQ] = ACTIONS(409), - [anon_sym_STAR_EQ] = ACTIONS(409), - [anon_sym_SLASH_EQ] = ACTIONS(409), - [anon_sym_PERCENT_EQ] = ACTIONS(409), - [anon_sym_AMP_EQ] = ACTIONS(409), - [anon_sym_PIPE_EQ] = ACTIONS(409), - [anon_sym_CARET_EQ] = ACTIONS(409), - [anon_sym_LT_LT_EQ] = ACTIONS(409), - [anon_sym_GT_GT_EQ] = ACTIONS(409), - [anon_sym_DOT] = ACTIONS(411), - [sym_integer_literal] = ACTIONS(409), - [aux_sym_string_literal_token1] = ACTIONS(409), - [sym_char_literal] = ACTIONS(409), - [anon_sym_true] = ACTIONS(411), - [anon_sym_false] = ACTIONS(411), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(411), - [sym_super] = ACTIONS(411), - [sym_crate] = ACTIONS(411), - [sym_metavariable] = ACTIONS(409), - [sym_raw_string_literal] = ACTIONS(409), - [sym_float_literal] = ACTIONS(409), + [215] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(2003), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_type_binding] = STATE(2165), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [sym_block] = STATE(2165), + [sym__literal] = STATE(2165), + [sym_string_literal] = STATE(2273), + [sym_boolean_literal] = STATE(2273), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), [sym_block_comment] = ACTIONS(3), }, - [225] = { - [sym_identifier] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(451), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(451), - [anon_sym_PLUS] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(453), - [anon_sym_i8] = ACTIONS(453), - [anon_sym_u16] = ACTIONS(453), - [anon_sym_i16] = ACTIONS(453), - [anon_sym_u32] = ACTIONS(453), - [anon_sym_i32] = ACTIONS(453), - [anon_sym_u64] = ACTIONS(453), - [anon_sym_i64] = ACTIONS(453), - [anon_sym_u128] = ACTIONS(453), - [anon_sym_i128] = ACTIONS(453), - [anon_sym_isize] = ACTIONS(453), - [anon_sym_usize] = ACTIONS(453), - [anon_sym_f32] = ACTIONS(453), - [anon_sym_f64] = ACTIONS(453), - [anon_sym_bool] = ACTIONS(453), - [anon_sym_str] = ACTIONS(453), - [anon_sym_char] = ACTIONS(453), - [anon_sym_as] = ACTIONS(453), - [anon_sym_const] = ACTIONS(453), - [anon_sym_default] = ACTIONS(453), - [anon_sym_union] = ACTIONS(453), - [anon_sym_POUND] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(453), - [anon_sym_COMMA] = ACTIONS(451), - [anon_sym_ref] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(453), - [anon_sym_COLON_COLON] = ACTIONS(451), - [anon_sym__] = ACTIONS(453), - [anon_sym_AMP] = ACTIONS(453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(451), - [sym_mutable_specifier] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(453), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(453), - [anon_sym_GT_GT] = ACTIONS(453), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_PERCENT] = ACTIONS(453), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), - [anon_sym_STAR_EQ] = ACTIONS(451), - [anon_sym_SLASH_EQ] = ACTIONS(451), - [anon_sym_PERCENT_EQ] = ACTIONS(451), - [anon_sym_AMP_EQ] = ACTIONS(451), - [anon_sym_PIPE_EQ] = ACTIONS(451), - [anon_sym_CARET_EQ] = ACTIONS(451), - [anon_sym_LT_LT_EQ] = ACTIONS(451), - [anon_sym_GT_GT_EQ] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(451), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(453), - [sym_super] = ACTIONS(453), - [sym_crate] = ACTIONS(453), - [sym_metavariable] = ACTIONS(451), - [sym_raw_string_literal] = ACTIONS(451), - [sym_float_literal] = ACTIONS(451), + [216] = { + [sym_identifier] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_QMARK] = ACTIONS(590), + [anon_sym_u8] = ACTIONS(592), + [anon_sym_i8] = ACTIONS(592), + [anon_sym_u16] = ACTIONS(592), + [anon_sym_i16] = ACTIONS(592), + [anon_sym_u32] = ACTIONS(592), + [anon_sym_i32] = ACTIONS(592), + [anon_sym_u64] = ACTIONS(592), + [anon_sym_i64] = ACTIONS(592), + [anon_sym_u128] = ACTIONS(592), + [anon_sym_i128] = ACTIONS(592), + [anon_sym_isize] = ACTIONS(592), + [anon_sym_usize] = ACTIONS(592), + [anon_sym_f32] = ACTIONS(592), + [anon_sym_f64] = ACTIONS(592), + [anon_sym_bool] = ACTIONS(592), + [anon_sym_str] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [anon_sym_as] = ACTIONS(592), + [anon_sym_const] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_union] = ACTIONS(592), + [anon_sym_POUND] = ACTIONS(590), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(590), + [anon_sym_ref] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_COLON_COLON] = ACTIONS(590), + [anon_sym__] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(590), + [sym_mutable_specifier] = ACTIONS(592), + [anon_sym_DOT_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT_EQ] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(590), + [anon_sym_PIPE_PIPE] = ACTIONS(590), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_PLUS_EQ] = ACTIONS(590), + [anon_sym_DASH_EQ] = ACTIONS(590), + [anon_sym_STAR_EQ] = ACTIONS(590), + [anon_sym_SLASH_EQ] = ACTIONS(590), + [anon_sym_PERCENT_EQ] = ACTIONS(590), + [anon_sym_AMP_EQ] = ACTIONS(590), + [anon_sym_PIPE_EQ] = ACTIONS(590), + [anon_sym_CARET_EQ] = ACTIONS(590), + [anon_sym_LT_LT_EQ] = ACTIONS(590), + [anon_sym_GT_GT_EQ] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(592), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(590), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(592), + [anon_sym_false] = ACTIONS(592), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(592), + [sym_super] = ACTIONS(592), + [sym_crate] = ACTIONS(592), + [sym_metavariable] = ACTIONS(590), + [sym_raw_string_literal] = ACTIONS(590), + [sym_float_literal] = ACTIONS(590), [sym_block_comment] = ACTIONS(3), }, - [226] = { - [sym_identifier] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(584), - [anon_sym_u8] = ACTIONS(586), - [anon_sym_i8] = ACTIONS(586), - [anon_sym_u16] = ACTIONS(586), - [anon_sym_i16] = ACTIONS(586), - [anon_sym_u32] = ACTIONS(586), - [anon_sym_i32] = ACTIONS(586), - [anon_sym_u64] = ACTIONS(586), - [anon_sym_i64] = ACTIONS(586), - [anon_sym_u128] = ACTIONS(586), - [anon_sym_i128] = ACTIONS(586), - [anon_sym_isize] = ACTIONS(586), - [anon_sym_usize] = ACTIONS(586), - [anon_sym_f32] = ACTIONS(586), - [anon_sym_f64] = ACTIONS(586), - [anon_sym_bool] = ACTIONS(586), - [anon_sym_str] = ACTIONS(586), - [anon_sym_char] = ACTIONS(586), - [anon_sym_as] = ACTIONS(586), - [anon_sym_const] = ACTIONS(586), - [anon_sym_default] = ACTIONS(586), - [anon_sym_union] = ACTIONS(586), - [anon_sym_POUND] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_ref] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_COLON_COLON] = ACTIONS(584), - [anon_sym__] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [sym_mutable_specifier] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(584), - [anon_sym_DASH_EQ] = ACTIONS(584), - [anon_sym_STAR_EQ] = ACTIONS(584), - [anon_sym_SLASH_EQ] = ACTIONS(584), - [anon_sym_PERCENT_EQ] = ACTIONS(584), - [anon_sym_AMP_EQ] = ACTIONS(584), - [anon_sym_PIPE_EQ] = ACTIONS(584), - [anon_sym_CARET_EQ] = ACTIONS(584), - [anon_sym_LT_LT_EQ] = ACTIONS(584), - [anon_sym_GT_GT_EQ] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(586), - [sym_integer_literal] = ACTIONS(584), - [aux_sym_string_literal_token1] = ACTIONS(584), - [sym_char_literal] = ACTIONS(584), - [anon_sym_true] = ACTIONS(586), - [anon_sym_false] = ACTIONS(586), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(586), - [sym_super] = ACTIONS(586), - [sym_crate] = ACTIONS(586), - [sym_metavariable] = ACTIONS(584), - [sym_raw_string_literal] = ACTIONS(584), - [sym_float_literal] = ACTIONS(584), + [217] = { + [sym_identifier] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u128] = ACTIONS(568), + [anon_sym_i128] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_str] = ACTIONS(568), + [anon_sym_char] = ACTIONS(568), + [anon_sym_as] = ACTIONS(568), + [anon_sym_const] = ACTIONS(568), + [anon_sym_default] = ACTIONS(568), + [anon_sym_union] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_ref] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(566), + [anon_sym__] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [sym_mutable_specifier] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(566), + [aux_sym_string_literal_token1] = ACTIONS(566), + [sym_char_literal] = ACTIONS(566), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(568), + [sym_super] = ACTIONS(568), + [sym_crate] = ACTIONS(568), + [sym_metavariable] = ACTIONS(566), + [sym_raw_string_literal] = ACTIONS(566), + [sym_float_literal] = ACTIONS(566), [sym_block_comment] = ACTIONS(3), }, - [227] = { - [sym_identifier] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_RBRACE] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(479), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(479), - [anon_sym_u8] = ACTIONS(481), - [anon_sym_i8] = ACTIONS(481), - [anon_sym_u16] = ACTIONS(481), - [anon_sym_i16] = ACTIONS(481), - [anon_sym_u32] = ACTIONS(481), - [anon_sym_i32] = ACTIONS(481), - [anon_sym_u64] = ACTIONS(481), - [anon_sym_i64] = ACTIONS(481), - [anon_sym_u128] = ACTIONS(481), - [anon_sym_i128] = ACTIONS(481), - [anon_sym_isize] = ACTIONS(481), - [anon_sym_usize] = ACTIONS(481), - [anon_sym_f32] = ACTIONS(481), - [anon_sym_f64] = ACTIONS(481), - [anon_sym_bool] = ACTIONS(481), - [anon_sym_str] = ACTIONS(481), - [anon_sym_char] = ACTIONS(481), - [anon_sym_as] = ACTIONS(481), - [anon_sym_const] = ACTIONS(481), - [anon_sym_default] = ACTIONS(481), - [anon_sym_union] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(479), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(479), - [anon_sym_ref] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym__] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(479), - [sym_mutable_specifier] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym_EQ_EQ] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(479), - [anon_sym_GT_EQ] = ACTIONS(479), - [anon_sym_LT_LT] = ACTIONS(481), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_PLUS_EQ] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(479), - [anon_sym_STAR_EQ] = ACTIONS(479), - [anon_sym_SLASH_EQ] = ACTIONS(479), - [anon_sym_PERCENT_EQ] = ACTIONS(479), - [anon_sym_AMP_EQ] = ACTIONS(479), - [anon_sym_PIPE_EQ] = ACTIONS(479), - [anon_sym_CARET_EQ] = ACTIONS(479), - [anon_sym_LT_LT_EQ] = ACTIONS(479), - [anon_sym_GT_GT_EQ] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(479), - [aux_sym_string_literal_token1] = ACTIONS(479), - [sym_char_literal] = ACTIONS(479), - [anon_sym_true] = ACTIONS(481), - [anon_sym_false] = ACTIONS(481), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(481), - [sym_super] = ACTIONS(481), - [sym_crate] = ACTIONS(481), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(479), - [sym_float_literal] = ACTIONS(479), + [218] = { + [sym_identifier] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_u8] = ACTIONS(564), + [anon_sym_i8] = ACTIONS(564), + [anon_sym_u16] = ACTIONS(564), + [anon_sym_i16] = ACTIONS(564), + [anon_sym_u32] = ACTIONS(564), + [anon_sym_i32] = ACTIONS(564), + [anon_sym_u64] = ACTIONS(564), + [anon_sym_i64] = ACTIONS(564), + [anon_sym_u128] = ACTIONS(564), + [anon_sym_i128] = ACTIONS(564), + [anon_sym_isize] = ACTIONS(564), + [anon_sym_usize] = ACTIONS(564), + [anon_sym_f32] = ACTIONS(564), + [anon_sym_f64] = ACTIONS(564), + [anon_sym_bool] = ACTIONS(564), + [anon_sym_str] = ACTIONS(564), + [anon_sym_char] = ACTIONS(564), + [anon_sym_as] = ACTIONS(564), + [anon_sym_const] = ACTIONS(564), + [anon_sym_default] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [anon_sym_POUND] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_ref] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_COLON_COLON] = ACTIONS(562), + [anon_sym__] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [sym_mutable_specifier] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_STAR_EQ] = ACTIONS(562), + [anon_sym_SLASH_EQ] = ACTIONS(562), + [anon_sym_PERCENT_EQ] = ACTIONS(562), + [anon_sym_AMP_EQ] = ACTIONS(562), + [anon_sym_PIPE_EQ] = ACTIONS(562), + [anon_sym_CARET_EQ] = ACTIONS(562), + [anon_sym_LT_LT_EQ] = ACTIONS(562), + [anon_sym_GT_GT_EQ] = ACTIONS(562), + [anon_sym_DOT] = ACTIONS(564), + [sym_integer_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(562), + [sym_char_literal] = ACTIONS(562), + [anon_sym_true] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(564), + [sym_super] = ACTIONS(564), + [sym_crate] = ACTIONS(564), + [sym_metavariable] = ACTIONS(562), + [sym_raw_string_literal] = ACTIONS(562), + [sym_float_literal] = ACTIONS(562), [sym_block_comment] = ACTIONS(3), }, - [228] = { + [219] = { [sym_identifier] = ACTIONS(896), [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(548), [anon_sym_LBRACK] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(548), [anon_sym_u8] = ACTIONS(896), [anon_sym_i8] = ACTIONS(896), [anon_sym_u16] = ACTIONS(896), @@ -38133,47 +36923,47 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(896), [anon_sym_str] = ACTIONS(896), [anon_sym_char] = ACTIONS(896), - [anon_sym_as] = ACTIONS(461), + [anon_sym_as] = ACTIONS(550), [anon_sym_const] = ACTIONS(896), [anon_sym_default] = ACTIONS(896), [anon_sym_union] = ACTIONS(896), [anon_sym_POUND] = ACTIONS(898), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_COMMA] = ACTIONS(459), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_COMMA] = ACTIONS(548), [anon_sym_ref] = ACTIONS(896), [anon_sym_LT] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(550), [anon_sym_COLON_COLON] = ACTIONS(898), [anon_sym__] = ACTIONS(896), [anon_sym_AMP] = ACTIONS(896), - [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(548), [sym_mutable_specifier] = ACTIONS(896), [anon_sym_DOT_DOT] = ACTIONS(896), - [anon_sym_DOT_DOT_EQ] = ACTIONS(459), + [anon_sym_DOT_DOT_EQ] = ACTIONS(548), [anon_sym_DASH] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_PIPE_PIPE] = ACTIONS(459), - [anon_sym_PIPE] = ACTIONS(461), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(459), - [anon_sym_BANG_EQ] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_PERCENT] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(459), - [anon_sym_DASH_EQ] = ACTIONS(459), - [anon_sym_STAR_EQ] = ACTIONS(459), - [anon_sym_SLASH_EQ] = ACTIONS(459), - [anon_sym_PERCENT_EQ] = ACTIONS(459), - [anon_sym_AMP_EQ] = ACTIONS(459), - [anon_sym_PIPE_EQ] = ACTIONS(459), - [anon_sym_CARET_EQ] = ACTIONS(459), - [anon_sym_LT_LT_EQ] = ACTIONS(459), - [anon_sym_GT_GT_EQ] = ACTIONS(459), - [anon_sym_DOT] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_PLUS_EQ] = ACTIONS(548), + [anon_sym_DASH_EQ] = ACTIONS(548), + [anon_sym_STAR_EQ] = ACTIONS(548), + [anon_sym_SLASH_EQ] = ACTIONS(548), + [anon_sym_PERCENT_EQ] = ACTIONS(548), + [anon_sym_AMP_EQ] = ACTIONS(548), + [anon_sym_PIPE_EQ] = ACTIONS(548), + [anon_sym_CARET_EQ] = ACTIONS(548), + [anon_sym_LT_LT_EQ] = ACTIONS(548), + [anon_sym_GT_GT_EQ] = ACTIONS(548), + [anon_sym_DOT] = ACTIONS(550), [sym_integer_literal] = ACTIONS(898), [aux_sym_string_literal_token1] = ACTIONS(898), [sym_char_literal] = ACTIONS(898), @@ -38188,7 +36978,1047 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(898), [sym_block_comment] = ACTIONS(3), }, + [220] = { + [sym_identifier] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_LBRACK] = ACTIONS(552), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_QMARK] = ACTIONS(552), + [anon_sym_u8] = ACTIONS(554), + [anon_sym_i8] = ACTIONS(554), + [anon_sym_u16] = ACTIONS(554), + [anon_sym_i16] = ACTIONS(554), + [anon_sym_u32] = ACTIONS(554), + [anon_sym_i32] = ACTIONS(554), + [anon_sym_u64] = ACTIONS(554), + [anon_sym_i64] = ACTIONS(554), + [anon_sym_u128] = ACTIONS(554), + [anon_sym_i128] = ACTIONS(554), + [anon_sym_isize] = ACTIONS(554), + [anon_sym_usize] = ACTIONS(554), + [anon_sym_f32] = ACTIONS(554), + [anon_sym_f64] = ACTIONS(554), + [anon_sym_bool] = ACTIONS(554), + [anon_sym_str] = ACTIONS(554), + [anon_sym_char] = ACTIONS(554), + [anon_sym_as] = ACTIONS(554), + [anon_sym_const] = ACTIONS(554), + [anon_sym_default] = ACTIONS(554), + [anon_sym_union] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(552), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(552), + [anon_sym_ref] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(552), + [anon_sym__] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(554), + [anon_sym_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(552), + [anon_sym_PIPE_PIPE] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(552), + [anon_sym_BANG_EQ] = ACTIONS(552), + [anon_sym_LT_EQ] = ACTIONS(552), + [anon_sym_GT_EQ] = ACTIONS(552), + [anon_sym_LT_LT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [anon_sym_PLUS_EQ] = ACTIONS(552), + [anon_sym_DASH_EQ] = ACTIONS(552), + [anon_sym_STAR_EQ] = ACTIONS(552), + [anon_sym_SLASH_EQ] = ACTIONS(552), + [anon_sym_PERCENT_EQ] = ACTIONS(552), + [anon_sym_AMP_EQ] = ACTIONS(552), + [anon_sym_PIPE_EQ] = ACTIONS(552), + [anon_sym_CARET_EQ] = ACTIONS(552), + [anon_sym_LT_LT_EQ] = ACTIONS(552), + [anon_sym_GT_GT_EQ] = ACTIONS(552), + [anon_sym_DOT] = ACTIONS(554), + [sym_integer_literal] = ACTIONS(552), + [aux_sym_string_literal_token1] = ACTIONS(552), + [sym_char_literal] = ACTIONS(552), + [anon_sym_true] = ACTIONS(554), + [anon_sym_false] = ACTIONS(554), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(554), + [sym_super] = ACTIONS(554), + [sym_crate] = ACTIONS(554), + [sym_metavariable] = ACTIONS(552), + [sym_raw_string_literal] = ACTIONS(552), + [sym_float_literal] = ACTIONS(552), + [sym_block_comment] = ACTIONS(3), + }, + [221] = { + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_as] = ACTIONS(415), + [anon_sym_const] = ACTIONS(415), + [anon_sym_default] = ACTIONS(415), + [anon_sym_union] = ACTIONS(415), + [anon_sym_POUND] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_COMMA] = ACTIONS(413), + [anon_sym_ref] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym__] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(413), + [sym_mutable_specifier] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(415), + [anon_sym_DOT_DOT_EQ] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [anon_sym_PIPE] = ACTIONS(415), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_STAR_EQ] = ACTIONS(413), + [anon_sym_SLASH_EQ] = ACTIONS(413), + [anon_sym_PERCENT_EQ] = ACTIONS(413), + [anon_sym_AMP_EQ] = ACTIONS(413), + [anon_sym_PIPE_EQ] = ACTIONS(413), + [anon_sym_CARET_EQ] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(413), + [anon_sym_GT_GT_EQ] = ACTIONS(413), + [anon_sym_DOT] = ACTIONS(415), + [sym_integer_literal] = ACTIONS(413), + [aux_sym_string_literal_token1] = ACTIONS(413), + [sym_char_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(415), + [sym_super] = ACTIONS(415), + [sym_crate] = ACTIONS(415), + [sym_metavariable] = ACTIONS(413), + [sym_raw_string_literal] = ACTIONS(413), + [sym_float_literal] = ACTIONS(413), + [sym_block_comment] = ACTIONS(3), + }, + [222] = { + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(403), + [anon_sym_i8] = ACTIONS(403), + [anon_sym_u16] = ACTIONS(403), + [anon_sym_i16] = ACTIONS(403), + [anon_sym_u32] = ACTIONS(403), + [anon_sym_i32] = ACTIONS(403), + [anon_sym_u64] = ACTIONS(403), + [anon_sym_i64] = ACTIONS(403), + [anon_sym_u128] = ACTIONS(403), + [anon_sym_i128] = ACTIONS(403), + [anon_sym_isize] = ACTIONS(403), + [anon_sym_usize] = ACTIONS(403), + [anon_sym_f32] = ACTIONS(403), + [anon_sym_f64] = ACTIONS(403), + [anon_sym_bool] = ACTIONS(403), + [anon_sym_str] = ACTIONS(403), + [anon_sym_char] = ACTIONS(403), + [anon_sym_as] = ACTIONS(403), + [anon_sym_const] = ACTIONS(403), + [anon_sym_default] = ACTIONS(403), + [anon_sym_union] = ACTIONS(403), + [anon_sym_POUND] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(401), + [anon_sym_ref] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym__] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [sym_mutable_specifier] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [sym_integer_literal] = ACTIONS(401), + [aux_sym_string_literal_token1] = ACTIONS(401), + [sym_char_literal] = ACTIONS(401), + [anon_sym_true] = ACTIONS(403), + [anon_sym_false] = ACTIONS(403), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(403), + [sym_super] = ACTIONS(403), + [sym_crate] = ACTIONS(403), + [sym_metavariable] = ACTIONS(401), + [sym_raw_string_literal] = ACTIONS(401), + [sym_float_literal] = ACTIONS(401), + [sym_block_comment] = ACTIONS(3), + }, + [223] = { + [sym_identifier] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_u8] = ACTIONS(429), + [anon_sym_i8] = ACTIONS(429), + [anon_sym_u16] = ACTIONS(429), + [anon_sym_i16] = ACTIONS(429), + [anon_sym_u32] = ACTIONS(429), + [anon_sym_i32] = ACTIONS(429), + [anon_sym_u64] = ACTIONS(429), + [anon_sym_i64] = ACTIONS(429), + [anon_sym_u128] = ACTIONS(429), + [anon_sym_i128] = ACTIONS(429), + [anon_sym_isize] = ACTIONS(429), + [anon_sym_usize] = ACTIONS(429), + [anon_sym_f32] = ACTIONS(429), + [anon_sym_f64] = ACTIONS(429), + [anon_sym_bool] = ACTIONS(429), + [anon_sym_str] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_as] = ACTIONS(429), + [anon_sym_const] = ACTIONS(429), + [anon_sym_default] = ACTIONS(429), + [anon_sym_union] = ACTIONS(429), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_ref] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_COLON_COLON] = ACTIONS(427), + [anon_sym__] = ACTIONS(429), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(427), + [sym_mutable_specifier] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(429), + [anon_sym_PLUS_EQ] = ACTIONS(427), + [anon_sym_DASH_EQ] = ACTIONS(427), + [anon_sym_STAR_EQ] = ACTIONS(427), + [anon_sym_SLASH_EQ] = ACTIONS(427), + [anon_sym_PERCENT_EQ] = ACTIONS(427), + [anon_sym_AMP_EQ] = ACTIONS(427), + [anon_sym_PIPE_EQ] = ACTIONS(427), + [anon_sym_CARET_EQ] = ACTIONS(427), + [anon_sym_LT_LT_EQ] = ACTIONS(427), + [anon_sym_GT_GT_EQ] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(427), + [aux_sym_string_literal_token1] = ACTIONS(427), + [sym_char_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(429), + [sym_super] = ACTIONS(429), + [sym_crate] = ACTIONS(429), + [sym_metavariable] = ACTIONS(427), + [sym_raw_string_literal] = ACTIONS(427), + [sym_float_literal] = ACTIONS(427), + [sym_block_comment] = ACTIONS(3), + }, + [224] = { + [sym_identifier] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(548), + [anon_sym_u8] = ACTIONS(900), + [anon_sym_i8] = ACTIONS(900), + [anon_sym_u16] = ACTIONS(900), + [anon_sym_i16] = ACTIONS(900), + [anon_sym_u32] = ACTIONS(900), + [anon_sym_i32] = ACTIONS(900), + [anon_sym_u64] = ACTIONS(900), + [anon_sym_i64] = ACTIONS(900), + [anon_sym_u128] = ACTIONS(900), + [anon_sym_i128] = ACTIONS(900), + [anon_sym_isize] = ACTIONS(900), + [anon_sym_usize] = ACTIONS(900), + [anon_sym_f32] = ACTIONS(900), + [anon_sym_f64] = ACTIONS(900), + [anon_sym_bool] = ACTIONS(900), + [anon_sym_str] = ACTIONS(900), + [anon_sym_char] = ACTIONS(900), + [anon_sym_as] = ACTIONS(550), + [anon_sym_const] = ACTIONS(900), + [anon_sym_default] = ACTIONS(900), + [anon_sym_union] = ACTIONS(900), + [anon_sym_POUND] = ACTIONS(902), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_COMMA] = ACTIONS(548), + [anon_sym_ref] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(902), + [anon_sym__] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(548), + [sym_mutable_specifier] = ACTIONS(900), + [anon_sym_DOT_DOT] = ACTIONS(900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_PLUS_EQ] = ACTIONS(548), + [anon_sym_DASH_EQ] = ACTIONS(548), + [anon_sym_STAR_EQ] = ACTIONS(548), + [anon_sym_SLASH_EQ] = ACTIONS(548), + [anon_sym_PERCENT_EQ] = ACTIONS(548), + [anon_sym_AMP_EQ] = ACTIONS(548), + [anon_sym_PIPE_EQ] = ACTIONS(548), + [anon_sym_CARET_EQ] = ACTIONS(548), + [anon_sym_LT_LT_EQ] = ACTIONS(548), + [anon_sym_GT_GT_EQ] = ACTIONS(548), + [anon_sym_DOT] = ACTIONS(550), + [sym_integer_literal] = ACTIONS(902), + [aux_sym_string_literal_token1] = ACTIONS(902), + [sym_char_literal] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(900), + [sym_super] = ACTIONS(900), + [sym_crate] = ACTIONS(900), + [sym_metavariable] = ACTIONS(902), + [sym_raw_string_literal] = ACTIONS(902), + [sym_float_literal] = ACTIONS(902), + [sym_block_comment] = ACTIONS(3), + }, + [225] = { + [sym_identifier] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_QMARK] = ACTIONS(441), + [anon_sym_u8] = ACTIONS(443), + [anon_sym_i8] = ACTIONS(443), + [anon_sym_u16] = ACTIONS(443), + [anon_sym_i16] = ACTIONS(443), + [anon_sym_u32] = ACTIONS(443), + [anon_sym_i32] = ACTIONS(443), + [anon_sym_u64] = ACTIONS(443), + [anon_sym_i64] = ACTIONS(443), + [anon_sym_u128] = ACTIONS(443), + [anon_sym_i128] = ACTIONS(443), + [anon_sym_isize] = ACTIONS(443), + [anon_sym_usize] = ACTIONS(443), + [anon_sym_f32] = ACTIONS(443), + [anon_sym_f64] = ACTIONS(443), + [anon_sym_bool] = ACTIONS(443), + [anon_sym_str] = ACTIONS(443), + [anon_sym_char] = ACTIONS(443), + [anon_sym_as] = ACTIONS(443), + [anon_sym_const] = ACTIONS(443), + [anon_sym_default] = ACTIONS(443), + [anon_sym_union] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(441), + [anon_sym_EQ] = ACTIONS(443), + [anon_sym_COMMA] = ACTIONS(441), + [anon_sym_ref] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(443), + [anon_sym_GT] = ACTIONS(443), + [anon_sym_COLON_COLON] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(441), + [sym_mutable_specifier] = ACTIONS(443), + [anon_sym_DOT_DOT] = ACTIONS(443), + [anon_sym_DOT_DOT_EQ] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_AMP_AMP] = ACTIONS(441), + [anon_sym_PIPE_PIPE] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_CARET] = ACTIONS(443), + [anon_sym_EQ_EQ] = ACTIONS(441), + [anon_sym_BANG_EQ] = ACTIONS(441), + [anon_sym_LT_EQ] = ACTIONS(441), + [anon_sym_GT_EQ] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(443), + [anon_sym_GT_GT] = ACTIONS(443), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [anon_sym_PLUS_EQ] = ACTIONS(441), + [anon_sym_DASH_EQ] = ACTIONS(441), + [anon_sym_STAR_EQ] = ACTIONS(441), + [anon_sym_SLASH_EQ] = ACTIONS(441), + [anon_sym_PERCENT_EQ] = ACTIONS(441), + [anon_sym_AMP_EQ] = ACTIONS(441), + [anon_sym_PIPE_EQ] = ACTIONS(441), + [anon_sym_CARET_EQ] = ACTIONS(441), + [anon_sym_LT_LT_EQ] = ACTIONS(441), + [anon_sym_GT_GT_EQ] = ACTIONS(441), + [anon_sym_DOT] = ACTIONS(443), + [sym_integer_literal] = ACTIONS(441), + [aux_sym_string_literal_token1] = ACTIONS(441), + [sym_char_literal] = ACTIONS(441), + [anon_sym_true] = ACTIONS(443), + [anon_sym_false] = ACTIONS(443), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(443), + [sym_crate] = ACTIONS(443), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(441), + [sym_float_literal] = ACTIONS(441), + [sym_block_comment] = ACTIONS(3), + }, + [226] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(2003), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_type_binding] = STATE(2165), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [sym_block] = STATE(2165), + [sym__literal] = STATE(2165), + [sym_string_literal] = STATE(2273), + [sym_boolean_literal] = STATE(2273), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), + [sym_block_comment] = ACTIONS(3), + }, + [227] = { + [sym_identifier] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(604), + [anon_sym_i8] = ACTIONS(604), + [anon_sym_u16] = ACTIONS(604), + [anon_sym_i16] = ACTIONS(604), + [anon_sym_u32] = ACTIONS(604), + [anon_sym_i32] = ACTIONS(604), + [anon_sym_u64] = ACTIONS(604), + [anon_sym_i64] = ACTIONS(604), + [anon_sym_u128] = ACTIONS(604), + [anon_sym_i128] = ACTIONS(604), + [anon_sym_isize] = ACTIONS(604), + [anon_sym_usize] = ACTIONS(604), + [anon_sym_f32] = ACTIONS(604), + [anon_sym_f64] = ACTIONS(604), + [anon_sym_bool] = ACTIONS(604), + [anon_sym_str] = ACTIONS(604), + [anon_sym_char] = ACTIONS(604), + [anon_sym_as] = ACTIONS(604), + [anon_sym_const] = ACTIONS(604), + [anon_sym_default] = ACTIONS(604), + [anon_sym_union] = ACTIONS(604), + [anon_sym_POUND] = ACTIONS(602), + [anon_sym_EQ] = ACTIONS(604), + [anon_sym_COMMA] = ACTIONS(602), + [anon_sym_ref] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(604), + [anon_sym_GT] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(602), + [anon_sym__] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT_DOT] = ACTIONS(602), + [sym_mutable_specifier] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(604), + [anon_sym_DOT_DOT_EQ] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(604), + [anon_sym_CARET] = ACTIONS(604), + [anon_sym_EQ_EQ] = ACTIONS(602), + [anon_sym_BANG_EQ] = ACTIONS(602), + [anon_sym_LT_EQ] = ACTIONS(602), + [anon_sym_GT_EQ] = ACTIONS(602), + [anon_sym_LT_LT] = ACTIONS(604), + [anon_sym_GT_GT] = ACTIONS(604), + [anon_sym_SLASH] = ACTIONS(604), + [anon_sym_PERCENT] = ACTIONS(604), + [anon_sym_PLUS_EQ] = ACTIONS(602), + [anon_sym_DASH_EQ] = ACTIONS(602), + [anon_sym_STAR_EQ] = ACTIONS(602), + [anon_sym_SLASH_EQ] = ACTIONS(602), + [anon_sym_PERCENT_EQ] = ACTIONS(602), + [anon_sym_AMP_EQ] = ACTIONS(602), + [anon_sym_PIPE_EQ] = ACTIONS(602), + [anon_sym_CARET_EQ] = ACTIONS(602), + [anon_sym_LT_LT_EQ] = ACTIONS(602), + [anon_sym_GT_GT_EQ] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(604), + [sym_integer_literal] = ACTIONS(602), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(602), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(604), + [sym_super] = ACTIONS(604), + [sym_crate] = ACTIONS(604), + [sym_metavariable] = ACTIONS(602), + [sym_raw_string_literal] = ACTIONS(602), + [sym_float_literal] = ACTIONS(602), + [sym_block_comment] = ACTIONS(3), + }, + [228] = { + [sym_identifier] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_u8] = ACTIONS(596), + [anon_sym_i8] = ACTIONS(596), + [anon_sym_u16] = ACTIONS(596), + [anon_sym_i16] = ACTIONS(596), + [anon_sym_u32] = ACTIONS(596), + [anon_sym_i32] = ACTIONS(596), + [anon_sym_u64] = ACTIONS(596), + [anon_sym_i64] = ACTIONS(596), + [anon_sym_u128] = ACTIONS(596), + [anon_sym_i128] = ACTIONS(596), + [anon_sym_isize] = ACTIONS(596), + [anon_sym_usize] = ACTIONS(596), + [anon_sym_f32] = ACTIONS(596), + [anon_sym_f64] = ACTIONS(596), + [anon_sym_bool] = ACTIONS(596), + [anon_sym_str] = ACTIONS(596), + [anon_sym_char] = ACTIONS(596), + [anon_sym_as] = ACTIONS(596), + [anon_sym_const] = ACTIONS(596), + [anon_sym_default] = ACTIONS(596), + [anon_sym_union] = ACTIONS(596), + [anon_sym_POUND] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_COMMA] = ACTIONS(594), + [anon_sym_ref] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(594), + [anon_sym__] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [sym_mutable_specifier] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(594), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_AMP_EQ] = ACTIONS(594), + [anon_sym_PIPE_EQ] = ACTIONS(594), + [anon_sym_CARET_EQ] = ACTIONS(594), + [anon_sym_LT_LT_EQ] = ACTIONS(594), + [anon_sym_GT_GT_EQ] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(596), + [sym_integer_literal] = ACTIONS(594), + [aux_sym_string_literal_token1] = ACTIONS(594), + [sym_char_literal] = ACTIONS(594), + [anon_sym_true] = ACTIONS(596), + [anon_sym_false] = ACTIONS(596), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(596), + [sym_super] = ACTIONS(596), + [sym_crate] = ACTIONS(596), + [sym_metavariable] = ACTIONS(594), + [sym_raw_string_literal] = ACTIONS(594), + [sym_float_literal] = ACTIONS(594), + [sym_block_comment] = ACTIONS(3), + }, [229] = { + [sym_identifier] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_as] = ACTIONS(421), + [anon_sym_const] = ACTIONS(421), + [anon_sym_default] = ACTIONS(421), + [anon_sym_union] = ACTIONS(421), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_ref] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(419), + [sym_mutable_specifier] = ACTIONS(421), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(421), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_PERCENT] = ACTIONS(421), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_STAR_EQ] = ACTIONS(419), + [anon_sym_SLASH_EQ] = ACTIONS(419), + [anon_sym_PERCENT_EQ] = ACTIONS(419), + [anon_sym_AMP_EQ] = ACTIONS(419), + [anon_sym_PIPE_EQ] = ACTIONS(419), + [anon_sym_CARET_EQ] = ACTIONS(419), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_GT_GT_EQ] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(421), + [sym_integer_literal] = ACTIONS(419), + [aux_sym_string_literal_token1] = ACTIONS(419), + [sym_char_literal] = ACTIONS(419), + [anon_sym_true] = ACTIONS(421), + [anon_sym_false] = ACTIONS(421), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(421), + [sym_super] = ACTIONS(421), + [sym_crate] = ACTIONS(421), + [sym_metavariable] = ACTIONS(419), + [sym_raw_string_literal] = ACTIONS(419), + [sym_float_literal] = ACTIONS(419), + [sym_block_comment] = ACTIONS(3), + }, + [230] = { + [sym_identifier] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_QMARK] = ACTIONS(445), + [anon_sym_u8] = ACTIONS(447), + [anon_sym_i8] = ACTIONS(447), + [anon_sym_u16] = ACTIONS(447), + [anon_sym_i16] = ACTIONS(447), + [anon_sym_u32] = ACTIONS(447), + [anon_sym_i32] = ACTIONS(447), + [anon_sym_u64] = ACTIONS(447), + [anon_sym_i64] = ACTIONS(447), + [anon_sym_u128] = ACTIONS(447), + [anon_sym_i128] = ACTIONS(447), + [anon_sym_isize] = ACTIONS(447), + [anon_sym_usize] = ACTIONS(447), + [anon_sym_f32] = ACTIONS(447), + [anon_sym_f64] = ACTIONS(447), + [anon_sym_bool] = ACTIONS(447), + [anon_sym_str] = ACTIONS(447), + [anon_sym_char] = ACTIONS(447), + [anon_sym_as] = ACTIONS(447), + [anon_sym_const] = ACTIONS(447), + [anon_sym_default] = ACTIONS(447), + [anon_sym_union] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(447), + [anon_sym_COMMA] = ACTIONS(445), + [anon_sym_ref] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_COLON_COLON] = ACTIONS(445), + [anon_sym__] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(445), + [sym_mutable_specifier] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(445), + [anon_sym_PIPE_PIPE] = ACTIONS(445), + [anon_sym_PIPE] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_EQ_EQ] = ACTIONS(445), + [anon_sym_BANG_EQ] = ACTIONS(445), + [anon_sym_LT_EQ] = ACTIONS(445), + [anon_sym_GT_EQ] = ACTIONS(445), + [anon_sym_LT_LT] = ACTIONS(447), + [anon_sym_GT_GT] = ACTIONS(447), + [anon_sym_SLASH] = ACTIONS(447), + [anon_sym_PERCENT] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(445), + [anon_sym_DASH_EQ] = ACTIONS(445), + [anon_sym_STAR_EQ] = ACTIONS(445), + [anon_sym_SLASH_EQ] = ACTIONS(445), + [anon_sym_PERCENT_EQ] = ACTIONS(445), + [anon_sym_AMP_EQ] = ACTIONS(445), + [anon_sym_PIPE_EQ] = ACTIONS(445), + [anon_sym_CARET_EQ] = ACTIONS(445), + [anon_sym_LT_LT_EQ] = ACTIONS(445), + [anon_sym_GT_GT_EQ] = ACTIONS(445), + [anon_sym_DOT] = ACTIONS(447), + [sym_integer_literal] = ACTIONS(445), + [aux_sym_string_literal_token1] = ACTIONS(445), + [sym_char_literal] = ACTIONS(445), + [anon_sym_true] = ACTIONS(447), + [anon_sym_false] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(447), + [sym_super] = ACTIONS(447), + [sym_crate] = ACTIONS(447), + [sym_metavariable] = ACTIONS(445), + [sym_raw_string_literal] = ACTIONS(445), + [sym_float_literal] = ACTIONS(445), + [sym_block_comment] = ACTIONS(3), + }, + [231] = { + [sym_identifier] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(598), + [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_as] = ACTIONS(600), + [anon_sym_const] = ACTIONS(600), + [anon_sym_default] = ACTIONS(600), + [anon_sym_union] = ACTIONS(600), + [anon_sym_POUND] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(600), + [anon_sym_COMMA] = ACTIONS(598), + [anon_sym_ref] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(598), + [anon_sym__] = ACTIONS(600), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [sym_mutable_specifier] = ACTIONS(600), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT_EQ] = ACTIONS(598), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [anon_sym_PIPE] = ACTIONS(600), + [anon_sym_CARET] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(598), + [anon_sym_BANG_EQ] = ACTIONS(598), + [anon_sym_LT_EQ] = ACTIONS(598), + [anon_sym_GT_EQ] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_SLASH] = ACTIONS(600), + [anon_sym_PERCENT] = ACTIONS(600), + [anon_sym_PLUS_EQ] = ACTIONS(598), + [anon_sym_DASH_EQ] = ACTIONS(598), + [anon_sym_STAR_EQ] = ACTIONS(598), + [anon_sym_SLASH_EQ] = ACTIONS(598), + [anon_sym_PERCENT_EQ] = ACTIONS(598), + [anon_sym_AMP_EQ] = ACTIONS(598), + [anon_sym_PIPE_EQ] = ACTIONS(598), + [anon_sym_CARET_EQ] = ACTIONS(598), + [anon_sym_LT_LT_EQ] = ACTIONS(598), + [anon_sym_GT_GT_EQ] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(600), + [sym_integer_literal] = ACTIONS(598), + [aux_sym_string_literal_token1] = ACTIONS(598), + [sym_char_literal] = ACTIONS(598), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_crate] = ACTIONS(600), + [sym_metavariable] = ACTIONS(598), + [sym_raw_string_literal] = ACTIONS(598), + [sym_float_literal] = ACTIONS(598), + [sym_block_comment] = ACTIONS(3), + }, + [232] = { + [sym_identifier] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u128] = ACTIONS(572), + [anon_sym_i128] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_str] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_as] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_union] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_ref] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym__] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(572), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_crate] = ACTIONS(572), + [sym_metavariable] = ACTIONS(570), + [sym_raw_string_literal] = ACTIONS(570), + [sym_float_literal] = ACTIONS(570), + [sym_block_comment] = ACTIONS(3), + }, + [233] = { [sym_identifier] = ACTIONS(433), [anon_sym_LPAREN] = ACTIONS(431), [anon_sym_RBRACE] = ACTIONS(431), @@ -38268,1113 +38098,793 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(431), [sym_block_comment] = ACTIONS(3), }, - [230] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1967), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2029), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2186), - [sym_boolean_literal] = STATE(2186), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, - [231] = { - [sym_identifier] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_as] = ACTIONS(477), - [anon_sym_const] = ACTIONS(477), - [anon_sym_default] = ACTIONS(477), - [anon_sym_union] = ACTIONS(477), - [anon_sym_POUND] = ACTIONS(475), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(475), - [anon_sym_ref] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_COLON_COLON] = ACTIONS(475), - [anon_sym__] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(475), - [sym_mutable_specifier] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(475), - [anon_sym_BANG_EQ] = ACTIONS(475), - [anon_sym_LT_EQ] = ACTIONS(475), - [anon_sym_GT_EQ] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_PERCENT] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(475), - [anon_sym_DASH_EQ] = ACTIONS(475), - [anon_sym_STAR_EQ] = ACTIONS(475), - [anon_sym_SLASH_EQ] = ACTIONS(475), - [anon_sym_PERCENT_EQ] = ACTIONS(475), - [anon_sym_AMP_EQ] = ACTIONS(475), - [anon_sym_PIPE_EQ] = ACTIONS(475), - [anon_sym_CARET_EQ] = ACTIONS(475), - [anon_sym_LT_LT_EQ] = ACTIONS(475), - [anon_sym_GT_GT_EQ] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(477), - [sym_integer_literal] = ACTIONS(475), - [aux_sym_string_literal_token1] = ACTIONS(475), - [sym_char_literal] = ACTIONS(475), - [anon_sym_true] = ACTIONS(477), - [anon_sym_false] = ACTIONS(477), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(477), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(475), - [sym_raw_string_literal] = ACTIONS(475), - [sym_float_literal] = ACTIONS(475), - [sym_block_comment] = ACTIONS(3), - }, - [232] = { - [sym_identifier] = ACTIONS(445), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(443), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(445), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_u8] = ACTIONS(445), - [anon_sym_i8] = ACTIONS(445), - [anon_sym_u16] = ACTIONS(445), - [anon_sym_i16] = ACTIONS(445), - [anon_sym_u32] = ACTIONS(445), - [anon_sym_i32] = ACTIONS(445), - [anon_sym_u64] = ACTIONS(445), - [anon_sym_i64] = ACTIONS(445), - [anon_sym_u128] = ACTIONS(445), - [anon_sym_i128] = ACTIONS(445), - [anon_sym_isize] = ACTIONS(445), - [anon_sym_usize] = ACTIONS(445), - [anon_sym_f32] = ACTIONS(445), - [anon_sym_f64] = ACTIONS(445), - [anon_sym_bool] = ACTIONS(445), - [anon_sym_str] = ACTIONS(445), - [anon_sym_char] = ACTIONS(445), - [anon_sym_as] = ACTIONS(445), - [anon_sym_const] = ACTIONS(445), - [anon_sym_default] = ACTIONS(445), - [anon_sym_union] = ACTIONS(445), - [anon_sym_POUND] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(445), - [anon_sym_COMMA] = ACTIONS(443), - [anon_sym_ref] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(445), - [anon_sym_GT] = ACTIONS(445), - [anon_sym_COLON_COLON] = ACTIONS(443), - [anon_sym__] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(443), - [sym_mutable_specifier] = ACTIONS(445), - [anon_sym_DOT_DOT] = ACTIONS(445), - [anon_sym_DOT_DOT_EQ] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_CARET] = ACTIONS(445), - [anon_sym_EQ_EQ] = ACTIONS(443), - [anon_sym_BANG_EQ] = ACTIONS(443), - [anon_sym_LT_EQ] = ACTIONS(443), - [anon_sym_GT_EQ] = ACTIONS(443), - [anon_sym_LT_LT] = ACTIONS(445), - [anon_sym_GT_GT] = ACTIONS(445), - [anon_sym_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(443), - [anon_sym_DASH_EQ] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(443), - [anon_sym_SLASH_EQ] = ACTIONS(443), - [anon_sym_PERCENT_EQ] = ACTIONS(443), - [anon_sym_AMP_EQ] = ACTIONS(443), - [anon_sym_PIPE_EQ] = ACTIONS(443), - [anon_sym_CARET_EQ] = ACTIONS(443), - [anon_sym_LT_LT_EQ] = ACTIONS(443), - [anon_sym_GT_GT_EQ] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(445), - [sym_integer_literal] = ACTIONS(443), - [aux_sym_string_literal_token1] = ACTIONS(443), - [sym_char_literal] = ACTIONS(443), - [anon_sym_true] = ACTIONS(445), - [anon_sym_false] = ACTIONS(445), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(445), - [sym_super] = ACTIONS(445), - [sym_crate] = ACTIONS(445), - [sym_metavariable] = ACTIONS(443), - [sym_raw_string_literal] = ACTIONS(443), - [sym_float_literal] = ACTIONS(443), - [sym_block_comment] = ACTIONS(3), - }, - [233] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1967), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2029), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2186), - [sym_boolean_literal] = STATE(2186), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, [234] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1967), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2029), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2186), - [sym_boolean_literal] = STATE(2186), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(904), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [sym_identifier] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(576), + [anon_sym_i8] = ACTIONS(576), + [anon_sym_u16] = ACTIONS(576), + [anon_sym_i16] = ACTIONS(576), + [anon_sym_u32] = ACTIONS(576), + [anon_sym_i32] = ACTIONS(576), + [anon_sym_u64] = ACTIONS(576), + [anon_sym_i64] = ACTIONS(576), + [anon_sym_u128] = ACTIONS(576), + [anon_sym_i128] = ACTIONS(576), + [anon_sym_isize] = ACTIONS(576), + [anon_sym_usize] = ACTIONS(576), + [anon_sym_f32] = ACTIONS(576), + [anon_sym_f64] = ACTIONS(576), + [anon_sym_bool] = ACTIONS(576), + [anon_sym_str] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_as] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_union] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(574), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(574), + [anon_sym_ref] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(574), + [anon_sym__] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_DOT] = ACTIONS(576), + [sym_integer_literal] = ACTIONS(574), + [aux_sym_string_literal_token1] = ACTIONS(574), + [sym_char_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_crate] = ACTIONS(576), + [sym_metavariable] = ACTIONS(574), + [sym_raw_string_literal] = ACTIONS(574), + [sym_float_literal] = ACTIONS(574), [sym_block_comment] = ACTIONS(3), }, [235] = { - [sym_identifier] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_u8] = ACTIONS(419), - [anon_sym_i8] = ACTIONS(419), - [anon_sym_u16] = ACTIONS(419), - [anon_sym_i16] = ACTIONS(419), - [anon_sym_u32] = ACTIONS(419), - [anon_sym_i32] = ACTIONS(419), - [anon_sym_u64] = ACTIONS(419), - [anon_sym_i64] = ACTIONS(419), - [anon_sym_u128] = ACTIONS(419), - [anon_sym_i128] = ACTIONS(419), - [anon_sym_isize] = ACTIONS(419), - [anon_sym_usize] = ACTIONS(419), - [anon_sym_f32] = ACTIONS(419), - [anon_sym_f64] = ACTIONS(419), - [anon_sym_bool] = ACTIONS(419), - [anon_sym_str] = ACTIONS(419), - [anon_sym_char] = ACTIONS(419), - [anon_sym_as] = ACTIONS(419), - [anon_sym_const] = ACTIONS(419), - [anon_sym_default] = ACTIONS(419), - [anon_sym_union] = ACTIONS(419), - [anon_sym_POUND] = ACTIONS(417), - [anon_sym_EQ] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(417), - [anon_sym_ref] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_COLON_COLON] = ACTIONS(417), - [anon_sym__] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(417), - [sym_mutable_specifier] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_CARET] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_LT_EQ] = ACTIONS(417), - [anon_sym_GT_EQ] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(417), - [anon_sym_DASH_EQ] = ACTIONS(417), - [anon_sym_STAR_EQ] = ACTIONS(417), - [anon_sym_SLASH_EQ] = ACTIONS(417), - [anon_sym_PERCENT_EQ] = ACTIONS(417), - [anon_sym_AMP_EQ] = ACTIONS(417), - [anon_sym_PIPE_EQ] = ACTIONS(417), - [anon_sym_CARET_EQ] = ACTIONS(417), - [anon_sym_LT_LT_EQ] = ACTIONS(417), - [anon_sym_GT_GT_EQ] = ACTIONS(417), - [anon_sym_DOT] = ACTIONS(419), - [sym_integer_literal] = ACTIONS(417), - [aux_sym_string_literal_token1] = ACTIONS(417), - [sym_char_literal] = ACTIONS(417), - [anon_sym_true] = ACTIONS(419), - [anon_sym_false] = ACTIONS(419), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(419), - [sym_super] = ACTIONS(419), - [sym_crate] = ACTIONS(419), - [sym_metavariable] = ACTIONS(417), - [sym_raw_string_literal] = ACTIONS(417), - [sym_float_literal] = ACTIONS(417), + [sym_identifier] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_PLUS] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(409), + [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_as] = ACTIONS(411), + [anon_sym_const] = ACTIONS(411), + [anon_sym_default] = ACTIONS(411), + [anon_sym_union] = ACTIONS(411), + [anon_sym_POUND] = ACTIONS(409), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(409), + [anon_sym_ref] = ACTIONS(411), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_COLON_COLON] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [sym_mutable_specifier] = ACTIONS(411), + [anon_sym_DOT_DOT] = ACTIONS(411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(411), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(409), + [anon_sym_BANG_EQ] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(411), + [anon_sym_SLASH] = ACTIONS(411), + [anon_sym_PERCENT] = ACTIONS(411), + [anon_sym_PLUS_EQ] = ACTIONS(409), + [anon_sym_DASH_EQ] = ACTIONS(409), + [anon_sym_STAR_EQ] = ACTIONS(409), + [anon_sym_SLASH_EQ] = ACTIONS(409), + [anon_sym_PERCENT_EQ] = ACTIONS(409), + [anon_sym_AMP_EQ] = ACTIONS(409), + [anon_sym_PIPE_EQ] = ACTIONS(409), + [anon_sym_CARET_EQ] = ACTIONS(409), + [anon_sym_LT_LT_EQ] = ACTIONS(409), + [anon_sym_GT_GT_EQ] = ACTIONS(409), + [anon_sym_DOT] = ACTIONS(411), + [sym_integer_literal] = ACTIONS(409), + [aux_sym_string_literal_token1] = ACTIONS(409), + [sym_char_literal] = ACTIONS(409), + [anon_sym_true] = ACTIONS(411), + [anon_sym_false] = ACTIONS(411), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(411), + [sym_super] = ACTIONS(411), + [sym_crate] = ACTIONS(411), + [sym_metavariable] = ACTIONS(409), + [sym_raw_string_literal] = ACTIONS(409), + [sym_float_literal] = ACTIONS(409), [sym_block_comment] = ACTIONS(3), }, [236] = { - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(465), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_u8] = ACTIONS(465), - [anon_sym_i8] = ACTIONS(465), - [anon_sym_u16] = ACTIONS(465), - [anon_sym_i16] = ACTIONS(465), - [anon_sym_u32] = ACTIONS(465), - [anon_sym_i32] = ACTIONS(465), - [anon_sym_u64] = ACTIONS(465), - [anon_sym_i64] = ACTIONS(465), - [anon_sym_u128] = ACTIONS(465), - [anon_sym_i128] = ACTIONS(465), - [anon_sym_isize] = ACTIONS(465), - [anon_sym_usize] = ACTIONS(465), - [anon_sym_f32] = ACTIONS(465), - [anon_sym_f64] = ACTIONS(465), - [anon_sym_bool] = ACTIONS(465), - [anon_sym_str] = ACTIONS(465), - [anon_sym_char] = ACTIONS(465), - [anon_sym_as] = ACTIONS(465), - [anon_sym_const] = ACTIONS(465), - [anon_sym_default] = ACTIONS(465), - [anon_sym_union] = ACTIONS(465), - [anon_sym_POUND] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(465), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_ref] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(465), - [anon_sym_GT] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(463), - [anon_sym__] = ACTIONS(465), - [anon_sym_AMP] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(463), - [sym_mutable_specifier] = ACTIONS(465), - [anon_sym_DOT_DOT] = ACTIONS(465), - [anon_sym_DOT_DOT_EQ] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_AMP_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(463), - [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_CARET] = ACTIONS(465), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_LT_LT] = ACTIONS(465), - [anon_sym_GT_GT] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(465), - [anon_sym_PERCENT] = ACTIONS(465), - [anon_sym_PLUS_EQ] = ACTIONS(463), - [anon_sym_DASH_EQ] = ACTIONS(463), - [anon_sym_STAR_EQ] = ACTIONS(463), - [anon_sym_SLASH_EQ] = ACTIONS(463), - [anon_sym_PERCENT_EQ] = ACTIONS(463), - [anon_sym_AMP_EQ] = ACTIONS(463), - [anon_sym_PIPE_EQ] = ACTIONS(463), - [anon_sym_CARET_EQ] = ACTIONS(463), - [anon_sym_LT_LT_EQ] = ACTIONS(463), - [anon_sym_GT_GT_EQ] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(465), - [sym_integer_literal] = ACTIONS(463), - [aux_sym_string_literal_token1] = ACTIONS(463), - [sym_char_literal] = ACTIONS(463), - [anon_sym_true] = ACTIONS(465), - [anon_sym_false] = ACTIONS(465), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(465), - [sym_super] = ACTIONS(465), - [sym_crate] = ACTIONS(465), - [sym_metavariable] = ACTIONS(463), - [sym_raw_string_literal] = ACTIONS(463), - [sym_float_literal] = ACTIONS(463), + [sym_identifier] = ACTIONS(588), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(588), + [anon_sym_i8] = ACTIONS(588), + [anon_sym_u16] = ACTIONS(588), + [anon_sym_i16] = ACTIONS(588), + [anon_sym_u32] = ACTIONS(588), + [anon_sym_i32] = ACTIONS(588), + [anon_sym_u64] = ACTIONS(588), + [anon_sym_i64] = ACTIONS(588), + [anon_sym_u128] = ACTIONS(588), + [anon_sym_i128] = ACTIONS(588), + [anon_sym_isize] = ACTIONS(588), + [anon_sym_usize] = ACTIONS(588), + [anon_sym_f32] = ACTIONS(588), + [anon_sym_f64] = ACTIONS(588), + [anon_sym_bool] = ACTIONS(588), + [anon_sym_str] = ACTIONS(588), + [anon_sym_char] = ACTIONS(588), + [anon_sym_as] = ACTIONS(588), + [anon_sym_const] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_union] = ACTIONS(588), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(588), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_ref] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_GT] = ACTIONS(588), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym__] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [sym_mutable_specifier] = ACTIONS(588), + [anon_sym_DOT_DOT] = ACTIONS(588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(588), + [anon_sym_PERCENT] = ACTIONS(588), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(586), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(588), + [anon_sym_false] = ACTIONS(588), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(588), + [sym_super] = ACTIONS(588), + [sym_crate] = ACTIONS(588), + [sym_metavariable] = ACTIONS(586), + [sym_raw_string_literal] = ACTIONS(586), + [sym_float_literal] = ACTIONS(586), [sym_block_comment] = ACTIONS(3), }, [237] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1967), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2029), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2186), - [sym_boolean_literal] = STATE(2186), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1758), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_type_binding] = STATE(2046), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [sym_block] = STATE(2046), + [sym__literal] = STATE(2046), + [sym_string_literal] = STATE(2273), + [sym_boolean_literal] = STATE(2273), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), [sym_block_comment] = ACTIONS(3), }, [238] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1778), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(1782), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_type_binding] = STATE(2001), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [sym_block] = STATE(2001), - [sym__literal] = STATE(2001), - [sym_string_literal] = STATE(2186), - [sym_boolean_literal] = STATE(2186), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(2003), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_type_binding] = STATE(2165), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [sym_block] = STATE(2165), + [sym__literal] = STATE(2165), + [sym_string_literal] = STATE(2273), + [sym_boolean_literal] = STATE(2273), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), [sym_block_comment] = ACTIONS(3), }, [239] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1761), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(1760), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_type_binding] = STATE(1925), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [sym_block] = STATE(1925), - [sym__literal] = STATE(1925), - [sym_string_literal] = STATE(2186), - [sym_boolean_literal] = STATE(2186), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1781), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(1780), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_type_binding] = STATE(1962), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [sym_block] = STATE(1962), + [sym__literal] = STATE(1962), + [sym_string_literal] = STATE(2273), + [sym_boolean_literal] = STATE(2273), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), [sym_block_comment] = ACTIONS(3), }, [240] = { - [sym_empty_statement] = STATE(244), - [sym_macro_definition] = STATE(244), - [sym_attribute_item] = STATE(244), - [sym_inner_attribute_item] = STATE(244), - [sym_mod_item] = STATE(244), - [sym_foreign_mod_item] = STATE(244), - [sym_struct_item] = STATE(244), - [sym_union_item] = STATE(244), - [sym_enum_item] = STATE(244), - [sym_extern_crate_declaration] = STATE(244), - [sym_const_item] = STATE(244), - [sym_static_item] = STATE(244), - [sym_type_item] = STATE(244), - [sym_function_item] = STATE(244), - [sym_function_signature_item] = STATE(244), - [sym_function_modifiers] = STATE(2461), - [sym_impl_item] = STATE(244), - [sym_trait_item] = STATE(244), - [sym_associated_type] = STATE(244), - [sym_let_declaration] = STATE(244), - [sym_use_declaration] = STATE(244), - [sym_extern_modifier] = STATE(1431), - [sym_visibility_modifier] = STATE(1270), - [sym_bracketed_type] = STATE(2287), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(244), - [sym_scoped_identifier] = STATE(2223), - [aux_sym_declaration_list_repeat1] = STATE(244), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_empty_statement] = STATE(240), + [sym_macro_definition] = STATE(240), + [sym_attribute_item] = STATE(240), + [sym_inner_attribute_item] = STATE(240), + [sym_mod_item] = STATE(240), + [sym_foreign_mod_item] = STATE(240), + [sym_struct_item] = STATE(240), + [sym_union_item] = STATE(240), + [sym_enum_item] = STATE(240), + [sym_extern_crate_declaration] = STATE(240), + [sym_const_item] = STATE(240), + [sym_static_item] = STATE(240), + [sym_type_item] = STATE(240), + [sym_function_item] = STATE(240), + [sym_function_signature_item] = STATE(240), + [sym_function_modifiers] = STATE(2506), + [sym_impl_item] = STATE(240), + [sym_trait_item] = STATE(240), + [sym_associated_type] = STATE(240), + [sym_let_declaration] = STATE(240), + [sym_use_declaration] = STATE(240), + [sym_extern_modifier] = STATE(1498), + [sym_visibility_modifier] = STATE(1319), + [sym_bracketed_type] = STATE(2319), + [sym_generic_type_with_turbofish] = STATE(2321), + [sym_macro_invocation] = STATE(240), + [sym_scoped_identifier] = STATE(2228), + [aux_sym_declaration_list_repeat1] = STATE(240), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_macro_rules_BANG] = ACTIONS(910), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_u8] = ACTIONS(914), - [anon_sym_i8] = ACTIONS(914), - [anon_sym_u16] = ACTIONS(914), - [anon_sym_i16] = ACTIONS(914), - [anon_sym_u32] = ACTIONS(914), - [anon_sym_i32] = ACTIONS(914), - [anon_sym_u64] = ACTIONS(914), - [anon_sym_i64] = ACTIONS(914), - [anon_sym_u128] = ACTIONS(914), - [anon_sym_i128] = ACTIONS(914), - [anon_sym_isize] = ACTIONS(914), - [anon_sym_usize] = ACTIONS(914), - [anon_sym_f32] = ACTIONS(914), - [anon_sym_f64] = ACTIONS(914), - [anon_sym_bool] = ACTIONS(914), - [anon_sym_str] = ACTIONS(914), - [anon_sym_char] = ACTIONS(914), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(916), - [anon_sym_default] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_fn] = ACTIONS(922), - [anon_sym_impl] = ACTIONS(924), - [anon_sym_let] = ACTIONS(926), - [anon_sym_mod] = ACTIONS(928), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_trait] = ACTIONS(934), - [anon_sym_type] = ACTIONS(936), - [anon_sym_union] = ACTIONS(938), - [anon_sym_unsafe] = ACTIONS(940), - [anon_sym_use] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(948), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(950), - [sym_super] = ACTIONS(950), - [sym_crate] = ACTIONS(952), - [sym_metavariable] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(909), + [anon_sym_macro_rules_BANG] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(915), + [anon_sym_u8] = ACTIONS(917), + [anon_sym_i8] = ACTIONS(917), + [anon_sym_u16] = ACTIONS(917), + [anon_sym_i16] = ACTIONS(917), + [anon_sym_u32] = ACTIONS(917), + [anon_sym_i32] = ACTIONS(917), + [anon_sym_u64] = ACTIONS(917), + [anon_sym_i64] = ACTIONS(917), + [anon_sym_u128] = ACTIONS(917), + [anon_sym_i128] = ACTIONS(917), + [anon_sym_isize] = ACTIONS(917), + [anon_sym_usize] = ACTIONS(917), + [anon_sym_f32] = ACTIONS(917), + [anon_sym_f64] = ACTIONS(917), + [anon_sym_bool] = ACTIONS(917), + [anon_sym_str] = ACTIONS(917), + [anon_sym_char] = ACTIONS(917), + [anon_sym_async] = ACTIONS(920), + [anon_sym_const] = ACTIONS(923), + [anon_sym_default] = ACTIONS(926), + [anon_sym_enum] = ACTIONS(929), + [anon_sym_fn] = ACTIONS(932), + [anon_sym_impl] = ACTIONS(935), + [anon_sym_let] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(941), + [anon_sym_pub] = ACTIONS(944), + [anon_sym_static] = ACTIONS(947), + [anon_sym_struct] = ACTIONS(950), + [anon_sym_trait] = ACTIONS(953), + [anon_sym_type] = ACTIONS(956), + [anon_sym_union] = ACTIONS(959), + [anon_sym_unsafe] = ACTIONS(962), + [anon_sym_use] = ACTIONS(965), + [anon_sym_POUND] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(974), + [anon_sym_COLON_COLON] = ACTIONS(977), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(980), + [sym_super] = ACTIONS(980), + [sym_crate] = ACTIONS(983), + [sym_metavariable] = ACTIONS(986), [sym_block_comment] = ACTIONS(3), }, [241] = { - [sym_empty_statement] = STATE(245), - [sym_macro_definition] = STATE(245), - [sym_attribute_item] = STATE(245), - [sym_inner_attribute_item] = STATE(245), - [sym_mod_item] = STATE(245), - [sym_foreign_mod_item] = STATE(245), - [sym_struct_item] = STATE(245), - [sym_union_item] = STATE(245), - [sym_enum_item] = STATE(245), - [sym_extern_crate_declaration] = STATE(245), - [sym_const_item] = STATE(245), - [sym_static_item] = STATE(245), - [sym_type_item] = STATE(245), - [sym_function_item] = STATE(245), - [sym_function_signature_item] = STATE(245), - [sym_function_modifiers] = STATE(2461), - [sym_impl_item] = STATE(245), - [sym_trait_item] = STATE(245), - [sym_associated_type] = STATE(245), - [sym_let_declaration] = STATE(245), - [sym_use_declaration] = STATE(245), - [sym_extern_modifier] = STATE(1431), - [sym_visibility_modifier] = STATE(1270), - [sym_bracketed_type] = STATE(2287), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(245), - [sym_scoped_identifier] = STATE(2223), - [aux_sym_declaration_list_repeat1] = STATE(245), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_macro_rules_BANG] = ACTIONS(910), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_u8] = ACTIONS(914), - [anon_sym_i8] = ACTIONS(914), - [anon_sym_u16] = ACTIONS(914), - [anon_sym_i16] = ACTIONS(914), - [anon_sym_u32] = ACTIONS(914), - [anon_sym_i32] = ACTIONS(914), - [anon_sym_u64] = ACTIONS(914), - [anon_sym_i64] = ACTIONS(914), - [anon_sym_u128] = ACTIONS(914), - [anon_sym_i128] = ACTIONS(914), - [anon_sym_isize] = ACTIONS(914), - [anon_sym_usize] = ACTIONS(914), - [anon_sym_f32] = ACTIONS(914), - [anon_sym_f64] = ACTIONS(914), - [anon_sym_bool] = ACTIONS(914), - [anon_sym_str] = ACTIONS(914), - [anon_sym_char] = ACTIONS(914), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(916), - [anon_sym_default] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_fn] = ACTIONS(922), - [anon_sym_impl] = ACTIONS(924), - [anon_sym_let] = ACTIONS(926), - [anon_sym_mod] = ACTIONS(928), + [sym_empty_statement] = STATE(243), + [sym_macro_definition] = STATE(243), + [sym_attribute_item] = STATE(243), + [sym_inner_attribute_item] = STATE(243), + [sym_mod_item] = STATE(243), + [sym_foreign_mod_item] = STATE(243), + [sym_struct_item] = STATE(243), + [sym_union_item] = STATE(243), + [sym_enum_item] = STATE(243), + [sym_extern_crate_declaration] = STATE(243), + [sym_const_item] = STATE(243), + [sym_static_item] = STATE(243), + [sym_type_item] = STATE(243), + [sym_function_item] = STATE(243), + [sym_function_signature_item] = STATE(243), + [sym_function_modifiers] = STATE(2506), + [sym_impl_item] = STATE(243), + [sym_trait_item] = STATE(243), + [sym_associated_type] = STATE(243), + [sym_let_declaration] = STATE(243), + [sym_use_declaration] = STATE(243), + [sym_extern_modifier] = STATE(1498), + [sym_visibility_modifier] = STATE(1319), + [sym_bracketed_type] = STATE(2319), + [sym_generic_type_with_turbofish] = STATE(2321), + [sym_macro_invocation] = STATE(243), + [sym_scoped_identifier] = STATE(2228), + [aux_sym_declaration_list_repeat1] = STATE(243), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_macro_rules_BANG] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(995), + [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_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(999), + [anon_sym_default] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1003), + [anon_sym_fn] = ACTIONS(1005), + [anon_sym_impl] = ACTIONS(1007), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_mod] = ACTIONS(1011), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_trait] = ACTIONS(934), - [anon_sym_type] = ACTIONS(936), - [anon_sym_union] = ACTIONS(938), - [anon_sym_unsafe] = ACTIONS(940), - [anon_sym_use] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(946), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1015), + [anon_sym_trait] = ACTIONS(1017), + [anon_sym_type] = ACTIONS(1019), + [anon_sym_union] = ACTIONS(1021), + [anon_sym_unsafe] = ACTIONS(1023), + [anon_sym_use] = ACTIONS(1025), + [anon_sym_POUND] = ACTIONS(1027), + [anon_sym_extern] = ACTIONS(1029), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(948), + [anon_sym_COLON_COLON] = ACTIONS(1031), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(950), - [sym_super] = ACTIONS(950), - [sym_crate] = ACTIONS(952), - [sym_metavariable] = ACTIONS(954), + [sym_self] = ACTIONS(1033), + [sym_super] = ACTIONS(1033), + [sym_crate] = ACTIONS(1035), + [sym_metavariable] = ACTIONS(1037), [sym_block_comment] = ACTIONS(3), }, [242] = { - [sym_empty_statement] = STATE(241), - [sym_macro_definition] = STATE(241), - [sym_attribute_item] = STATE(241), - [sym_inner_attribute_item] = STATE(241), - [sym_mod_item] = STATE(241), - [sym_foreign_mod_item] = STATE(241), - [sym_struct_item] = STATE(241), - [sym_union_item] = STATE(241), - [sym_enum_item] = STATE(241), - [sym_extern_crate_declaration] = STATE(241), - [sym_const_item] = STATE(241), - [sym_static_item] = STATE(241), - [sym_type_item] = STATE(241), - [sym_function_item] = STATE(241), - [sym_function_signature_item] = STATE(241), - [sym_function_modifiers] = STATE(2461), - [sym_impl_item] = STATE(241), - [sym_trait_item] = STATE(241), - [sym_associated_type] = STATE(241), - [sym_let_declaration] = STATE(241), - [sym_use_declaration] = STATE(241), - [sym_extern_modifier] = STATE(1431), - [sym_visibility_modifier] = STATE(1270), - [sym_bracketed_type] = STATE(2287), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(241), - [sym_scoped_identifier] = STATE(2223), - [aux_sym_declaration_list_repeat1] = STATE(241), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_macro_rules_BANG] = ACTIONS(910), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_u8] = ACTIONS(914), - [anon_sym_i8] = ACTIONS(914), - [anon_sym_u16] = ACTIONS(914), - [anon_sym_i16] = ACTIONS(914), - [anon_sym_u32] = ACTIONS(914), - [anon_sym_i32] = ACTIONS(914), - [anon_sym_u64] = ACTIONS(914), - [anon_sym_i64] = ACTIONS(914), - [anon_sym_u128] = ACTIONS(914), - [anon_sym_i128] = ACTIONS(914), - [anon_sym_isize] = ACTIONS(914), - [anon_sym_usize] = ACTIONS(914), - [anon_sym_f32] = ACTIONS(914), - [anon_sym_f64] = ACTIONS(914), - [anon_sym_bool] = ACTIONS(914), - [anon_sym_str] = ACTIONS(914), - [anon_sym_char] = ACTIONS(914), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(916), - [anon_sym_default] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_fn] = ACTIONS(922), - [anon_sym_impl] = ACTIONS(924), - [anon_sym_let] = ACTIONS(926), - [anon_sym_mod] = ACTIONS(928), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_trait] = ACTIONS(934), - [anon_sym_type] = ACTIONS(936), - [anon_sym_union] = ACTIONS(938), - [anon_sym_unsafe] = ACTIONS(940), - [anon_sym_use] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(948), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(950), - [sym_super] = ACTIONS(950), - [sym_crate] = ACTIONS(952), - [sym_metavariable] = ACTIONS(954), + [sym__token_pattern] = STATE(242), + [sym_token_tree_pattern] = STATE(242), + [sym_token_binding_pattern] = STATE(242), + [sym_token_repetition_pattern] = STATE(242), + [sym__literal] = STATE(242), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_RPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_RBRACK] = ACTIONS(1045), + [anon_sym_DOLLAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(1039), + [anon_sym_i8] = ACTIONS(1039), + [anon_sym_u16] = ACTIONS(1039), + [anon_sym_i16] = ACTIONS(1039), + [anon_sym_u32] = ACTIONS(1039), + [anon_sym_i32] = ACTIONS(1039), + [anon_sym_u64] = ACTIONS(1039), + [anon_sym_i64] = ACTIONS(1039), + [anon_sym_u128] = ACTIONS(1039), + [anon_sym_i128] = ACTIONS(1039), + [anon_sym_isize] = ACTIONS(1039), + [anon_sym_usize] = ACTIONS(1039), + [anon_sym_f32] = ACTIONS(1039), + [anon_sym_f64] = ACTIONS(1039), + [anon_sym_bool] = ACTIONS(1039), + [anon_sym_str] = ACTIONS(1039), + [anon_sym_char] = ACTIONS(1039), + [aux_sym__non_special_token_token1] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1039), + [anon_sym_as] = ACTIONS(1039), + [anon_sym_async] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1039), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1039), + [anon_sym_fn] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_impl] = ACTIONS(1039), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_loop] = ACTIONS(1039), + [anon_sym_match] = ACTIONS(1039), + [anon_sym_mod] = ACTIONS(1039), + [anon_sym_pub] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_struct] = ACTIONS(1039), + [anon_sym_trait] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_union] = ACTIONS(1039), + [anon_sym_unsafe] = ACTIONS(1039), + [anon_sym_use] = ACTIONS(1039), + [anon_sym_where] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [sym_mutable_specifier] = ACTIONS(1039), + [sym_integer_literal] = ACTIONS(1056), + [aux_sym_string_literal_token1] = ACTIONS(1059), + [sym_char_literal] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1062), + [anon_sym_false] = ACTIONS(1062), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1039), + [sym_super] = ACTIONS(1039), + [sym_crate] = ACTIONS(1039), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1056), + [sym_float_literal] = ACTIONS(1056), [sym_block_comment] = ACTIONS(3), }, [243] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_RBRACK] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_u8] = ACTIONS(960), - [anon_sym_i8] = ACTIONS(960), - [anon_sym_u16] = ACTIONS(960), - [anon_sym_i16] = ACTIONS(960), - [anon_sym_u32] = ACTIONS(960), - [anon_sym_i32] = ACTIONS(960), - [anon_sym_u64] = ACTIONS(960), - [anon_sym_i64] = ACTIONS(960), - [anon_sym_u128] = ACTIONS(960), - [anon_sym_i128] = ACTIONS(960), - [anon_sym_isize] = ACTIONS(960), - [anon_sym_usize] = ACTIONS(960), - [anon_sym_f32] = ACTIONS(960), - [anon_sym_f64] = ACTIONS(960), - [anon_sym_bool] = ACTIONS(960), - [anon_sym_str] = ACTIONS(960), - [anon_sym_char] = ACTIONS(960), - [aux_sym__non_special_token_token1] = ACTIONS(960), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_as] = ACTIONS(960), - [anon_sym_async] = ACTIONS(960), - [anon_sym_await] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_fn] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_impl] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_loop] = ACTIONS(960), - [anon_sym_match] = ACTIONS(960), - [anon_sym_mod] = ACTIONS(960), - [anon_sym_pub] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_static] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_trait] = ACTIONS(960), - [anon_sym_type] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_unsafe] = ACTIONS(960), - [anon_sym_use] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [sym_mutable_specifier] = ACTIONS(960), - [sym_integer_literal] = ACTIONS(977), - [aux_sym_string_literal_token1] = ACTIONS(980), - [sym_char_literal] = ACTIONS(977), - [anon_sym_true] = ACTIONS(983), - [anon_sym_false] = ACTIONS(983), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(960), - [sym_super] = ACTIONS(960), - [sym_crate] = ACTIONS(960), - [sym_metavariable] = ACTIONS(988), - [sym_raw_string_literal] = ACTIONS(977), - [sym_float_literal] = ACTIONS(977), + [sym_empty_statement] = STATE(240), + [sym_macro_definition] = STATE(240), + [sym_attribute_item] = STATE(240), + [sym_inner_attribute_item] = STATE(240), + [sym_mod_item] = STATE(240), + [sym_foreign_mod_item] = STATE(240), + [sym_struct_item] = STATE(240), + [sym_union_item] = STATE(240), + [sym_enum_item] = STATE(240), + [sym_extern_crate_declaration] = STATE(240), + [sym_const_item] = STATE(240), + [sym_static_item] = STATE(240), + [sym_type_item] = STATE(240), + [sym_function_item] = STATE(240), + [sym_function_signature_item] = STATE(240), + [sym_function_modifiers] = STATE(2506), + [sym_impl_item] = STATE(240), + [sym_trait_item] = STATE(240), + [sym_associated_type] = STATE(240), + [sym_let_declaration] = STATE(240), + [sym_use_declaration] = STATE(240), + [sym_extern_modifier] = STATE(1498), + [sym_visibility_modifier] = STATE(1319), + [sym_bracketed_type] = STATE(2319), + [sym_generic_type_with_turbofish] = STATE(2321), + [sym_macro_invocation] = STATE(240), + [sym_scoped_identifier] = STATE(2228), + [aux_sym_declaration_list_repeat1] = STATE(240), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_macro_rules_BANG] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(1070), + [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_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(999), + [anon_sym_default] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1003), + [anon_sym_fn] = ACTIONS(1005), + [anon_sym_impl] = ACTIONS(1007), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_mod] = ACTIONS(1011), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1015), + [anon_sym_trait] = ACTIONS(1017), + [anon_sym_type] = ACTIONS(1019), + [anon_sym_union] = ACTIONS(1021), + [anon_sym_unsafe] = ACTIONS(1023), + [anon_sym_use] = ACTIONS(1025), + [anon_sym_POUND] = ACTIONS(1027), + [anon_sym_extern] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1031), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1033), + [sym_super] = ACTIONS(1033), + [sym_crate] = ACTIONS(1035), + [sym_metavariable] = ACTIONS(1037), [sym_block_comment] = ACTIONS(3), }, [244] = { @@ -39393,176 +38903,176 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(245), [sym_function_item] = STATE(245), [sym_function_signature_item] = STATE(245), - [sym_function_modifiers] = STATE(2461), + [sym_function_modifiers] = STATE(2506), [sym_impl_item] = STATE(245), [sym_trait_item] = STATE(245), [sym_associated_type] = STATE(245), [sym_let_declaration] = STATE(245), [sym_use_declaration] = STATE(245), - [sym_extern_modifier] = STATE(1431), - [sym_visibility_modifier] = STATE(1270), - [sym_bracketed_type] = STATE(2287), - [sym_generic_type_with_turbofish] = STATE(2431), + [sym_extern_modifier] = STATE(1498), + [sym_visibility_modifier] = STATE(1319), + [sym_bracketed_type] = STATE(2319), + [sym_generic_type_with_turbofish] = STATE(2321), [sym_macro_invocation] = STATE(245), - [sym_scoped_identifier] = STATE(2223), + [sym_scoped_identifier] = STATE(2228), [aux_sym_declaration_list_repeat1] = STATE(245), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_macro_rules_BANG] = ACTIONS(910), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(914), - [anon_sym_i8] = ACTIONS(914), - [anon_sym_u16] = ACTIONS(914), - [anon_sym_i16] = ACTIONS(914), - [anon_sym_u32] = ACTIONS(914), - [anon_sym_i32] = ACTIONS(914), - [anon_sym_u64] = ACTIONS(914), - [anon_sym_i64] = ACTIONS(914), - [anon_sym_u128] = ACTIONS(914), - [anon_sym_i128] = ACTIONS(914), - [anon_sym_isize] = ACTIONS(914), - [anon_sym_usize] = ACTIONS(914), - [anon_sym_f32] = ACTIONS(914), - [anon_sym_f64] = ACTIONS(914), - [anon_sym_bool] = ACTIONS(914), - [anon_sym_str] = ACTIONS(914), - [anon_sym_char] = ACTIONS(914), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(916), - [anon_sym_default] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_fn] = ACTIONS(922), - [anon_sym_impl] = ACTIONS(924), - [anon_sym_let] = ACTIONS(926), - [anon_sym_mod] = ACTIONS(928), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_macro_rules_BANG] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(1072), + [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_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(999), + [anon_sym_default] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1003), + [anon_sym_fn] = ACTIONS(1005), + [anon_sym_impl] = ACTIONS(1007), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_mod] = ACTIONS(1011), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_trait] = ACTIONS(934), - [anon_sym_type] = ACTIONS(936), - [anon_sym_union] = ACTIONS(938), - [anon_sym_unsafe] = ACTIONS(940), - [anon_sym_use] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(946), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1015), + [anon_sym_trait] = ACTIONS(1017), + [anon_sym_type] = ACTIONS(1019), + [anon_sym_union] = ACTIONS(1021), + [anon_sym_unsafe] = ACTIONS(1023), + [anon_sym_use] = ACTIONS(1025), + [anon_sym_POUND] = ACTIONS(1027), + [anon_sym_extern] = ACTIONS(1029), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(948), + [anon_sym_COLON_COLON] = ACTIONS(1031), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(950), - [sym_super] = ACTIONS(950), - [sym_crate] = ACTIONS(952), - [sym_metavariable] = ACTIONS(954), + [sym_self] = ACTIONS(1033), + [sym_super] = ACTIONS(1033), + [sym_crate] = ACTIONS(1035), + [sym_metavariable] = ACTIONS(1037), [sym_block_comment] = ACTIONS(3), }, [245] = { - [sym_empty_statement] = STATE(245), - [sym_macro_definition] = STATE(245), - [sym_attribute_item] = STATE(245), - [sym_inner_attribute_item] = STATE(245), - [sym_mod_item] = STATE(245), - [sym_foreign_mod_item] = STATE(245), - [sym_struct_item] = STATE(245), - [sym_union_item] = STATE(245), - [sym_enum_item] = STATE(245), - [sym_extern_crate_declaration] = STATE(245), - [sym_const_item] = STATE(245), - [sym_static_item] = STATE(245), - [sym_type_item] = STATE(245), - [sym_function_item] = STATE(245), - [sym_function_signature_item] = STATE(245), - [sym_function_modifiers] = STATE(2461), - [sym_impl_item] = STATE(245), - [sym_trait_item] = STATE(245), - [sym_associated_type] = STATE(245), - [sym_let_declaration] = STATE(245), - [sym_use_declaration] = STATE(245), - [sym_extern_modifier] = STATE(1431), - [sym_visibility_modifier] = STATE(1270), - [sym_bracketed_type] = STATE(2287), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(245), - [sym_scoped_identifier] = STATE(2223), - [aux_sym_declaration_list_repeat1] = STATE(245), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_macro_rules_BANG] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_u8] = ACTIONS(1004), - [anon_sym_i8] = ACTIONS(1004), - [anon_sym_u16] = ACTIONS(1004), - [anon_sym_i16] = ACTIONS(1004), - [anon_sym_u32] = ACTIONS(1004), - [anon_sym_i32] = ACTIONS(1004), - [anon_sym_u64] = ACTIONS(1004), - [anon_sym_i64] = ACTIONS(1004), - [anon_sym_u128] = ACTIONS(1004), - [anon_sym_i128] = ACTIONS(1004), - [anon_sym_isize] = ACTIONS(1004), - [anon_sym_usize] = ACTIONS(1004), - [anon_sym_f32] = ACTIONS(1004), - [anon_sym_f64] = ACTIONS(1004), - [anon_sym_bool] = ACTIONS(1004), - [anon_sym_str] = ACTIONS(1004), - [anon_sym_char] = ACTIONS(1004), - [anon_sym_async] = ACTIONS(1007), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_fn] = ACTIONS(1019), - [anon_sym_impl] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1025), - [anon_sym_mod] = ACTIONS(1028), - [anon_sym_pub] = ACTIONS(1031), - [anon_sym_static] = ACTIONS(1034), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_trait] = ACTIONS(1040), - [anon_sym_type] = ACTIONS(1043), - [anon_sym_union] = ACTIONS(1046), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(1055), - [anon_sym_extern] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(1064), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1067), - [sym_super] = ACTIONS(1067), - [sym_crate] = ACTIONS(1070), - [sym_metavariable] = ACTIONS(1073), + [sym_empty_statement] = STATE(240), + [sym_macro_definition] = STATE(240), + [sym_attribute_item] = STATE(240), + [sym_inner_attribute_item] = STATE(240), + [sym_mod_item] = STATE(240), + [sym_foreign_mod_item] = STATE(240), + [sym_struct_item] = STATE(240), + [sym_union_item] = STATE(240), + [sym_enum_item] = STATE(240), + [sym_extern_crate_declaration] = STATE(240), + [sym_const_item] = STATE(240), + [sym_static_item] = STATE(240), + [sym_type_item] = STATE(240), + [sym_function_item] = STATE(240), + [sym_function_signature_item] = STATE(240), + [sym_function_modifiers] = STATE(2506), + [sym_impl_item] = STATE(240), + [sym_trait_item] = STATE(240), + [sym_associated_type] = STATE(240), + [sym_let_declaration] = STATE(240), + [sym_use_declaration] = STATE(240), + [sym_extern_modifier] = STATE(1498), + [sym_visibility_modifier] = STATE(1319), + [sym_bracketed_type] = STATE(2319), + [sym_generic_type_with_turbofish] = STATE(2321), + [sym_macro_invocation] = STATE(240), + [sym_scoped_identifier] = STATE(2228), + [aux_sym_declaration_list_repeat1] = STATE(240), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_macro_rules_BANG] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(1074), + [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_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(999), + [anon_sym_default] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1003), + [anon_sym_fn] = ACTIONS(1005), + [anon_sym_impl] = ACTIONS(1007), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_mod] = ACTIONS(1011), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1015), + [anon_sym_trait] = ACTIONS(1017), + [anon_sym_type] = ACTIONS(1019), + [anon_sym_union] = ACTIONS(1021), + [anon_sym_unsafe] = ACTIONS(1023), + [anon_sym_use] = ACTIONS(1025), + [anon_sym_POUND] = ACTIONS(1027), + [anon_sym_extern] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1031), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1033), + [sym_super] = ACTIONS(1033), + [sym_crate] = ACTIONS(1035), + [sym_metavariable] = ACTIONS(1037), [sym_block_comment] = ACTIONS(3), }, [246] = { - [sym_attribute_item] = STATE(500), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2317), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_arm] = STATE(290), - [sym_last_match_arm] = STATE(2323), - [sym_match_pattern] = STATE(2324), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(500), - [aux_sym_match_block_repeat1] = STATE(290), + [sym_attribute_item] = STATE(523), + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_macro_invocation] = STATE(2313), + [sym_scoped_identifier] = STATE(1556), + [sym_scoped_type_identifier] = STATE(1971), + [sym_match_arm] = STATE(354), + [sym_last_match_arm] = STATE(2314), + [sym_match_pattern] = STATE(2318), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2065), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_enum_variant_list_repeat1] = STATE(523), + [aux_sym_match_block_repeat1] = STATE(354), [sym_identifier] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_RBRACE] = ACTIONS(1080), @@ -39588,58 +39098,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(1088), [anon_sym_union] = ACTIONS(1088), [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [247] = { - [sym_attribute_item] = STATE(500), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2317), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_arm] = STATE(353), - [sym_last_match_arm] = STATE(2463), - [sym_match_pattern] = STATE(2324), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(500), - [aux_sym_match_block_repeat1] = STATE(353), + [sym_attribute_item] = STATE(523), + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_macro_invocation] = STATE(2313), + [sym_scoped_identifier] = STATE(1556), + [sym_scoped_type_identifier] = STATE(1971), + [sym_match_arm] = STATE(408), + [sym_last_match_arm] = STATE(2501), + [sym_match_pattern] = STATE(2318), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2065), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_enum_variant_list_repeat1] = STATE(523), + [aux_sym_match_block_repeat1] = STATE(408), [sym_identifier] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_RBRACE] = ACTIONS(1098), @@ -39665,58 +39175,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(1088), [anon_sym_union] = ACTIONS(1088), [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [248] = { - [sym_attribute_item] = STATE(500), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2317), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_arm] = STATE(293), - [sym_last_match_arm] = STATE(2330), - [sym_match_pattern] = STATE(2324), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(500), - [aux_sym_match_block_repeat1] = STATE(293), + [sym_attribute_item] = STATE(523), + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_macro_invocation] = STATE(2313), + [sym_scoped_identifier] = STATE(1556), + [sym_scoped_type_identifier] = STATE(1971), + [sym_match_arm] = STATE(422), + [sym_last_match_arm] = STATE(2376), + [sym_match_pattern] = STATE(2318), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2065), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_enum_variant_list_repeat1] = STATE(523), + [aux_sym_match_block_repeat1] = STATE(422), [sym_identifier] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_RBRACE] = ACTIONS(1100), @@ -39742,26 +39252,26 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(1088), [anon_sym_union] = ACTIONS(1088), [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [249] = { @@ -41437,82 +40947,386 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [271] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1196), + [ts_builtin_sym_end] = ACTIONS(1190), + [sym_identifier] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1190), + [anon_sym_macro_rules_BANG] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1190), + [anon_sym_RBRACE] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1190), + [anon_sym_u8] = ACTIONS(1192), + [anon_sym_i8] = ACTIONS(1192), + [anon_sym_u16] = ACTIONS(1192), + [anon_sym_i16] = ACTIONS(1192), + [anon_sym_u32] = ACTIONS(1192), + [anon_sym_i32] = ACTIONS(1192), + [anon_sym_u64] = ACTIONS(1192), + [anon_sym_i64] = ACTIONS(1192), + [anon_sym_u128] = ACTIONS(1192), + [anon_sym_i128] = ACTIONS(1192), + [anon_sym_isize] = ACTIONS(1192), + [anon_sym_usize] = ACTIONS(1192), + [anon_sym_f32] = ACTIONS(1192), + [anon_sym_f64] = ACTIONS(1192), + [anon_sym_bool] = ACTIONS(1192), + [anon_sym_str] = ACTIONS(1192), + [anon_sym_char] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_break] = ACTIONS(1192), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_continue] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(1192), + [anon_sym_enum] = ACTIONS(1192), + [anon_sym_fn] = ACTIONS(1192), + [anon_sym_for] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(1192), + [anon_sym_impl] = ACTIONS(1192), + [anon_sym_let] = ACTIONS(1192), + [anon_sym_loop] = ACTIONS(1192), + [anon_sym_match] = ACTIONS(1192), + [anon_sym_mod] = ACTIONS(1192), + [anon_sym_pub] = ACTIONS(1192), + [anon_sym_return] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1192), + [anon_sym_struct] = ACTIONS(1192), + [anon_sym_trait] = ACTIONS(1192), + [anon_sym_type] = ACTIONS(1192), + [anon_sym_union] = ACTIONS(1192), + [anon_sym_unsafe] = ACTIONS(1192), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_while] = ACTIONS(1192), + [anon_sym_POUND] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_COLON_COLON] = ACTIONS(1190), + [anon_sym_AMP] = ACTIONS(1190), + [anon_sym_DOT_DOT] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_move] = ACTIONS(1192), + [sym_integer_literal] = ACTIONS(1190), + [aux_sym_string_literal_token1] = ACTIONS(1190), + [sym_char_literal] = ACTIONS(1190), + [anon_sym_true] = ACTIONS(1192), + [anon_sym_false] = ACTIONS(1192), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1192), + [sym_super] = ACTIONS(1192), + [sym_crate] = ACTIONS(1192), + [sym_metavariable] = ACTIONS(1190), + [sym_raw_string_literal] = ACTIONS(1190), + [sym_float_literal] = ACTIONS(1190), + [sym_block_comment] = ACTIONS(3), + }, + [272] = { + [ts_builtin_sym_end] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1194), + [anon_sym_macro_rules_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_u8] = ACTIONS(1196), + [anon_sym_i8] = ACTIONS(1196), + [anon_sym_u16] = ACTIONS(1196), + [anon_sym_i16] = ACTIONS(1196), + [anon_sym_u32] = ACTIONS(1196), + [anon_sym_i32] = ACTIONS(1196), + [anon_sym_u64] = ACTIONS(1196), + [anon_sym_i64] = ACTIONS(1196), + [anon_sym_u128] = ACTIONS(1196), + [anon_sym_i128] = ACTIONS(1196), + [anon_sym_isize] = ACTIONS(1196), + [anon_sym_usize] = ACTIONS(1196), + [anon_sym_f32] = ACTIONS(1196), + [anon_sym_f64] = ACTIONS(1196), + [anon_sym_bool] = ACTIONS(1196), + [anon_sym_str] = ACTIONS(1196), + [anon_sym_char] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_async] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_fn] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_impl] = ACTIONS(1196), + [anon_sym_let] = ACTIONS(1196), + [anon_sym_loop] = ACTIONS(1196), + [anon_sym_match] = ACTIONS(1196), + [anon_sym_mod] = ACTIONS(1196), + [anon_sym_pub] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_trait] = ACTIONS(1196), + [anon_sym_type] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_unsafe] = ACTIONS(1196), + [anon_sym_use] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_POUND] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_AMP] = ACTIONS(1194), + [anon_sym_DOT_DOT] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_move] = ACTIONS(1196), + [sym_integer_literal] = ACTIONS(1194), + [aux_sym_string_literal_token1] = ACTIONS(1194), + [sym_char_literal] = ACTIONS(1194), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1196), + [sym_super] = ACTIONS(1196), + [sym_crate] = ACTIONS(1196), + [sym_metavariable] = ACTIONS(1194), + [sym_raw_string_literal] = ACTIONS(1194), + [sym_float_literal] = ACTIONS(1194), + [sym_block_comment] = ACTIONS(3), + }, + [273] = { + [ts_builtin_sym_end] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_macro_rules_BANG] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [aux_sym__non_special_token_token1] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [sym_mutable_specifier] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_u8] = ACTIONS(1200), + [anon_sym_i8] = ACTIONS(1200), + [anon_sym_u16] = ACTIONS(1200), + [anon_sym_i16] = ACTIONS(1200), + [anon_sym_u32] = ACTIONS(1200), + [anon_sym_i32] = ACTIONS(1200), + [anon_sym_u64] = ACTIONS(1200), + [anon_sym_i64] = ACTIONS(1200), + [anon_sym_u128] = ACTIONS(1200), + [anon_sym_i128] = ACTIONS(1200), + [anon_sym_isize] = ACTIONS(1200), + [anon_sym_usize] = ACTIONS(1200), + [anon_sym_f32] = ACTIONS(1200), + [anon_sym_f64] = ACTIONS(1200), + [anon_sym_bool] = ACTIONS(1200), + [anon_sym_str] = ACTIONS(1200), + [anon_sym_char] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_async] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_fn] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_impl] = ACTIONS(1200), + [anon_sym_let] = ACTIONS(1200), + [anon_sym_loop] = ACTIONS(1200), + [anon_sym_match] = ACTIONS(1200), + [anon_sym_mod] = ACTIONS(1200), + [anon_sym_pub] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_trait] = ACTIONS(1200), + [anon_sym_type] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_unsafe] = ACTIONS(1200), + [anon_sym_use] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_POUND] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_COLON_COLON] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_DOT_DOT] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_move] = ACTIONS(1200), + [sym_integer_literal] = ACTIONS(1198), + [aux_sym_string_literal_token1] = ACTIONS(1198), + [sym_char_literal] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1200), + [anon_sym_false] = ACTIONS(1200), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1198), + [sym_raw_string_literal] = ACTIONS(1198), + [sym_float_literal] = ACTIONS(1198), + [sym_block_comment] = ACTIONS(3), + }, + [274] = { + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_macro_rules_BANG] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_async] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_fn] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_impl] = ACTIONS(1204), + [anon_sym_let] = ACTIONS(1204), + [anon_sym_loop] = ACTIONS(1204), + [anon_sym_match] = ACTIONS(1204), + [anon_sym_mod] = ACTIONS(1204), + [anon_sym_pub] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_struct] = ACTIONS(1204), + [anon_sym_trait] = ACTIONS(1204), + [anon_sym_type] = ACTIONS(1204), + [anon_sym_union] = ACTIONS(1204), + [anon_sym_unsafe] = ACTIONS(1204), + [anon_sym_use] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_POUND] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1202), + [anon_sym_COLON_COLON] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_DOT_DOT] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1202), + [anon_sym_move] = ACTIONS(1204), [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), + [aux_sym_string_literal_token1] = ACTIONS(1202), [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1208), + [anon_sym_true] = ACTIONS(1204), + [anon_sym_false] = ACTIONS(1204), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1204), + [sym_super] = ACTIONS(1204), + [sym_crate] = ACTIONS(1204), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(1202), [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [272] = { + [275] = { + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_macro_rules_BANG] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_u8] = ACTIONS(1208), + [anon_sym_i8] = ACTIONS(1208), + [anon_sym_u16] = ACTIONS(1208), + [anon_sym_i16] = ACTIONS(1208), + [anon_sym_u32] = ACTIONS(1208), + [anon_sym_i32] = ACTIONS(1208), + [anon_sym_u64] = ACTIONS(1208), + [anon_sym_i64] = ACTIONS(1208), + [anon_sym_u128] = ACTIONS(1208), + [anon_sym_i128] = ACTIONS(1208), + [anon_sym_isize] = ACTIONS(1208), + [anon_sym_usize] = ACTIONS(1208), + [anon_sym_f32] = ACTIONS(1208), + [anon_sym_f64] = ACTIONS(1208), + [anon_sym_bool] = ACTIONS(1208), + [anon_sym_str] = ACTIONS(1208), + [anon_sym_char] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_fn] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_impl] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_loop] = ACTIONS(1208), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_mod] = ACTIONS(1208), + [anon_sym_pub] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_trait] = ACTIONS(1208), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_unsafe] = ACTIONS(1208), + [anon_sym_use] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_POUND] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_DOT_DOT] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_PIPE] = ACTIONS(1206), + [anon_sym_move] = ACTIONS(1208), + [sym_integer_literal] = ACTIONS(1206), + [aux_sym_string_literal_token1] = ACTIONS(1206), + [sym_char_literal] = ACTIONS(1206), + [anon_sym_true] = ACTIONS(1208), + [anon_sym_false] = ACTIONS(1208), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_crate] = ACTIONS(1208), + [sym_metavariable] = ACTIONS(1206), + [sym_raw_string_literal] = ACTIONS(1206), + [sym_float_literal] = ACTIONS(1206), + [sym_block_comment] = ACTIONS(3), + }, + [276] = { [ts_builtin_sym_end] = ACTIONS(1210), [sym_identifier] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(1210), @@ -41588,159 +41402,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1210), [sym_block_comment] = ACTIONS(3), }, - [273] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [aux_sym__non_special_token_token1] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [sym_mutable_specifier] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [274] = { - [ts_builtin_sym_end] = ACTIONS(393), - [sym_identifier] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_macro_rules_BANG] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(395), - [anon_sym_i8] = ACTIONS(395), - [anon_sym_u16] = ACTIONS(395), - [anon_sym_i16] = ACTIONS(395), - [anon_sym_u32] = ACTIONS(395), - [anon_sym_i32] = ACTIONS(395), - [anon_sym_u64] = ACTIONS(395), - [anon_sym_i64] = ACTIONS(395), - [anon_sym_u128] = ACTIONS(395), - [anon_sym_i128] = ACTIONS(395), - [anon_sym_isize] = ACTIONS(395), - [anon_sym_usize] = ACTIONS(395), - [anon_sym_f32] = ACTIONS(395), - [anon_sym_f64] = ACTIONS(395), - [anon_sym_bool] = ACTIONS(395), - [anon_sym_str] = ACTIONS(395), - [anon_sym_char] = ACTIONS(395), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_async] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_const] = ACTIONS(395), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_default] = ACTIONS(395), - [anon_sym_enum] = ACTIONS(395), - [anon_sym_fn] = ACTIONS(395), - [anon_sym_for] = ACTIONS(395), - [anon_sym_if] = ACTIONS(395), - [anon_sym_impl] = ACTIONS(395), - [anon_sym_let] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(395), - [anon_sym_match] = ACTIONS(395), - [anon_sym_mod] = ACTIONS(395), - [anon_sym_pub] = ACTIONS(395), - [anon_sym_return] = ACTIONS(395), - [anon_sym_static] = ACTIONS(395), - [anon_sym_struct] = ACTIONS(395), - [anon_sym_trait] = ACTIONS(395), - [anon_sym_type] = ACTIONS(395), - [anon_sym_union] = ACTIONS(395), - [anon_sym_unsafe] = ACTIONS(395), - [anon_sym_use] = ACTIONS(395), - [anon_sym_while] = ACTIONS(395), - [anon_sym_POUND] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_extern] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_move] = ACTIONS(395), - [sym_integer_literal] = ACTIONS(393), - [aux_sym_string_literal_token1] = ACTIONS(393), - [sym_char_literal] = ACTIONS(393), - [anon_sym_true] = ACTIONS(395), - [anon_sym_false] = ACTIONS(395), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(395), - [sym_super] = ACTIONS(395), - [sym_crate] = ACTIONS(395), - [sym_metavariable] = ACTIONS(393), - [sym_raw_string_literal] = ACTIONS(393), - [sym_float_literal] = ACTIONS(393), - [sym_block_comment] = ACTIONS(3), - }, - [275] = { + [277] = { [ts_builtin_sym_end] = ACTIONS(1214), [sym_identifier] = ACTIONS(1216), [anon_sym_SEMI] = ACTIONS(1214), @@ -41816,7 +41478,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1214), [sym_block_comment] = ACTIONS(3), }, - [276] = { + [278] = { [ts_builtin_sym_end] = ACTIONS(1218), [sym_identifier] = ACTIONS(1220), [anon_sym_SEMI] = ACTIONS(1218), @@ -41892,7 +41554,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1218), [sym_block_comment] = ACTIONS(3), }, - [277] = { + [279] = { [ts_builtin_sym_end] = ACTIONS(1222), [sym_identifier] = ACTIONS(1224), [anon_sym_SEMI] = ACTIONS(1222), @@ -41968,83 +41630,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1222), [sym_block_comment] = ACTIONS(3), }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(397), - [sym_identifier] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_macro_rules_BANG] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(399), - [anon_sym_const] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_default] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(399), - [anon_sym_fn] = ACTIONS(399), - [anon_sym_for] = ACTIONS(399), - [anon_sym_if] = ACTIONS(399), - [anon_sym_impl] = ACTIONS(399), - [anon_sym_let] = ACTIONS(399), - [anon_sym_loop] = ACTIONS(399), - [anon_sym_match] = ACTIONS(399), - [anon_sym_mod] = ACTIONS(399), - [anon_sym_pub] = ACTIONS(399), - [anon_sym_return] = ACTIONS(399), - [anon_sym_static] = ACTIONS(399), - [anon_sym_struct] = ACTIONS(399), - [anon_sym_trait] = ACTIONS(399), - [anon_sym_type] = ACTIONS(399), - [anon_sym_union] = ACTIONS(399), - [anon_sym_unsafe] = ACTIONS(399), - [anon_sym_use] = ACTIONS(399), - [anon_sym_while] = ACTIONS(399), - [anon_sym_POUND] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_extern] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_move] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(397), - [aux_sym_string_literal_token1] = ACTIONS(397), - [sym_char_literal] = ACTIONS(397), - [anon_sym_true] = ACTIONS(399), - [anon_sym_false] = ACTIONS(399), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(399), - [sym_super] = ACTIONS(399), - [sym_crate] = ACTIONS(399), - [sym_metavariable] = ACTIONS(397), - [sym_raw_string_literal] = ACTIONS(397), - [sym_float_literal] = ACTIONS(397), - [sym_block_comment] = ACTIONS(3), - }, - [279] = { + [280] = { [ts_builtin_sym_end] = ACTIONS(1226), [sym_identifier] = ACTIONS(1228), [anon_sym_SEMI] = ACTIONS(1226), @@ -42120,82 +41706,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1226), [sym_block_comment] = ACTIONS(3), }, - [280] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_RBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1200), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [aux_sym__non_special_token_token1] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [sym_mutable_specifier] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, [281] = { [ts_builtin_sym_end] = ACTIONS(1230), [sym_identifier] = ACTIONS(1232), @@ -42273,82 +41783,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [282] = { - [ts_builtin_sym_end] = ACTIONS(389), - [sym_identifier] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(389), - [anon_sym_macro_rules_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_u8] = ACTIONS(391), - [anon_sym_i8] = ACTIONS(391), - [anon_sym_u16] = ACTIONS(391), - [anon_sym_i16] = ACTIONS(391), - [anon_sym_u32] = ACTIONS(391), - [anon_sym_i32] = ACTIONS(391), - [anon_sym_u64] = ACTIONS(391), - [anon_sym_i64] = ACTIONS(391), - [anon_sym_u128] = ACTIONS(391), - [anon_sym_i128] = ACTIONS(391), - [anon_sym_isize] = ACTIONS(391), - [anon_sym_usize] = ACTIONS(391), - [anon_sym_f32] = ACTIONS(391), - [anon_sym_f64] = ACTIONS(391), - [anon_sym_bool] = ACTIONS(391), - [anon_sym_str] = ACTIONS(391), - [anon_sym_char] = ACTIONS(391), - [anon_sym_SQUOTE] = ACTIONS(391), - [anon_sym_async] = ACTIONS(391), - [anon_sym_break] = ACTIONS(391), - [anon_sym_const] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(391), - [anon_sym_default] = ACTIONS(391), - [anon_sym_enum] = ACTIONS(391), - [anon_sym_fn] = ACTIONS(391), - [anon_sym_for] = ACTIONS(391), - [anon_sym_if] = ACTIONS(391), - [anon_sym_impl] = ACTIONS(391), - [anon_sym_let] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_match] = ACTIONS(391), - [anon_sym_mod] = ACTIONS(391), - [anon_sym_pub] = ACTIONS(391), - [anon_sym_return] = ACTIONS(391), - [anon_sym_static] = ACTIONS(391), - [anon_sym_struct] = ACTIONS(391), - [anon_sym_trait] = ACTIONS(391), - [anon_sym_type] = ACTIONS(391), - [anon_sym_union] = ACTIONS(391), - [anon_sym_unsafe] = ACTIONS(391), - [anon_sym_use] = ACTIONS(391), - [anon_sym_while] = ACTIONS(391), - [anon_sym_POUND] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_extern] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_move] = ACTIONS(391), - [sym_integer_literal] = ACTIONS(389), - [aux_sym_string_literal_token1] = ACTIONS(389), - [sym_char_literal] = ACTIONS(389), - [anon_sym_true] = ACTIONS(391), - [anon_sym_false] = ACTIONS(391), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(391), - [sym_super] = ACTIONS(391), - [sym_crate] = ACTIONS(391), - [sym_metavariable] = ACTIONS(389), - [sym_raw_string_literal] = ACTIONS(389), - [sym_float_literal] = ACTIONS(389), - [sym_block_comment] = ACTIONS(3), - }, - [283] = { [ts_builtin_sym_end] = ACTIONS(1234), [sym_identifier] = ACTIONS(1236), [anon_sym_SEMI] = ACTIONS(1234), @@ -42424,7 +41858,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1234), [sym_block_comment] = ACTIONS(3), }, - [284] = { + [283] = { [ts_builtin_sym_end] = ACTIONS(1238), [sym_identifier] = ACTIONS(1240), [anon_sym_SEMI] = ACTIONS(1238), @@ -42500,7 +41934,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1238), [sym_block_comment] = ACTIONS(3), }, - [285] = { + [284] = { [ts_builtin_sym_end] = ACTIONS(1242), [sym_identifier] = ACTIONS(1244), [anon_sym_SEMI] = ACTIONS(1242), @@ -42576,7 +42010,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1242), [sym_block_comment] = ACTIONS(3), }, - [286] = { + [285] = { [ts_builtin_sym_end] = ACTIONS(1246), [sym_identifier] = ACTIONS(1248), [anon_sym_SEMI] = ACTIONS(1246), @@ -42652,5052 +42086,5204 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1246), [sym_block_comment] = ACTIONS(3), }, + [286] = { + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_identifier] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_macro_rules_BANG] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_u8] = ACTIONS(1252), + [anon_sym_i8] = ACTIONS(1252), + [anon_sym_u16] = ACTIONS(1252), + [anon_sym_i16] = ACTIONS(1252), + [anon_sym_u32] = ACTIONS(1252), + [anon_sym_i32] = ACTIONS(1252), + [anon_sym_u64] = ACTIONS(1252), + [anon_sym_i64] = ACTIONS(1252), + [anon_sym_u128] = ACTIONS(1252), + [anon_sym_i128] = ACTIONS(1252), + [anon_sym_isize] = ACTIONS(1252), + [anon_sym_usize] = ACTIONS(1252), + [anon_sym_f32] = ACTIONS(1252), + [anon_sym_f64] = ACTIONS(1252), + [anon_sym_bool] = ACTIONS(1252), + [anon_sym_str] = ACTIONS(1252), + [anon_sym_char] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_async] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_fn] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_impl] = ACTIONS(1252), + [anon_sym_let] = ACTIONS(1252), + [anon_sym_loop] = ACTIONS(1252), + [anon_sym_match] = ACTIONS(1252), + [anon_sym_mod] = ACTIONS(1252), + [anon_sym_pub] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_trait] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_unsafe] = ACTIONS(1252), + [anon_sym_use] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_COLON_COLON] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_move] = ACTIONS(1252), + [sym_integer_literal] = ACTIONS(1250), + [aux_sym_string_literal_token1] = ACTIONS(1250), + [sym_char_literal] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1252), + [anon_sym_false] = ACTIONS(1252), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1252), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1250), + [sym_raw_string_literal] = ACTIONS(1250), + [sym_float_literal] = ACTIONS(1250), + [sym_block_comment] = ACTIONS(3), + }, [287] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1250), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_RPAREN] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(1264), - [anon_sym_u8] = ACTIONS(1250), - [anon_sym_i8] = ACTIONS(1250), - [anon_sym_u16] = ACTIONS(1250), - [anon_sym_i16] = ACTIONS(1250), - [anon_sym_u32] = ACTIONS(1250), - [anon_sym_i32] = ACTIONS(1250), - [anon_sym_u64] = ACTIONS(1250), - [anon_sym_i64] = ACTIONS(1250), - [anon_sym_u128] = ACTIONS(1250), - [anon_sym_i128] = ACTIONS(1250), - [anon_sym_isize] = ACTIONS(1250), - [anon_sym_usize] = ACTIONS(1250), - [anon_sym_f32] = ACTIONS(1250), - [anon_sym_f64] = ACTIONS(1250), - [anon_sym_bool] = ACTIONS(1250), - [anon_sym_str] = ACTIONS(1250), - [anon_sym_char] = ACTIONS(1250), - [aux_sym__non_special_token_token1] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_as] = ACTIONS(1250), - [anon_sym_async] = ACTIONS(1250), - [anon_sym_await] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_fn] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_impl] = ACTIONS(1250), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_loop] = ACTIONS(1250), - [anon_sym_match] = ACTIONS(1250), - [anon_sym_mod] = ACTIONS(1250), - [anon_sym_pub] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_trait] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_unsafe] = ACTIONS(1250), - [anon_sym_use] = ACTIONS(1250), - [anon_sym_where] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [sym_mutable_specifier] = ACTIONS(1250), - [sym_integer_literal] = ACTIONS(1267), - [aux_sym_string_literal_token1] = ACTIONS(1270), - [sym_char_literal] = ACTIONS(1267), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1250), - [sym_super] = ACTIONS(1250), - [sym_crate] = ACTIONS(1250), - [sym_metavariable] = ACTIONS(1276), - [sym_raw_string_literal] = ACTIONS(1267), - [sym_float_literal] = ACTIONS(1267), + [ts_builtin_sym_end] = ACTIONS(1254), + [sym_identifier] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_macro_rules_BANG] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1256), + [anon_sym_i8] = ACTIONS(1256), + [anon_sym_u16] = ACTIONS(1256), + [anon_sym_i16] = ACTIONS(1256), + [anon_sym_u32] = ACTIONS(1256), + [anon_sym_i32] = ACTIONS(1256), + [anon_sym_u64] = ACTIONS(1256), + [anon_sym_i64] = ACTIONS(1256), + [anon_sym_u128] = ACTIONS(1256), + [anon_sym_i128] = ACTIONS(1256), + [anon_sym_isize] = ACTIONS(1256), + [anon_sym_usize] = ACTIONS(1256), + [anon_sym_f32] = ACTIONS(1256), + [anon_sym_f64] = ACTIONS(1256), + [anon_sym_bool] = ACTIONS(1256), + [anon_sym_str] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_fn] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_impl] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1256), + [anon_sym_loop] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_mod] = ACTIONS(1256), + [anon_sym_pub] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_trait] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_unsafe] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_POUND] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_move] = ACTIONS(1256), + [sym_integer_literal] = ACTIONS(1254), + [aux_sym_string_literal_token1] = ACTIONS(1254), + [sym_char_literal] = ACTIONS(1254), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1256), + [sym_super] = ACTIONS(1256), + [sym_crate] = ACTIONS(1256), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1254), + [sym_float_literal] = ACTIONS(1254), [sym_block_comment] = ACTIONS(3), }, [288] = { - [ts_builtin_sym_end] = ACTIONS(1279), - [sym_identifier] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_macro_rules_BANG] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_RBRACE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_u8] = ACTIONS(1281), - [anon_sym_i8] = ACTIONS(1281), - [anon_sym_u16] = ACTIONS(1281), - [anon_sym_i16] = ACTIONS(1281), - [anon_sym_u32] = ACTIONS(1281), - [anon_sym_i32] = ACTIONS(1281), - [anon_sym_u64] = ACTIONS(1281), - [anon_sym_i64] = ACTIONS(1281), - [anon_sym_u128] = ACTIONS(1281), - [anon_sym_i128] = ACTIONS(1281), - [anon_sym_isize] = ACTIONS(1281), - [anon_sym_usize] = ACTIONS(1281), - [anon_sym_f32] = ACTIONS(1281), - [anon_sym_f64] = ACTIONS(1281), - [anon_sym_bool] = ACTIONS(1281), - [anon_sym_str] = ACTIONS(1281), - [anon_sym_char] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1281), - [anon_sym_async] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_const] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_default] = ACTIONS(1281), - [anon_sym_enum] = ACTIONS(1281), - [anon_sym_fn] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_impl] = ACTIONS(1281), - [anon_sym_let] = ACTIONS(1281), - [anon_sym_loop] = ACTIONS(1281), - [anon_sym_match] = ACTIONS(1281), - [anon_sym_mod] = ACTIONS(1281), - [anon_sym_pub] = ACTIONS(1281), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_struct] = ACTIONS(1281), - [anon_sym_trait] = ACTIONS(1281), - [anon_sym_type] = ACTIONS(1281), - [anon_sym_union] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1281), - [anon_sym_use] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_move] = ACTIONS(1281), - [sym_integer_literal] = ACTIONS(1279), - [aux_sym_string_literal_token1] = ACTIONS(1279), - [sym_char_literal] = ACTIONS(1279), - [anon_sym_true] = ACTIONS(1281), - [anon_sym_false] = ACTIONS(1281), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1281), - [sym_super] = ACTIONS(1281), - [sym_crate] = ACTIONS(1281), - [sym_metavariable] = ACTIONS(1279), - [sym_raw_string_literal] = ACTIONS(1279), - [sym_float_literal] = ACTIONS(1279), + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_identifier] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_macro_rules_BANG] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_async] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_fn] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_impl] = ACTIONS(1260), + [anon_sym_let] = ACTIONS(1260), + [anon_sym_loop] = ACTIONS(1260), + [anon_sym_match] = ACTIONS(1260), + [anon_sym_mod] = ACTIONS(1260), + [anon_sym_pub] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_trait] = ACTIONS(1260), + [anon_sym_type] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_unsafe] = ACTIONS(1260), + [anon_sym_use] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_POUND] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_COLON_COLON] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_DOT_DOT] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_move] = ACTIONS(1260), + [sym_integer_literal] = ACTIONS(1258), + [aux_sym_string_literal_token1] = ACTIONS(1258), + [sym_char_literal] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1260), + [anon_sym_false] = ACTIONS(1260), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1260), + [sym_super] = ACTIONS(1260), + [sym_crate] = ACTIONS(1260), + [sym_metavariable] = ACTIONS(1258), + [sym_raw_string_literal] = ACTIONS(1258), + [sym_float_literal] = ACTIONS(1258), [sym_block_comment] = ACTIONS(3), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(1283), - [sym_identifier] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_macro_rules_BANG] = ACTIONS(1283), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_RBRACE] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_u8] = ACTIONS(1285), - [anon_sym_i8] = ACTIONS(1285), - [anon_sym_u16] = ACTIONS(1285), - [anon_sym_i16] = ACTIONS(1285), - [anon_sym_u32] = ACTIONS(1285), - [anon_sym_i32] = ACTIONS(1285), - [anon_sym_u64] = ACTIONS(1285), - [anon_sym_i64] = ACTIONS(1285), - [anon_sym_u128] = ACTIONS(1285), - [anon_sym_i128] = ACTIONS(1285), - [anon_sym_isize] = ACTIONS(1285), - [anon_sym_usize] = ACTIONS(1285), - [anon_sym_f32] = ACTIONS(1285), - [anon_sym_f64] = ACTIONS(1285), - [anon_sym_bool] = ACTIONS(1285), - [anon_sym_str] = ACTIONS(1285), - [anon_sym_char] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_enum] = ACTIONS(1285), - [anon_sym_fn] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_impl] = ACTIONS(1285), - [anon_sym_let] = ACTIONS(1285), - [anon_sym_loop] = ACTIONS(1285), - [anon_sym_match] = ACTIONS(1285), - [anon_sym_mod] = ACTIONS(1285), - [anon_sym_pub] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_struct] = ACTIONS(1285), - [anon_sym_trait] = ACTIONS(1285), - [anon_sym_type] = ACTIONS(1285), - [anon_sym_union] = ACTIONS(1285), - [anon_sym_unsafe] = ACTIONS(1285), - [anon_sym_use] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_DOT_DOT] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1283), - [anon_sym_move] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1283), - [aux_sym_string_literal_token1] = ACTIONS(1283), - [sym_char_literal] = ACTIONS(1283), - [anon_sym_true] = ACTIONS(1285), - [anon_sym_false] = ACTIONS(1285), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1285), - [sym_super] = ACTIONS(1285), - [sym_crate] = ACTIONS(1285), - [sym_metavariable] = ACTIONS(1283), - [sym_raw_string_literal] = ACTIONS(1283), - [sym_float_literal] = ACTIONS(1283), + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_identifier] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_macro_rules_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_u8] = ACTIONS(1264), + [anon_sym_i8] = ACTIONS(1264), + [anon_sym_u16] = ACTIONS(1264), + [anon_sym_i16] = ACTIONS(1264), + [anon_sym_u32] = ACTIONS(1264), + [anon_sym_i32] = ACTIONS(1264), + [anon_sym_u64] = ACTIONS(1264), + [anon_sym_i64] = ACTIONS(1264), + [anon_sym_u128] = ACTIONS(1264), + [anon_sym_i128] = ACTIONS(1264), + [anon_sym_isize] = ACTIONS(1264), + [anon_sym_usize] = ACTIONS(1264), + [anon_sym_f32] = ACTIONS(1264), + [anon_sym_f64] = ACTIONS(1264), + [anon_sym_bool] = ACTIONS(1264), + [anon_sym_str] = ACTIONS(1264), + [anon_sym_char] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_async] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_fn] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_impl] = ACTIONS(1264), + [anon_sym_let] = ACTIONS(1264), + [anon_sym_loop] = ACTIONS(1264), + [anon_sym_match] = ACTIONS(1264), + [anon_sym_mod] = ACTIONS(1264), + [anon_sym_pub] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_trait] = ACTIONS(1264), + [anon_sym_type] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_unsafe] = ACTIONS(1264), + [anon_sym_use] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_POUND] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_COLON_COLON] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_DOT_DOT] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_move] = ACTIONS(1264), + [sym_integer_literal] = ACTIONS(1262), + [aux_sym_string_literal_token1] = ACTIONS(1262), + [sym_char_literal] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1264), + [anon_sym_false] = ACTIONS(1264), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1264), + [sym_super] = ACTIONS(1264), + [sym_crate] = ACTIONS(1264), + [sym_metavariable] = ACTIONS(1262), + [sym_raw_string_literal] = ACTIONS(1262), + [sym_float_literal] = ACTIONS(1262), [sym_block_comment] = ACTIONS(3), }, [290] = { - [sym_attribute_item] = STATE(500), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2317), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_arm] = STATE(466), - [sym_last_match_arm] = STATE(2258), - [sym_match_pattern] = STATE(2324), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(500), - [aux_sym_match_block_repeat1] = STATE(466), - [sym_identifier] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_u8] = ACTIONS(1084), - [anon_sym_i8] = ACTIONS(1084), - [anon_sym_u16] = ACTIONS(1084), - [anon_sym_i16] = ACTIONS(1084), - [anon_sym_u32] = ACTIONS(1084), - [anon_sym_i32] = ACTIONS(1084), - [anon_sym_u64] = ACTIONS(1084), - [anon_sym_i64] = ACTIONS(1084), - [anon_sym_u128] = ACTIONS(1084), - [anon_sym_i128] = ACTIONS(1084), - [anon_sym_isize] = ACTIONS(1084), - [anon_sym_usize] = ACTIONS(1084), - [anon_sym_f32] = ACTIONS(1084), - [anon_sym_f64] = ACTIONS(1084), - [anon_sym_bool] = ACTIONS(1084), - [anon_sym_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [ts_builtin_sym_end] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_macro_rules_BANG] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_u8] = ACTIONS(1268), + [anon_sym_i8] = ACTIONS(1268), + [anon_sym_u16] = ACTIONS(1268), + [anon_sym_i16] = ACTIONS(1268), + [anon_sym_u32] = ACTIONS(1268), + [anon_sym_i32] = ACTIONS(1268), + [anon_sym_u64] = ACTIONS(1268), + [anon_sym_i64] = ACTIONS(1268), + [anon_sym_u128] = ACTIONS(1268), + [anon_sym_i128] = ACTIONS(1268), + [anon_sym_isize] = ACTIONS(1268), + [anon_sym_usize] = ACTIONS(1268), + [anon_sym_f32] = ACTIONS(1268), + [anon_sym_f64] = ACTIONS(1268), + [anon_sym_bool] = ACTIONS(1268), + [anon_sym_str] = ACTIONS(1268), + [anon_sym_char] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_fn] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_impl] = ACTIONS(1268), + [anon_sym_let] = ACTIONS(1268), + [anon_sym_loop] = ACTIONS(1268), + [anon_sym_match] = ACTIONS(1268), + [anon_sym_mod] = ACTIONS(1268), + [anon_sym_pub] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_trait] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_unsafe] = ACTIONS(1268), + [anon_sym_use] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_COLON_COLON] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_DOT_DOT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_move] = ACTIONS(1268), + [sym_integer_literal] = ACTIONS(1266), + [aux_sym_string_literal_token1] = ACTIONS(1266), + [sym_char_literal] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1268), + [anon_sym_false] = ACTIONS(1268), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1268), + [sym_super] = ACTIONS(1268), + [sym_crate] = ACTIONS(1268), + [sym_metavariable] = ACTIONS(1266), + [sym_raw_string_literal] = ACTIONS(1266), + [sym_float_literal] = ACTIONS(1266), [sym_block_comment] = ACTIONS(3), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(1287), - [sym_identifier] = ACTIONS(1289), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_macro_rules_BANG] = ACTIONS(1287), - [anon_sym_LPAREN] = ACTIONS(1287), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_RBRACE] = ACTIONS(1287), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_u8] = ACTIONS(1289), - [anon_sym_i8] = ACTIONS(1289), - [anon_sym_u16] = ACTIONS(1289), - [anon_sym_i16] = ACTIONS(1289), - [anon_sym_u32] = ACTIONS(1289), - [anon_sym_i32] = ACTIONS(1289), - [anon_sym_u64] = ACTIONS(1289), - [anon_sym_i64] = ACTIONS(1289), - [anon_sym_u128] = ACTIONS(1289), - [anon_sym_i128] = ACTIONS(1289), - [anon_sym_isize] = ACTIONS(1289), - [anon_sym_usize] = ACTIONS(1289), - [anon_sym_f32] = ACTIONS(1289), - [anon_sym_f64] = ACTIONS(1289), - [anon_sym_bool] = ACTIONS(1289), - [anon_sym_str] = ACTIONS(1289), - [anon_sym_char] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1289), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_fn] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_impl] = ACTIONS(1289), - [anon_sym_let] = ACTIONS(1289), - [anon_sym_loop] = ACTIONS(1289), - [anon_sym_match] = ACTIONS(1289), - [anon_sym_mod] = ACTIONS(1289), - [anon_sym_pub] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_trait] = ACTIONS(1289), - [anon_sym_type] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_unsafe] = ACTIONS(1289), - [anon_sym_use] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_POUND] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym_LT] = ACTIONS(1287), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_PIPE] = ACTIONS(1287), - [anon_sym_move] = ACTIONS(1289), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1287), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1289), - [anon_sym_false] = ACTIONS(1289), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1289), - [sym_super] = ACTIONS(1289), - [sym_crate] = ACTIONS(1289), - [sym_metavariable] = ACTIONS(1287), - [sym_raw_string_literal] = ACTIONS(1287), - [sym_float_literal] = ACTIONS(1287), + [ts_builtin_sym_end] = ACTIONS(1270), + [sym_identifier] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_macro_rules_BANG] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_async] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_fn] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_impl] = ACTIONS(1272), + [anon_sym_let] = ACTIONS(1272), + [anon_sym_loop] = ACTIONS(1272), + [anon_sym_match] = ACTIONS(1272), + [anon_sym_mod] = ACTIONS(1272), + [anon_sym_pub] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_trait] = ACTIONS(1272), + [anon_sym_type] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_unsafe] = ACTIONS(1272), + [anon_sym_use] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_POUND] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym_LT] = ACTIONS(1270), + [anon_sym_COLON_COLON] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_DOT_DOT] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PIPE] = ACTIONS(1270), + [anon_sym_move] = ACTIONS(1272), + [sym_integer_literal] = ACTIONS(1270), + [aux_sym_string_literal_token1] = ACTIONS(1270), + [sym_char_literal] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1272), + [anon_sym_false] = ACTIONS(1272), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1272), + [sym_super] = ACTIONS(1272), + [sym_crate] = ACTIONS(1272), + [sym_metavariable] = ACTIONS(1270), + [sym_raw_string_literal] = ACTIONS(1270), + [sym_float_literal] = ACTIONS(1270), [sym_block_comment] = ACTIONS(3), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(1291), - [sym_identifier] = ACTIONS(1293), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym_macro_rules_BANG] = ACTIONS(1291), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_RBRACE] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_STAR] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1293), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_break] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_continue] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1293), - [anon_sym_enum] = ACTIONS(1293), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1293), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_impl] = ACTIONS(1293), - [anon_sym_let] = ACTIONS(1293), - [anon_sym_loop] = ACTIONS(1293), - [anon_sym_match] = ACTIONS(1293), - [anon_sym_mod] = ACTIONS(1293), - [anon_sym_pub] = ACTIONS(1293), - [anon_sym_return] = ACTIONS(1293), - [anon_sym_static] = ACTIONS(1293), - [anon_sym_struct] = ACTIONS(1293), - [anon_sym_trait] = ACTIONS(1293), - [anon_sym_type] = ACTIONS(1293), - [anon_sym_union] = ACTIONS(1293), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_use] = ACTIONS(1293), - [anon_sym_while] = ACTIONS(1293), - [anon_sym_POUND] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_extern] = ACTIONS(1293), - [anon_sym_LT] = ACTIONS(1291), - [anon_sym_COLON_COLON] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1291), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_PIPE] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1293), - [sym_integer_literal] = ACTIONS(1291), - [aux_sym_string_literal_token1] = ACTIONS(1291), - [sym_char_literal] = ACTIONS(1291), - [anon_sym_true] = ACTIONS(1293), - [anon_sym_false] = ACTIONS(1293), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1293), - [sym_super] = ACTIONS(1293), - [sym_crate] = ACTIONS(1293), - [sym_metavariable] = ACTIONS(1291), - [sym_raw_string_literal] = ACTIONS(1291), - [sym_float_literal] = ACTIONS(1291), + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_identifier] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_macro_rules_BANG] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_u8] = ACTIONS(1276), + [anon_sym_i8] = ACTIONS(1276), + [anon_sym_u16] = ACTIONS(1276), + [anon_sym_i16] = ACTIONS(1276), + [anon_sym_u32] = ACTIONS(1276), + [anon_sym_i32] = ACTIONS(1276), + [anon_sym_u64] = ACTIONS(1276), + [anon_sym_i64] = ACTIONS(1276), + [anon_sym_u128] = ACTIONS(1276), + [anon_sym_i128] = ACTIONS(1276), + [anon_sym_isize] = ACTIONS(1276), + [anon_sym_usize] = ACTIONS(1276), + [anon_sym_f32] = ACTIONS(1276), + [anon_sym_f64] = ACTIONS(1276), + [anon_sym_bool] = ACTIONS(1276), + [anon_sym_str] = ACTIONS(1276), + [anon_sym_char] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_async] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_impl] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1276), + [anon_sym_loop] = ACTIONS(1276), + [anon_sym_match] = ACTIONS(1276), + [anon_sym_mod] = ACTIONS(1276), + [anon_sym_pub] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_trait] = ACTIONS(1276), + [anon_sym_type] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_unsafe] = ACTIONS(1276), + [anon_sym_use] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_POUND] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_DOT_DOT] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_move] = ACTIONS(1276), + [sym_integer_literal] = ACTIONS(1274), + [aux_sym_string_literal_token1] = ACTIONS(1274), + [sym_char_literal] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1276), + [sym_super] = ACTIONS(1276), + [sym_crate] = ACTIONS(1276), + [sym_metavariable] = ACTIONS(1274), + [sym_raw_string_literal] = ACTIONS(1274), + [sym_float_literal] = ACTIONS(1274), [sym_block_comment] = ACTIONS(3), }, [293] = { - [sym_attribute_item] = STATE(500), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2317), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_arm] = STATE(466), - [sym_last_match_arm] = STATE(2328), - [sym_match_pattern] = STATE(2324), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(500), - [aux_sym_match_block_repeat1] = STATE(466), - [sym_identifier] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_u8] = ACTIONS(1084), - [anon_sym_i8] = ACTIONS(1084), - [anon_sym_u16] = ACTIONS(1084), - [anon_sym_i16] = ACTIONS(1084), - [anon_sym_u32] = ACTIONS(1084), - [anon_sym_i32] = ACTIONS(1084), - [anon_sym_u64] = ACTIONS(1084), - [anon_sym_i64] = ACTIONS(1084), - [anon_sym_u128] = ACTIONS(1084), - [anon_sym_i128] = ACTIONS(1084), - [anon_sym_isize] = ACTIONS(1084), - [anon_sym_usize] = ACTIONS(1084), - [anon_sym_f32] = ACTIONS(1084), - [anon_sym_f64] = ACTIONS(1084), - [anon_sym_bool] = ACTIONS(1084), - [anon_sym_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_identifier] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_macro_rules_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_u8] = ACTIONS(1280), + [anon_sym_i8] = ACTIONS(1280), + [anon_sym_u16] = ACTIONS(1280), + [anon_sym_i16] = ACTIONS(1280), + [anon_sym_u32] = ACTIONS(1280), + [anon_sym_i32] = ACTIONS(1280), + [anon_sym_u64] = ACTIONS(1280), + [anon_sym_i64] = ACTIONS(1280), + [anon_sym_u128] = ACTIONS(1280), + [anon_sym_i128] = ACTIONS(1280), + [anon_sym_isize] = ACTIONS(1280), + [anon_sym_usize] = ACTIONS(1280), + [anon_sym_f32] = ACTIONS(1280), + [anon_sym_f64] = ACTIONS(1280), + [anon_sym_bool] = ACTIONS(1280), + [anon_sym_str] = ACTIONS(1280), + [anon_sym_char] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_fn] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1280), + [anon_sym_let] = ACTIONS(1280), + [anon_sym_loop] = ACTIONS(1280), + [anon_sym_match] = ACTIONS(1280), + [anon_sym_mod] = ACTIONS(1280), + [anon_sym_pub] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_trait] = ACTIONS(1280), + [anon_sym_type] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1280), + [anon_sym_use] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1278), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_DOT_DOT] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1278), + [anon_sym_move] = ACTIONS(1280), + [sym_integer_literal] = ACTIONS(1278), + [aux_sym_string_literal_token1] = ACTIONS(1278), + [sym_char_literal] = ACTIONS(1278), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1280), + [sym_super] = ACTIONS(1280), + [sym_crate] = ACTIONS(1280), + [sym_metavariable] = ACTIONS(1278), + [sym_raw_string_literal] = ACTIONS(1278), + [sym_float_literal] = ACTIONS(1278), [sym_block_comment] = ACTIONS(3), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(1295), - [sym_identifier] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_macro_rules_BANG] = ACTIONS(1295), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_RBRACE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_u8] = ACTIONS(1297), - [anon_sym_i8] = ACTIONS(1297), - [anon_sym_u16] = ACTIONS(1297), - [anon_sym_i16] = ACTIONS(1297), - [anon_sym_u32] = ACTIONS(1297), - [anon_sym_i32] = ACTIONS(1297), - [anon_sym_u64] = ACTIONS(1297), - [anon_sym_i64] = ACTIONS(1297), - [anon_sym_u128] = ACTIONS(1297), - [anon_sym_i128] = ACTIONS(1297), - [anon_sym_isize] = ACTIONS(1297), - [anon_sym_usize] = ACTIONS(1297), - [anon_sym_f32] = ACTIONS(1297), - [anon_sym_f64] = ACTIONS(1297), - [anon_sym_bool] = ACTIONS(1297), - [anon_sym_str] = ACTIONS(1297), - [anon_sym_char] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [anon_sym_async] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1297), - [anon_sym_let] = ACTIONS(1297), - [anon_sym_loop] = ACTIONS(1297), - [anon_sym_match] = ACTIONS(1297), - [anon_sym_mod] = ACTIONS(1297), - [anon_sym_pub] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_trait] = ACTIONS(1297), - [anon_sym_type] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1297), - [anon_sym_use] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_POUND] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(1295), - [anon_sym_COLON_COLON] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_DOT_DOT] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_move] = ACTIONS(1297), - [sym_integer_literal] = ACTIONS(1295), - [aux_sym_string_literal_token1] = ACTIONS(1295), - [sym_char_literal] = ACTIONS(1295), - [anon_sym_true] = ACTIONS(1297), - [anon_sym_false] = ACTIONS(1297), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1297), - [sym_super] = ACTIONS(1297), - [sym_crate] = ACTIONS(1297), - [sym_metavariable] = ACTIONS(1295), - [sym_raw_string_literal] = ACTIONS(1295), - [sym_float_literal] = ACTIONS(1295), + [ts_builtin_sym_end] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_macro_rules_BANG] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_u8] = ACTIONS(1284), + [anon_sym_i8] = ACTIONS(1284), + [anon_sym_u16] = ACTIONS(1284), + [anon_sym_i16] = ACTIONS(1284), + [anon_sym_u32] = ACTIONS(1284), + [anon_sym_i32] = ACTIONS(1284), + [anon_sym_u64] = ACTIONS(1284), + [anon_sym_i64] = ACTIONS(1284), + [anon_sym_u128] = ACTIONS(1284), + [anon_sym_i128] = ACTIONS(1284), + [anon_sym_isize] = ACTIONS(1284), + [anon_sym_usize] = ACTIONS(1284), + [anon_sym_f32] = ACTIONS(1284), + [anon_sym_f64] = ACTIONS(1284), + [anon_sym_bool] = ACTIONS(1284), + [anon_sym_str] = ACTIONS(1284), + [anon_sym_char] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_fn] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_impl] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_loop] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1284), + [anon_sym_mod] = ACTIONS(1284), + [anon_sym_pub] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_trait] = ACTIONS(1284), + [anon_sym_type] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_use] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1282), + [anon_sym_COLON_COLON] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_DOT_DOT] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_move] = ACTIONS(1284), + [sym_integer_literal] = ACTIONS(1282), + [aux_sym_string_literal_token1] = ACTIONS(1282), + [sym_char_literal] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1284), + [sym_super] = ACTIONS(1284), + [sym_crate] = ACTIONS(1284), + [sym_metavariable] = ACTIONS(1282), + [sym_raw_string_literal] = ACTIONS(1282), + [sym_float_literal] = ACTIONS(1282), [sym_block_comment] = ACTIONS(3), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_identifier] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym_macro_rules_BANG] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_STAR] = ACTIONS(1299), - [anon_sym_u8] = ACTIONS(1301), - [anon_sym_i8] = ACTIONS(1301), - [anon_sym_u16] = ACTIONS(1301), - [anon_sym_i16] = ACTIONS(1301), - [anon_sym_u32] = ACTIONS(1301), - [anon_sym_i32] = ACTIONS(1301), - [anon_sym_u64] = ACTIONS(1301), - [anon_sym_i64] = ACTIONS(1301), - [anon_sym_u128] = ACTIONS(1301), - [anon_sym_i128] = ACTIONS(1301), - [anon_sym_isize] = ACTIONS(1301), - [anon_sym_usize] = ACTIONS(1301), - [anon_sym_f32] = ACTIONS(1301), - [anon_sym_f64] = ACTIONS(1301), - [anon_sym_bool] = ACTIONS(1301), - [anon_sym_str] = ACTIONS(1301), - [anon_sym_char] = ACTIONS(1301), - [anon_sym_SQUOTE] = ACTIONS(1301), - [anon_sym_async] = ACTIONS(1301), - [anon_sym_break] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_continue] = ACTIONS(1301), - [anon_sym_default] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [anon_sym_fn] = ACTIONS(1301), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_impl] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_loop] = ACTIONS(1301), - [anon_sym_match] = ACTIONS(1301), - [anon_sym_mod] = ACTIONS(1301), - [anon_sym_pub] = ACTIONS(1301), - [anon_sym_return] = ACTIONS(1301), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_trait] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_union] = ACTIONS(1301), - [anon_sym_unsafe] = ACTIONS(1301), - [anon_sym_use] = ACTIONS(1301), - [anon_sym_while] = ACTIONS(1301), - [anon_sym_POUND] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1299), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1299), - [anon_sym_move] = ACTIONS(1301), - [sym_integer_literal] = ACTIONS(1299), - [aux_sym_string_literal_token1] = ACTIONS(1299), - [sym_char_literal] = ACTIONS(1299), - [anon_sym_true] = ACTIONS(1301), - [anon_sym_false] = ACTIONS(1301), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1301), - [sym_super] = ACTIONS(1301), - [sym_crate] = ACTIONS(1301), - [sym_metavariable] = ACTIONS(1299), - [sym_raw_string_literal] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1299), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_macro_rules_BANG] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_u8] = ACTIONS(1288), + [anon_sym_i8] = ACTIONS(1288), + [anon_sym_u16] = ACTIONS(1288), + [anon_sym_i16] = ACTIONS(1288), + [anon_sym_u32] = ACTIONS(1288), + [anon_sym_i32] = ACTIONS(1288), + [anon_sym_u64] = ACTIONS(1288), + [anon_sym_i64] = ACTIONS(1288), + [anon_sym_u128] = ACTIONS(1288), + [anon_sym_i128] = ACTIONS(1288), + [anon_sym_isize] = ACTIONS(1288), + [anon_sym_usize] = ACTIONS(1288), + [anon_sym_f32] = ACTIONS(1288), + [anon_sym_f64] = ACTIONS(1288), + [anon_sym_bool] = ACTIONS(1288), + [anon_sym_str] = ACTIONS(1288), + [anon_sym_char] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_impl] = ACTIONS(1288), + [anon_sym_let] = ACTIONS(1288), + [anon_sym_loop] = ACTIONS(1288), + [anon_sym_match] = ACTIONS(1288), + [anon_sym_mod] = ACTIONS(1288), + [anon_sym_pub] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_trait] = ACTIONS(1288), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_unsafe] = ACTIONS(1288), + [anon_sym_use] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_DOT_DOT] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1286), + [anon_sym_move] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1286), + [aux_sym_string_literal_token1] = ACTIONS(1286), + [sym_char_literal] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1288), + [anon_sym_false] = ACTIONS(1288), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1286), + [sym_raw_string_literal] = ACTIONS(1286), + [sym_float_literal] = ACTIONS(1286), [sym_block_comment] = ACTIONS(3), }, [296] = { - [ts_builtin_sym_end] = ACTIONS(1303), - [sym_identifier] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_macro_rules_BANG] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(1303), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_u8] = ACTIONS(1305), - [anon_sym_i8] = ACTIONS(1305), - [anon_sym_u16] = ACTIONS(1305), - [anon_sym_i16] = ACTIONS(1305), - [anon_sym_u32] = ACTIONS(1305), - [anon_sym_i32] = ACTIONS(1305), - [anon_sym_u64] = ACTIONS(1305), - [anon_sym_i64] = ACTIONS(1305), - [anon_sym_u128] = ACTIONS(1305), - [anon_sym_i128] = ACTIONS(1305), - [anon_sym_isize] = ACTIONS(1305), - [anon_sym_usize] = ACTIONS(1305), - [anon_sym_f32] = ACTIONS(1305), - [anon_sym_f64] = ACTIONS(1305), - [anon_sym_bool] = ACTIONS(1305), - [anon_sym_str] = ACTIONS(1305), - [anon_sym_char] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1305), - [anon_sym_async] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_enum] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_let] = ACTIONS(1305), - [anon_sym_loop] = ACTIONS(1305), - [anon_sym_match] = ACTIONS(1305), - [anon_sym_mod] = ACTIONS(1305), - [anon_sym_pub] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_static] = ACTIONS(1305), - [anon_sym_struct] = ACTIONS(1305), - [anon_sym_trait] = ACTIONS(1305), - [anon_sym_type] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1305), - [anon_sym_unsafe] = ACTIONS(1305), - [anon_sym_use] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_POUND] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym_LT] = ACTIONS(1303), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1303), - [anon_sym_move] = ACTIONS(1305), - [sym_integer_literal] = ACTIONS(1303), - [aux_sym_string_literal_token1] = ACTIONS(1303), - [sym_char_literal] = ACTIONS(1303), - [anon_sym_true] = ACTIONS(1305), - [anon_sym_false] = ACTIONS(1305), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1305), - [sym_super] = ACTIONS(1305), - [sym_crate] = ACTIONS(1305), - [sym_metavariable] = ACTIONS(1303), - [sym_raw_string_literal] = ACTIONS(1303), - [sym_float_literal] = ACTIONS(1303), + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_macro_rules_BANG] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u128] = ACTIONS(1292), + [anon_sym_i128] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_str] = ACTIONS(1292), + [anon_sym_char] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_fn] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_loop] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_mod] = ACTIONS(1292), + [anon_sym_pub] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_trait] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_unsafe] = ACTIONS(1292), + [anon_sym_use] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_POUND] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_move] = ACTIONS(1292), + [sym_integer_literal] = ACTIONS(1290), + [aux_sym_string_literal_token1] = ACTIONS(1290), + [sym_char_literal] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1292), + [sym_super] = ACTIONS(1292), + [sym_crate] = ACTIONS(1292), + [sym_metavariable] = ACTIONS(1290), + [sym_raw_string_literal] = ACTIONS(1290), + [sym_float_literal] = ACTIONS(1290), [sym_block_comment] = ACTIONS(3), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(1307), - [sym_identifier] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_macro_rules_BANG] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_RBRACE] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1307), - [anon_sym_u8] = ACTIONS(1309), - [anon_sym_i8] = ACTIONS(1309), - [anon_sym_u16] = ACTIONS(1309), - [anon_sym_i16] = ACTIONS(1309), - [anon_sym_u32] = ACTIONS(1309), - [anon_sym_i32] = ACTIONS(1309), - [anon_sym_u64] = ACTIONS(1309), - [anon_sym_i64] = ACTIONS(1309), - [anon_sym_u128] = ACTIONS(1309), - [anon_sym_i128] = ACTIONS(1309), - [anon_sym_isize] = ACTIONS(1309), - [anon_sym_usize] = ACTIONS(1309), - [anon_sym_f32] = ACTIONS(1309), - [anon_sym_f64] = ACTIONS(1309), - [anon_sym_bool] = ACTIONS(1309), - [anon_sym_str] = ACTIONS(1309), - [anon_sym_char] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [anon_sym_async] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_enum] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_impl] = ACTIONS(1309), - [anon_sym_let] = ACTIONS(1309), - [anon_sym_loop] = ACTIONS(1309), - [anon_sym_match] = ACTIONS(1309), - [anon_sym_mod] = ACTIONS(1309), - [anon_sym_pub] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_static] = ACTIONS(1309), - [anon_sym_struct] = ACTIONS(1309), - [anon_sym_trait] = ACTIONS(1309), - [anon_sym_type] = ACTIONS(1309), - [anon_sym_union] = ACTIONS(1309), - [anon_sym_unsafe] = ACTIONS(1309), - [anon_sym_use] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_POUND] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym_LT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym_DOT_DOT] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_move] = ACTIONS(1309), - [sym_integer_literal] = ACTIONS(1307), - [aux_sym_string_literal_token1] = ACTIONS(1307), - [sym_char_literal] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1309), - [sym_crate] = ACTIONS(1309), - [sym_metavariable] = ACTIONS(1307), - [sym_raw_string_literal] = ACTIONS(1307), - [sym_float_literal] = ACTIONS(1307), + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_macro_rules_BANG] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_u8] = ACTIONS(1296), + [anon_sym_i8] = ACTIONS(1296), + [anon_sym_u16] = ACTIONS(1296), + [anon_sym_i16] = ACTIONS(1296), + [anon_sym_u32] = ACTIONS(1296), + [anon_sym_i32] = ACTIONS(1296), + [anon_sym_u64] = ACTIONS(1296), + [anon_sym_i64] = ACTIONS(1296), + [anon_sym_u128] = ACTIONS(1296), + [anon_sym_i128] = ACTIONS(1296), + [anon_sym_isize] = ACTIONS(1296), + [anon_sym_usize] = ACTIONS(1296), + [anon_sym_f32] = ACTIONS(1296), + [anon_sym_f64] = ACTIONS(1296), + [anon_sym_bool] = ACTIONS(1296), + [anon_sym_str] = ACTIONS(1296), + [anon_sym_char] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_fn] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_impl] = ACTIONS(1296), + [anon_sym_let] = ACTIONS(1296), + [anon_sym_loop] = ACTIONS(1296), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_mod] = ACTIONS(1296), + [anon_sym_pub] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_trait] = ACTIONS(1296), + [anon_sym_type] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_use] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_COLON_COLON] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_move] = ACTIONS(1296), + [sym_integer_literal] = ACTIONS(1294), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1296), + [sym_super] = ACTIONS(1296), + [sym_crate] = ACTIONS(1296), + [sym_metavariable] = ACTIONS(1294), + [sym_raw_string_literal] = ACTIONS(1294), + [sym_float_literal] = ACTIONS(1294), [sym_block_comment] = ACTIONS(3), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1311), - [sym_identifier] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1311), - [anon_sym_macro_rules_BANG] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_RBRACE] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_u8] = ACTIONS(1313), - [anon_sym_i8] = ACTIONS(1313), - [anon_sym_u16] = ACTIONS(1313), - [anon_sym_i16] = ACTIONS(1313), - [anon_sym_u32] = ACTIONS(1313), - [anon_sym_i32] = ACTIONS(1313), - [anon_sym_u64] = ACTIONS(1313), - [anon_sym_i64] = ACTIONS(1313), - [anon_sym_u128] = ACTIONS(1313), - [anon_sym_i128] = ACTIONS(1313), - [anon_sym_isize] = ACTIONS(1313), - [anon_sym_usize] = ACTIONS(1313), - [anon_sym_f32] = ACTIONS(1313), - [anon_sym_f64] = ACTIONS(1313), - [anon_sym_bool] = ACTIONS(1313), - [anon_sym_str] = ACTIONS(1313), - [anon_sym_char] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_async] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_default] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1313), - [anon_sym_fn] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_impl] = ACTIONS(1313), - [anon_sym_let] = ACTIONS(1313), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_mod] = ACTIONS(1313), - [anon_sym_pub] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_trait] = ACTIONS(1313), - [anon_sym_type] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1313), - [anon_sym_unsafe] = ACTIONS(1313), - [anon_sym_use] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_POUND] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(1311), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym_DOT_DOT] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PIPE] = ACTIONS(1311), - [anon_sym_move] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1311), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1311), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1313), - [sym_crate] = ACTIONS(1313), - [sym_metavariable] = ACTIONS(1311), - [sym_raw_string_literal] = ACTIONS(1311), - [sym_float_literal] = ACTIONS(1311), + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_macro_rules_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_u8] = ACTIONS(1300), + [anon_sym_i8] = ACTIONS(1300), + [anon_sym_u16] = ACTIONS(1300), + [anon_sym_i16] = ACTIONS(1300), + [anon_sym_u32] = ACTIONS(1300), + [anon_sym_i32] = ACTIONS(1300), + [anon_sym_u64] = ACTIONS(1300), + [anon_sym_i64] = ACTIONS(1300), + [anon_sym_u128] = ACTIONS(1300), + [anon_sym_i128] = ACTIONS(1300), + [anon_sym_isize] = ACTIONS(1300), + [anon_sym_usize] = ACTIONS(1300), + [anon_sym_f32] = ACTIONS(1300), + [anon_sym_f64] = ACTIONS(1300), + [anon_sym_bool] = ACTIONS(1300), + [anon_sym_str] = ACTIONS(1300), + [anon_sym_char] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_async] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_impl] = ACTIONS(1300), + [anon_sym_let] = ACTIONS(1300), + [anon_sym_loop] = ACTIONS(1300), + [anon_sym_match] = ACTIONS(1300), + [anon_sym_mod] = ACTIONS(1300), + [anon_sym_pub] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_trait] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_unsafe] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_POUND] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1298), + [anon_sym_COLON_COLON] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_DOT_DOT] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1298), + [anon_sym_move] = ACTIONS(1300), + [sym_integer_literal] = ACTIONS(1298), + [aux_sym_string_literal_token1] = ACTIONS(1298), + [sym_char_literal] = ACTIONS(1298), + [anon_sym_true] = ACTIONS(1300), + [anon_sym_false] = ACTIONS(1300), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1300), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1298), + [sym_raw_string_literal] = ACTIONS(1298), + [sym_float_literal] = ACTIONS(1298), [sym_block_comment] = ACTIONS(3), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [sym_identifier] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym_macro_rules_BANG] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1315), - [anon_sym_LBRACK] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_u8] = ACTIONS(1317), - [anon_sym_i8] = ACTIONS(1317), - [anon_sym_u16] = ACTIONS(1317), - [anon_sym_i16] = ACTIONS(1317), - [anon_sym_u32] = ACTIONS(1317), - [anon_sym_i32] = ACTIONS(1317), - [anon_sym_u64] = ACTIONS(1317), - [anon_sym_i64] = ACTIONS(1317), - [anon_sym_u128] = ACTIONS(1317), - [anon_sym_i128] = ACTIONS(1317), - [anon_sym_isize] = ACTIONS(1317), - [anon_sym_usize] = ACTIONS(1317), - [anon_sym_f32] = ACTIONS(1317), - [anon_sym_f64] = ACTIONS(1317), - [anon_sym_bool] = ACTIONS(1317), - [anon_sym_str] = ACTIONS(1317), - [anon_sym_char] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1317), - [anon_sym_enum] = ACTIONS(1317), - [anon_sym_fn] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_impl] = ACTIONS(1317), - [anon_sym_let] = ACTIONS(1317), - [anon_sym_loop] = ACTIONS(1317), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_mod] = ACTIONS(1317), - [anon_sym_pub] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1317), - [anon_sym_trait] = ACTIONS(1317), - [anon_sym_type] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1317), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_use] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_POUND] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1315), - [anon_sym_COLON_COLON] = ACTIONS(1315), - [anon_sym_AMP] = ACTIONS(1315), - [anon_sym_DOT_DOT] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1315), - [anon_sym_move] = ACTIONS(1317), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1315), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1317), - [anon_sym_false] = ACTIONS(1317), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1317), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1315), - [sym_raw_string_literal] = ACTIONS(1315), - [sym_float_literal] = ACTIONS(1315), + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_macro_rules_BANG] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_u8] = ACTIONS(1304), + [anon_sym_i8] = ACTIONS(1304), + [anon_sym_u16] = ACTIONS(1304), + [anon_sym_i16] = ACTIONS(1304), + [anon_sym_u32] = ACTIONS(1304), + [anon_sym_i32] = ACTIONS(1304), + [anon_sym_u64] = ACTIONS(1304), + [anon_sym_i64] = ACTIONS(1304), + [anon_sym_u128] = ACTIONS(1304), + [anon_sym_i128] = ACTIONS(1304), + [anon_sym_isize] = ACTIONS(1304), + [anon_sym_usize] = ACTIONS(1304), + [anon_sym_f32] = ACTIONS(1304), + [anon_sym_f64] = ACTIONS(1304), + [anon_sym_bool] = ACTIONS(1304), + [anon_sym_str] = ACTIONS(1304), + [anon_sym_char] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_fn] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1304), + [anon_sym_let] = ACTIONS(1304), + [anon_sym_loop] = ACTIONS(1304), + [anon_sym_match] = ACTIONS(1304), + [anon_sym_mod] = ACTIONS(1304), + [anon_sym_pub] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_trait] = ACTIONS(1304), + [anon_sym_type] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_unsafe] = ACTIONS(1304), + [anon_sym_use] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_POUND] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1302), + [anon_sym_COLON_COLON] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_DOT_DOT] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_move] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1302), + [aux_sym_string_literal_token1] = ACTIONS(1302), + [sym_char_literal] = ACTIONS(1302), + [anon_sym_true] = ACTIONS(1304), + [anon_sym_false] = ACTIONS(1304), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1304), + [sym_super] = ACTIONS(1304), + [sym_crate] = ACTIONS(1304), + [sym_metavariable] = ACTIONS(1302), + [sym_raw_string_literal] = ACTIONS(1302), + [sym_float_literal] = ACTIONS(1302), [sym_block_comment] = ACTIONS(3), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(1319), - [sym_identifier] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_macro_rules_BANG] = ACTIONS(1319), - [anon_sym_LPAREN] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_u8] = ACTIONS(1321), - [anon_sym_i8] = ACTIONS(1321), - [anon_sym_u16] = ACTIONS(1321), - [anon_sym_i16] = ACTIONS(1321), - [anon_sym_u32] = ACTIONS(1321), - [anon_sym_i32] = ACTIONS(1321), - [anon_sym_u64] = ACTIONS(1321), - [anon_sym_i64] = ACTIONS(1321), - [anon_sym_u128] = ACTIONS(1321), - [anon_sym_i128] = ACTIONS(1321), - [anon_sym_isize] = ACTIONS(1321), - [anon_sym_usize] = ACTIONS(1321), - [anon_sym_f32] = ACTIONS(1321), - [anon_sym_f64] = ACTIONS(1321), - [anon_sym_bool] = ACTIONS(1321), - [anon_sym_str] = ACTIONS(1321), - [anon_sym_char] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_async] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_impl] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), - [anon_sym_loop] = ACTIONS(1321), - [anon_sym_match] = ACTIONS(1321), - [anon_sym_mod] = ACTIONS(1321), - [anon_sym_pub] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_trait] = ACTIONS(1321), - [anon_sym_type] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_unsafe] = ACTIONS(1321), - [anon_sym_use] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_COLON_COLON] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_move] = ACTIONS(1321), - [sym_integer_literal] = ACTIONS(1319), - [aux_sym_string_literal_token1] = ACTIONS(1319), - [sym_char_literal] = ACTIONS(1319), - [anon_sym_true] = ACTIONS(1321), - [anon_sym_false] = ACTIONS(1321), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_crate] = ACTIONS(1321), - [sym_metavariable] = ACTIONS(1319), - [sym_raw_string_literal] = ACTIONS(1319), - [sym_float_literal] = ACTIONS(1319), + [ts_builtin_sym_end] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_macro_rules_BANG] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(1308), + [anon_sym_i8] = ACTIONS(1308), + [anon_sym_u16] = ACTIONS(1308), + [anon_sym_i16] = ACTIONS(1308), + [anon_sym_u32] = ACTIONS(1308), + [anon_sym_i32] = ACTIONS(1308), + [anon_sym_u64] = ACTIONS(1308), + [anon_sym_i64] = ACTIONS(1308), + [anon_sym_u128] = ACTIONS(1308), + [anon_sym_i128] = ACTIONS(1308), + [anon_sym_isize] = ACTIONS(1308), + [anon_sym_usize] = ACTIONS(1308), + [anon_sym_f32] = ACTIONS(1308), + [anon_sym_f64] = ACTIONS(1308), + [anon_sym_bool] = ACTIONS(1308), + [anon_sym_str] = ACTIONS(1308), + [anon_sym_char] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_impl] = ACTIONS(1308), + [anon_sym_let] = ACTIONS(1308), + [anon_sym_loop] = ACTIONS(1308), + [anon_sym_match] = ACTIONS(1308), + [anon_sym_mod] = ACTIONS(1308), + [anon_sym_pub] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_trait] = ACTIONS(1308), + [anon_sym_type] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1308), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_COLON_COLON] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1306), + [anon_sym_move] = ACTIONS(1308), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1306), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1308), + [anon_sym_false] = ACTIONS(1308), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1308), + [sym_super] = ACTIONS(1308), + [sym_crate] = ACTIONS(1308), + [sym_metavariable] = ACTIONS(1306), + [sym_raw_string_literal] = ACTIONS(1306), + [sym_float_literal] = ACTIONS(1306), [sym_block_comment] = ACTIONS(3), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_identifier] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_macro_rules_BANG] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_u8] = ACTIONS(1325), - [anon_sym_i8] = ACTIONS(1325), - [anon_sym_u16] = ACTIONS(1325), - [anon_sym_i16] = ACTIONS(1325), - [anon_sym_u32] = ACTIONS(1325), - [anon_sym_i32] = ACTIONS(1325), - [anon_sym_u64] = ACTIONS(1325), - [anon_sym_i64] = ACTIONS(1325), - [anon_sym_u128] = ACTIONS(1325), - [anon_sym_i128] = ACTIONS(1325), - [anon_sym_isize] = ACTIONS(1325), - [anon_sym_usize] = ACTIONS(1325), - [anon_sym_f32] = ACTIONS(1325), - [anon_sym_f64] = ACTIONS(1325), - [anon_sym_bool] = ACTIONS(1325), - [anon_sym_str] = ACTIONS(1325), - [anon_sym_char] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_async] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_fn] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_impl] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_mod] = ACTIONS(1325), - [anon_sym_pub] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_trait] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_unsafe] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_LT] = ACTIONS(1323), - [anon_sym_COLON_COLON] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_DOT_DOT] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PIPE] = ACTIONS(1323), - [anon_sym_move] = ACTIONS(1325), - [sym_integer_literal] = ACTIONS(1323), - [aux_sym_string_literal_token1] = ACTIONS(1323), - [sym_char_literal] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(1325), - [anon_sym_false] = ACTIONS(1325), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1325), - [sym_super] = ACTIONS(1325), - [sym_crate] = ACTIONS(1325), - [sym_metavariable] = ACTIONS(1323), - [sym_raw_string_literal] = ACTIONS(1323), - [sym_float_literal] = ACTIONS(1323), + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_macro_rules_BANG] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_async] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_impl] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(1312), + [anon_sym_loop] = ACTIONS(1312), + [anon_sym_match] = ACTIONS(1312), + [anon_sym_mod] = ACTIONS(1312), + [anon_sym_pub] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_trait] = ACTIONS(1312), + [anon_sym_type] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_unsafe] = ACTIONS(1312), + [anon_sym_use] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_move] = ACTIONS(1312), + [sym_integer_literal] = ACTIONS(1310), + [aux_sym_string_literal_token1] = ACTIONS(1310), + [sym_char_literal] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1312), + [anon_sym_false] = ACTIONS(1312), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1312), + [sym_super] = ACTIONS(1312), + [sym_crate] = ACTIONS(1312), + [sym_metavariable] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1310), + [sym_float_literal] = ACTIONS(1310), [sym_block_comment] = ACTIONS(3), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(1327), - [sym_identifier] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_macro_rules_BANG] = ACTIONS(1327), - [anon_sym_LPAREN] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1327), - [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_SQUOTE] = ACTIONS(1329), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_fn] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_let] = ACTIONS(1329), - [anon_sym_loop] = ACTIONS(1329), - [anon_sym_match] = ACTIONS(1329), - [anon_sym_mod] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(1329), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_trait] = ACTIONS(1329), - [anon_sym_type] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [anon_sym_unsafe] = ACTIONS(1329), - [anon_sym_use] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_POUND] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym_LT] = ACTIONS(1327), - [anon_sym_COLON_COLON] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_DOT_DOT] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_move] = ACTIONS(1329), - [sym_integer_literal] = ACTIONS(1327), - [aux_sym_string_literal_token1] = ACTIONS(1327), - [sym_char_literal] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1329), - [sym_super] = ACTIONS(1329), - [sym_crate] = ACTIONS(1329), - [sym_metavariable] = ACTIONS(1327), - [sym_raw_string_literal] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1327), + [ts_builtin_sym_end] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_macro_rules_BANG] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_RBRACE] = ACTIONS(1314), + [anon_sym_LBRACK] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_POUND] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_COLON_COLON] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1314), + [aux_sym_string_literal_token1] = ACTIONS(1314), + [sym_char_literal] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1316), + [anon_sym_false] = ACTIONS(1316), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1314), + [sym_raw_string_literal] = ACTIONS(1314), + [sym_float_literal] = ACTIONS(1314), [sym_block_comment] = ACTIONS(3), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(1331), - [sym_identifier] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_macro_rules_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_u8] = ACTIONS(1333), - [anon_sym_i8] = ACTIONS(1333), - [anon_sym_u16] = ACTIONS(1333), - [anon_sym_i16] = ACTIONS(1333), - [anon_sym_u32] = ACTIONS(1333), - [anon_sym_i32] = ACTIONS(1333), - [anon_sym_u64] = ACTIONS(1333), - [anon_sym_i64] = ACTIONS(1333), - [anon_sym_u128] = ACTIONS(1333), - [anon_sym_i128] = ACTIONS(1333), - [anon_sym_isize] = ACTIONS(1333), - [anon_sym_usize] = ACTIONS(1333), - [anon_sym_f32] = ACTIONS(1333), - [anon_sym_f64] = ACTIONS(1333), - [anon_sym_bool] = ACTIONS(1333), - [anon_sym_str] = ACTIONS(1333), - [anon_sym_char] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_async] = ACTIONS(1333), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_const] = ACTIONS(1333), - [anon_sym_continue] = ACTIONS(1333), - [anon_sym_default] = ACTIONS(1333), - [anon_sym_enum] = ACTIONS(1333), - [anon_sym_fn] = ACTIONS(1333), - [anon_sym_for] = ACTIONS(1333), - [anon_sym_if] = ACTIONS(1333), - [anon_sym_impl] = ACTIONS(1333), - [anon_sym_let] = ACTIONS(1333), - [anon_sym_loop] = ACTIONS(1333), - [anon_sym_match] = ACTIONS(1333), - [anon_sym_mod] = ACTIONS(1333), - [anon_sym_pub] = ACTIONS(1333), - [anon_sym_return] = ACTIONS(1333), - [anon_sym_static] = ACTIONS(1333), - [anon_sym_struct] = ACTIONS(1333), - [anon_sym_trait] = ACTIONS(1333), - [anon_sym_type] = ACTIONS(1333), - [anon_sym_union] = ACTIONS(1333), - [anon_sym_unsafe] = ACTIONS(1333), - [anon_sym_use] = ACTIONS(1333), - [anon_sym_while] = ACTIONS(1333), - [anon_sym_POUND] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_extern] = ACTIONS(1333), - [anon_sym_LT] = ACTIONS(1331), - [anon_sym_COLON_COLON] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_move] = ACTIONS(1333), - [sym_integer_literal] = ACTIONS(1331), - [aux_sym_string_literal_token1] = ACTIONS(1331), - [sym_char_literal] = ACTIONS(1331), - [anon_sym_true] = ACTIONS(1333), - [anon_sym_false] = ACTIONS(1333), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1333), - [sym_super] = ACTIONS(1333), - [sym_crate] = ACTIONS(1333), - [sym_metavariable] = ACTIONS(1331), - [sym_raw_string_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1331), + [ts_builtin_sym_end] = ACTIONS(1318), + [sym_identifier] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_macro_rules_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_u8] = ACTIONS(1320), + [anon_sym_i8] = ACTIONS(1320), + [anon_sym_u16] = ACTIONS(1320), + [anon_sym_i16] = ACTIONS(1320), + [anon_sym_u32] = ACTIONS(1320), + [anon_sym_i32] = ACTIONS(1320), + [anon_sym_u64] = ACTIONS(1320), + [anon_sym_i64] = ACTIONS(1320), + [anon_sym_u128] = ACTIONS(1320), + [anon_sym_i128] = ACTIONS(1320), + [anon_sym_isize] = ACTIONS(1320), + [anon_sym_usize] = ACTIONS(1320), + [anon_sym_f32] = ACTIONS(1320), + [anon_sym_f64] = ACTIONS(1320), + [anon_sym_bool] = ACTIONS(1320), + [anon_sym_str] = ACTIONS(1320), + [anon_sym_char] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_async] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_fn] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_impl] = ACTIONS(1320), + [anon_sym_let] = ACTIONS(1320), + [anon_sym_loop] = ACTIONS(1320), + [anon_sym_match] = ACTIONS(1320), + [anon_sym_mod] = ACTIONS(1320), + [anon_sym_pub] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_trait] = ACTIONS(1320), + [anon_sym_type] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_unsafe] = ACTIONS(1320), + [anon_sym_use] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_COLON_COLON] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_DOT_DOT] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_move] = ACTIONS(1320), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = ACTIONS(1320), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1320), + [sym_super] = ACTIONS(1320), + [sym_crate] = ACTIONS(1320), + [sym_metavariable] = ACTIONS(1318), + [sym_raw_string_literal] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1318), [sym_block_comment] = ACTIONS(3), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_macro_rules_BANG] = ACTIONS(1335), - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_u8] = ACTIONS(1337), - [anon_sym_i8] = ACTIONS(1337), - [anon_sym_u16] = ACTIONS(1337), - [anon_sym_i16] = ACTIONS(1337), - [anon_sym_u32] = ACTIONS(1337), - [anon_sym_i32] = ACTIONS(1337), - [anon_sym_u64] = ACTIONS(1337), - [anon_sym_i64] = ACTIONS(1337), - [anon_sym_u128] = ACTIONS(1337), - [anon_sym_i128] = ACTIONS(1337), - [anon_sym_isize] = ACTIONS(1337), - [anon_sym_usize] = ACTIONS(1337), - [anon_sym_f32] = ACTIONS(1337), - [anon_sym_f64] = ACTIONS(1337), - [anon_sym_bool] = ACTIONS(1337), - [anon_sym_str] = ACTIONS(1337), - [anon_sym_char] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_default] = ACTIONS(1337), - [anon_sym_enum] = ACTIONS(1337), - [anon_sym_fn] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_impl] = ACTIONS(1337), - [anon_sym_let] = ACTIONS(1337), - [anon_sym_loop] = ACTIONS(1337), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_mod] = ACTIONS(1337), - [anon_sym_pub] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_struct] = ACTIONS(1337), - [anon_sym_trait] = ACTIONS(1337), - [anon_sym_type] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1337), - [anon_sym_unsafe] = ACTIONS(1337), - [anon_sym_use] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_COLON_COLON] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_DOT_DOT] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_move] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1335), - [aux_sym_string_literal_token1] = ACTIONS(1335), - [sym_char_literal] = ACTIONS(1335), - [anon_sym_true] = ACTIONS(1337), - [anon_sym_false] = ACTIONS(1337), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1337), - [sym_super] = ACTIONS(1337), - [sym_crate] = ACTIONS(1337), - [sym_metavariable] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(1335), - [sym_float_literal] = ACTIONS(1335), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_macro_rules_BANG] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_u8] = ACTIONS(1324), + [anon_sym_i8] = ACTIONS(1324), + [anon_sym_u16] = ACTIONS(1324), + [anon_sym_i16] = ACTIONS(1324), + [anon_sym_u32] = ACTIONS(1324), + [anon_sym_i32] = ACTIONS(1324), + [anon_sym_u64] = ACTIONS(1324), + [anon_sym_i64] = ACTIONS(1324), + [anon_sym_u128] = ACTIONS(1324), + [anon_sym_i128] = ACTIONS(1324), + [anon_sym_isize] = ACTIONS(1324), + [anon_sym_usize] = ACTIONS(1324), + [anon_sym_f32] = ACTIONS(1324), + [anon_sym_f64] = ACTIONS(1324), + [anon_sym_bool] = ACTIONS(1324), + [anon_sym_str] = ACTIONS(1324), + [anon_sym_char] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_async] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_fn] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1324), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_loop] = ACTIONS(1324), + [anon_sym_match] = ACTIONS(1324), + [anon_sym_mod] = ACTIONS(1324), + [anon_sym_pub] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_trait] = ACTIONS(1324), + [anon_sym_type] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1324), + [anon_sym_use] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_POUND] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_COLON_COLON] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_DOT_DOT] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_move] = ACTIONS(1324), + [sym_integer_literal] = ACTIONS(1322), + [aux_sym_string_literal_token1] = ACTIONS(1322), + [sym_char_literal] = ACTIONS(1322), + [anon_sym_true] = ACTIONS(1324), + [anon_sym_false] = ACTIONS(1324), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1324), + [sym_crate] = ACTIONS(1324), + [sym_metavariable] = ACTIONS(1322), + [sym_raw_string_literal] = ACTIONS(1322), + [sym_float_literal] = ACTIONS(1322), [sym_block_comment] = ACTIONS(3), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_macro_rules_BANG] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1339), - [anon_sym_u8] = ACTIONS(1341), - [anon_sym_i8] = ACTIONS(1341), - [anon_sym_u16] = ACTIONS(1341), - [anon_sym_i16] = ACTIONS(1341), - [anon_sym_u32] = ACTIONS(1341), - [anon_sym_i32] = ACTIONS(1341), - [anon_sym_u64] = ACTIONS(1341), - [anon_sym_i64] = ACTIONS(1341), - [anon_sym_u128] = ACTIONS(1341), - [anon_sym_i128] = ACTIONS(1341), - [anon_sym_isize] = ACTIONS(1341), - [anon_sym_usize] = ACTIONS(1341), - [anon_sym_f32] = ACTIONS(1341), - [anon_sym_f64] = ACTIONS(1341), - [anon_sym_bool] = ACTIONS(1341), - [anon_sym_str] = ACTIONS(1341), - [anon_sym_char] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_async] = ACTIONS(1341), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_default] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_fn] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1341), - [anon_sym_let] = ACTIONS(1341), - [anon_sym_loop] = ACTIONS(1341), - [anon_sym_match] = ACTIONS(1341), - [anon_sym_mod] = ACTIONS(1341), - [anon_sym_pub] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_trait] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1341), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1341), - [anon_sym_use] = ACTIONS(1341), - [anon_sym_while] = ACTIONS(1341), - [anon_sym_POUND] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1341), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_COLON_COLON] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1339), - [anon_sym_DOT_DOT] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_PIPE] = ACTIONS(1339), - [anon_sym_move] = ACTIONS(1341), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1339), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1341), - [anon_sym_false] = ACTIONS(1341), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1341), - [sym_super] = ACTIONS(1341), - [sym_crate] = ACTIONS(1341), - [sym_metavariable] = ACTIONS(1339), - [sym_raw_string_literal] = ACTIONS(1339), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_macro_rules_BANG] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_u8] = ACTIONS(1328), + [anon_sym_i8] = ACTIONS(1328), + [anon_sym_u16] = ACTIONS(1328), + [anon_sym_i16] = ACTIONS(1328), + [anon_sym_u32] = ACTIONS(1328), + [anon_sym_i32] = ACTIONS(1328), + [anon_sym_u64] = ACTIONS(1328), + [anon_sym_i64] = ACTIONS(1328), + [anon_sym_u128] = ACTIONS(1328), + [anon_sym_i128] = ACTIONS(1328), + [anon_sym_isize] = ACTIONS(1328), + [anon_sym_usize] = ACTIONS(1328), + [anon_sym_f32] = ACTIONS(1328), + [anon_sym_f64] = ACTIONS(1328), + [anon_sym_bool] = ACTIONS(1328), + [anon_sym_str] = ACTIONS(1328), + [anon_sym_char] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_async] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_fn] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_impl] = ACTIONS(1328), + [anon_sym_let] = ACTIONS(1328), + [anon_sym_loop] = ACTIONS(1328), + [anon_sym_match] = ACTIONS(1328), + [anon_sym_mod] = ACTIONS(1328), + [anon_sym_pub] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_trait] = ACTIONS(1328), + [anon_sym_type] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_unsafe] = ACTIONS(1328), + [anon_sym_use] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_POUND] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym_LT] = ACTIONS(1326), + [anon_sym_COLON_COLON] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_DOT_DOT] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PIPE] = ACTIONS(1326), + [anon_sym_move] = ACTIONS(1328), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1326), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1328), + [anon_sym_false] = ACTIONS(1328), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1328), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1326), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), [sym_block_comment] = ACTIONS(3), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(1343), - [sym_identifier] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_macro_rules_BANG] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_RBRACE] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_u8] = ACTIONS(1345), - [anon_sym_i8] = ACTIONS(1345), - [anon_sym_u16] = ACTIONS(1345), - [anon_sym_i16] = ACTIONS(1345), - [anon_sym_u32] = ACTIONS(1345), - [anon_sym_i32] = ACTIONS(1345), - [anon_sym_u64] = ACTIONS(1345), - [anon_sym_i64] = ACTIONS(1345), - [anon_sym_u128] = ACTIONS(1345), - [anon_sym_i128] = ACTIONS(1345), - [anon_sym_isize] = ACTIONS(1345), - [anon_sym_usize] = ACTIONS(1345), - [anon_sym_f32] = ACTIONS(1345), - [anon_sym_f64] = ACTIONS(1345), - [anon_sym_bool] = ACTIONS(1345), - [anon_sym_str] = ACTIONS(1345), - [anon_sym_char] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_enum] = ACTIONS(1345), - [anon_sym_fn] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_impl] = ACTIONS(1345), - [anon_sym_let] = ACTIONS(1345), - [anon_sym_loop] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_mod] = ACTIONS(1345), - [anon_sym_pub] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_static] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), - [anon_sym_trait] = ACTIONS(1345), - [anon_sym_type] = ACTIONS(1345), - [anon_sym_union] = ACTIONS(1345), - [anon_sym_unsafe] = ACTIONS(1345), - [anon_sym_use] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_POUND] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_COLON_COLON] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_DOT_DOT] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_PIPE] = ACTIONS(1343), - [anon_sym_move] = ACTIONS(1345), - [sym_integer_literal] = ACTIONS(1343), - [aux_sym_string_literal_token1] = ACTIONS(1343), - [sym_char_literal] = ACTIONS(1343), - [anon_sym_true] = ACTIONS(1345), - [anon_sym_false] = ACTIONS(1345), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1343), - [sym_raw_string_literal] = ACTIONS(1343), - [sym_float_literal] = ACTIONS(1343), + [ts_builtin_sym_end] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_macro_rules_BANG] = ACTIONS(1330), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_u8] = ACTIONS(1332), + [anon_sym_i8] = ACTIONS(1332), + [anon_sym_u16] = ACTIONS(1332), + [anon_sym_i16] = ACTIONS(1332), + [anon_sym_u32] = ACTIONS(1332), + [anon_sym_i32] = ACTIONS(1332), + [anon_sym_u64] = ACTIONS(1332), + [anon_sym_i64] = ACTIONS(1332), + [anon_sym_u128] = ACTIONS(1332), + [anon_sym_i128] = ACTIONS(1332), + [anon_sym_isize] = ACTIONS(1332), + [anon_sym_usize] = ACTIONS(1332), + [anon_sym_f32] = ACTIONS(1332), + [anon_sym_f64] = ACTIONS(1332), + [anon_sym_bool] = ACTIONS(1332), + [anon_sym_str] = ACTIONS(1332), + [anon_sym_char] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_async] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_fn] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_impl] = ACTIONS(1332), + [anon_sym_let] = ACTIONS(1332), + [anon_sym_loop] = ACTIONS(1332), + [anon_sym_match] = ACTIONS(1332), + [anon_sym_mod] = ACTIONS(1332), + [anon_sym_pub] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_trait] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_unsafe] = ACTIONS(1332), + [anon_sym_use] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_POUND] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1330), + [anon_sym_COLON_COLON] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_DOT_DOT] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PIPE] = ACTIONS(1330), + [anon_sym_move] = ACTIONS(1332), + [sym_integer_literal] = ACTIONS(1330), + [aux_sym_string_literal_token1] = ACTIONS(1330), + [sym_char_literal] = ACTIONS(1330), + [anon_sym_true] = ACTIONS(1332), + [anon_sym_false] = ACTIONS(1332), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1332), + [sym_super] = ACTIONS(1332), + [sym_crate] = ACTIONS(1332), + [sym_metavariable] = ACTIONS(1330), + [sym_raw_string_literal] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1330), [sym_block_comment] = ACTIONS(3), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(1347), - [sym_identifier] = ACTIONS(1349), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_macro_rules_BANG] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_u8] = ACTIONS(1349), - [anon_sym_i8] = ACTIONS(1349), - [anon_sym_u16] = ACTIONS(1349), - [anon_sym_i16] = ACTIONS(1349), - [anon_sym_u32] = ACTIONS(1349), - [anon_sym_i32] = ACTIONS(1349), - [anon_sym_u64] = ACTIONS(1349), - [anon_sym_i64] = ACTIONS(1349), - [anon_sym_u128] = ACTIONS(1349), - [anon_sym_i128] = ACTIONS(1349), - [anon_sym_isize] = ACTIONS(1349), - [anon_sym_usize] = ACTIONS(1349), - [anon_sym_f32] = ACTIONS(1349), - [anon_sym_f64] = ACTIONS(1349), - [anon_sym_bool] = ACTIONS(1349), - [anon_sym_str] = ACTIONS(1349), - [anon_sym_char] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1349), - [anon_sym_async] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_default] = ACTIONS(1349), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_fn] = ACTIONS(1349), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_impl] = ACTIONS(1349), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_loop] = ACTIONS(1349), - [anon_sym_match] = ACTIONS(1349), - [anon_sym_mod] = ACTIONS(1349), - [anon_sym_pub] = ACTIONS(1349), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_static] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_trait] = ACTIONS(1349), - [anon_sym_type] = ACTIONS(1349), - [anon_sym_union] = ACTIONS(1349), - [anon_sym_unsafe] = ACTIONS(1349), - [anon_sym_use] = ACTIONS(1349), - [anon_sym_while] = ACTIONS(1349), - [anon_sym_POUND] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_move] = ACTIONS(1349), - [sym_integer_literal] = ACTIONS(1347), - [aux_sym_string_literal_token1] = ACTIONS(1347), - [sym_char_literal] = ACTIONS(1347), - [anon_sym_true] = ACTIONS(1349), - [anon_sym_false] = ACTIONS(1349), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1349), - [sym_super] = ACTIONS(1349), - [sym_crate] = ACTIONS(1349), - [sym_metavariable] = ACTIONS(1347), - [sym_raw_string_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1347), + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_macro_rules_BANG] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_u8] = ACTIONS(1336), + [anon_sym_i8] = ACTIONS(1336), + [anon_sym_u16] = ACTIONS(1336), + [anon_sym_i16] = ACTIONS(1336), + [anon_sym_u32] = ACTIONS(1336), + [anon_sym_i32] = ACTIONS(1336), + [anon_sym_u64] = ACTIONS(1336), + [anon_sym_i64] = ACTIONS(1336), + [anon_sym_u128] = ACTIONS(1336), + [anon_sym_i128] = ACTIONS(1336), + [anon_sym_isize] = ACTIONS(1336), + [anon_sym_usize] = ACTIONS(1336), + [anon_sym_f32] = ACTIONS(1336), + [anon_sym_f64] = ACTIONS(1336), + [anon_sym_bool] = ACTIONS(1336), + [anon_sym_str] = ACTIONS(1336), + [anon_sym_char] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_fn] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_impl] = ACTIONS(1336), + [anon_sym_let] = ACTIONS(1336), + [anon_sym_loop] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_mod] = ACTIONS(1336), + [anon_sym_pub] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_trait] = ACTIONS(1336), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_unsafe] = ACTIONS(1336), + [anon_sym_use] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1334), + [anon_sym_COLON_COLON] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PIPE] = ACTIONS(1334), + [anon_sym_move] = ACTIONS(1336), + [sym_integer_literal] = ACTIONS(1334), + [aux_sym_string_literal_token1] = ACTIONS(1334), + [sym_char_literal] = ACTIONS(1334), + [anon_sym_true] = ACTIONS(1336), + [anon_sym_false] = ACTIONS(1336), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1336), + [sym_super] = ACTIONS(1336), + [sym_crate] = ACTIONS(1336), + [sym_metavariable] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1334), + [sym_float_literal] = ACTIONS(1334), [sym_block_comment] = ACTIONS(3), }, [308] = { - [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_LBRACE] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym_LT] = ACTIONS(1351), - [anon_sym_COLON_COLON] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_PIPE] = ACTIONS(1351), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1353), - [sym_super] = ACTIONS(1353), - [sym_crate] = ACTIONS(1353), - [sym_metavariable] = ACTIONS(1351), - [sym_raw_string_literal] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1351), + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_macro_rules_BANG] = ACTIONS(1338), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_POUND] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1338), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_DOT_DOT] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(1338), + [anon_sym_move] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1338), + [aux_sym_string_literal_token1] = ACTIONS(1338), + [sym_char_literal] = ACTIONS(1338), + [anon_sym_true] = ACTIONS(1340), + [anon_sym_false] = ACTIONS(1340), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1338), + [sym_raw_string_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1338), [sym_block_comment] = ACTIONS(3), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_macro_rules_BANG] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_u8] = ACTIONS(1357), - [anon_sym_i8] = ACTIONS(1357), - [anon_sym_u16] = ACTIONS(1357), - [anon_sym_i16] = ACTIONS(1357), - [anon_sym_u32] = ACTIONS(1357), - [anon_sym_i32] = ACTIONS(1357), - [anon_sym_u64] = ACTIONS(1357), - [anon_sym_i64] = ACTIONS(1357), - [anon_sym_u128] = ACTIONS(1357), - [anon_sym_i128] = ACTIONS(1357), - [anon_sym_isize] = ACTIONS(1357), - [anon_sym_usize] = ACTIONS(1357), - [anon_sym_f32] = ACTIONS(1357), - [anon_sym_f64] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_str] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [anon_sym_fn] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_impl] = ACTIONS(1357), - [anon_sym_let] = ACTIONS(1357), - [anon_sym_loop] = ACTIONS(1357), - [anon_sym_match] = ACTIONS(1357), - [anon_sym_mod] = ACTIONS(1357), - [anon_sym_pub] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_trait] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_unsafe] = ACTIONS(1357), - [anon_sym_use] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_POUND] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_PIPE] = ACTIONS(1355), - [anon_sym_move] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1355), - [aux_sym_string_literal_token1] = ACTIONS(1355), - [sym_char_literal] = ACTIONS(1355), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1357), - [sym_super] = ACTIONS(1357), - [sym_crate] = ACTIONS(1357), - [sym_metavariable] = ACTIONS(1355), - [sym_raw_string_literal] = ACTIONS(1355), - [sym_float_literal] = ACTIONS(1355), + [ts_builtin_sym_end] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_macro_rules_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_u8] = ACTIONS(1344), + [anon_sym_i8] = ACTIONS(1344), + [anon_sym_u16] = ACTIONS(1344), + [anon_sym_i16] = ACTIONS(1344), + [anon_sym_u32] = ACTIONS(1344), + [anon_sym_i32] = ACTIONS(1344), + [anon_sym_u64] = ACTIONS(1344), + [anon_sym_i64] = ACTIONS(1344), + [anon_sym_u128] = ACTIONS(1344), + [anon_sym_i128] = ACTIONS(1344), + [anon_sym_isize] = ACTIONS(1344), + [anon_sym_usize] = ACTIONS(1344), + [anon_sym_f32] = ACTIONS(1344), + [anon_sym_f64] = ACTIONS(1344), + [anon_sym_bool] = ACTIONS(1344), + [anon_sym_str] = ACTIONS(1344), + [anon_sym_char] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_fn] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_impl] = ACTIONS(1344), + [anon_sym_let] = ACTIONS(1344), + [anon_sym_loop] = ACTIONS(1344), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_mod] = ACTIONS(1344), + [anon_sym_pub] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_trait] = ACTIONS(1344), + [anon_sym_type] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_unsafe] = ACTIONS(1344), + [anon_sym_use] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_POUND] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_COLON_COLON] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_DOT_DOT] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_move] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1342), + [aux_sym_string_literal_token1] = ACTIONS(1342), + [sym_char_literal] = ACTIONS(1342), + [anon_sym_true] = ACTIONS(1344), + [anon_sym_false] = ACTIONS(1344), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1342), + [sym_raw_string_literal] = ACTIONS(1342), + [sym_float_literal] = ACTIONS(1342), [sym_block_comment] = ACTIONS(3), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(1359), - [sym_identifier] = ACTIONS(1361), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_macro_rules_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_RBRACE] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_u8] = ACTIONS(1361), - [anon_sym_i8] = ACTIONS(1361), - [anon_sym_u16] = ACTIONS(1361), - [anon_sym_i16] = ACTIONS(1361), - [anon_sym_u32] = ACTIONS(1361), - [anon_sym_i32] = ACTIONS(1361), - [anon_sym_u64] = ACTIONS(1361), - [anon_sym_i64] = ACTIONS(1361), - [anon_sym_u128] = ACTIONS(1361), - [anon_sym_i128] = ACTIONS(1361), - [anon_sym_isize] = ACTIONS(1361), - [anon_sym_usize] = ACTIONS(1361), - [anon_sym_f32] = ACTIONS(1361), - [anon_sym_f64] = ACTIONS(1361), - [anon_sym_bool] = ACTIONS(1361), - [anon_sym_str] = ACTIONS(1361), - [anon_sym_char] = ACTIONS(1361), - [anon_sym_SQUOTE] = ACTIONS(1361), - [anon_sym_async] = ACTIONS(1361), - [anon_sym_break] = ACTIONS(1361), - [anon_sym_const] = ACTIONS(1361), - [anon_sym_continue] = ACTIONS(1361), - [anon_sym_default] = ACTIONS(1361), - [anon_sym_enum] = ACTIONS(1361), - [anon_sym_fn] = ACTIONS(1361), - [anon_sym_for] = ACTIONS(1361), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_impl] = ACTIONS(1361), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_loop] = ACTIONS(1361), - [anon_sym_match] = ACTIONS(1361), - [anon_sym_mod] = ACTIONS(1361), - [anon_sym_pub] = ACTIONS(1361), - [anon_sym_return] = ACTIONS(1361), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_trait] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_union] = ACTIONS(1361), - [anon_sym_unsafe] = ACTIONS(1361), - [anon_sym_use] = ACTIONS(1361), - [anon_sym_while] = ACTIONS(1361), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_extern] = ACTIONS(1361), - [anon_sym_LT] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_DOT_DOT] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1359), - [anon_sym_PIPE] = ACTIONS(1359), - [anon_sym_move] = ACTIONS(1361), - [sym_integer_literal] = ACTIONS(1359), - [aux_sym_string_literal_token1] = ACTIONS(1359), - [sym_char_literal] = ACTIONS(1359), - [anon_sym_true] = ACTIONS(1361), - [anon_sym_false] = ACTIONS(1361), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1361), - [sym_super] = ACTIONS(1361), - [sym_crate] = ACTIONS(1361), - [sym_metavariable] = ACTIONS(1359), - [sym_raw_string_literal] = ACTIONS(1359), - [sym_float_literal] = ACTIONS(1359), + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_macro_rules_BANG] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_u8] = ACTIONS(1348), + [anon_sym_i8] = ACTIONS(1348), + [anon_sym_u16] = ACTIONS(1348), + [anon_sym_i16] = ACTIONS(1348), + [anon_sym_u32] = ACTIONS(1348), + [anon_sym_i32] = ACTIONS(1348), + [anon_sym_u64] = ACTIONS(1348), + [anon_sym_i64] = ACTIONS(1348), + [anon_sym_u128] = ACTIONS(1348), + [anon_sym_i128] = ACTIONS(1348), + [anon_sym_isize] = ACTIONS(1348), + [anon_sym_usize] = ACTIONS(1348), + [anon_sym_f32] = ACTIONS(1348), + [anon_sym_f64] = ACTIONS(1348), + [anon_sym_bool] = ACTIONS(1348), + [anon_sym_str] = ACTIONS(1348), + [anon_sym_char] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_async] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_fn] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_impl] = ACTIONS(1348), + [anon_sym_let] = ACTIONS(1348), + [anon_sym_loop] = ACTIONS(1348), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_mod] = ACTIONS(1348), + [anon_sym_pub] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_trait] = ACTIONS(1348), + [anon_sym_type] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1348), + [anon_sym_use] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1346), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_DOT_DOT] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_move] = ACTIONS(1348), + [sym_integer_literal] = ACTIONS(1346), + [aux_sym_string_literal_token1] = ACTIONS(1346), + [sym_char_literal] = ACTIONS(1346), + [anon_sym_true] = ACTIONS(1348), + [anon_sym_false] = ACTIONS(1348), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1348), + [sym_super] = ACTIONS(1348), + [sym_crate] = ACTIONS(1348), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(1346), + [sym_float_literal] = ACTIONS(1346), [sym_block_comment] = ACTIONS(3), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(1363), - [sym_identifier] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_macro_rules_BANG] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_RBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_u8] = ACTIONS(1365), - [anon_sym_i8] = ACTIONS(1365), - [anon_sym_u16] = ACTIONS(1365), - [anon_sym_i16] = ACTIONS(1365), - [anon_sym_u32] = ACTIONS(1365), - [anon_sym_i32] = ACTIONS(1365), - [anon_sym_u64] = ACTIONS(1365), - [anon_sym_i64] = ACTIONS(1365), - [anon_sym_u128] = ACTIONS(1365), - [anon_sym_i128] = ACTIONS(1365), - [anon_sym_isize] = ACTIONS(1365), - [anon_sym_usize] = ACTIONS(1365), - [anon_sym_f32] = ACTIONS(1365), - [anon_sym_f64] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_str] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_default] = ACTIONS(1365), - [anon_sym_enum] = ACTIONS(1365), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_impl] = ACTIONS(1365), - [anon_sym_let] = ACTIONS(1365), - [anon_sym_loop] = ACTIONS(1365), - [anon_sym_match] = ACTIONS(1365), - [anon_sym_mod] = ACTIONS(1365), - [anon_sym_pub] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_struct] = ACTIONS(1365), - [anon_sym_trait] = ACTIONS(1365), - [anon_sym_type] = ACTIONS(1365), - [anon_sym_union] = ACTIONS(1365), - [anon_sym_unsafe] = ACTIONS(1365), - [anon_sym_use] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_POUND] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_extern] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1363), - [anon_sym_COLON_COLON] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1363), - [anon_sym_move] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1363), - [aux_sym_string_literal_token1] = ACTIONS(1363), - [sym_char_literal] = ACTIONS(1363), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1365), - [sym_super] = ACTIONS(1365), - [sym_crate] = ACTIONS(1365), - [sym_metavariable] = ACTIONS(1363), - [sym_raw_string_literal] = ACTIONS(1363), - [sym_float_literal] = ACTIONS(1363), + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_macro_rules_BANG] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_u8] = ACTIONS(1352), + [anon_sym_i8] = ACTIONS(1352), + [anon_sym_u16] = ACTIONS(1352), + [anon_sym_i16] = ACTIONS(1352), + [anon_sym_u32] = ACTIONS(1352), + [anon_sym_i32] = ACTIONS(1352), + [anon_sym_u64] = ACTIONS(1352), + [anon_sym_i64] = ACTIONS(1352), + [anon_sym_u128] = ACTIONS(1352), + [anon_sym_i128] = ACTIONS(1352), + [anon_sym_isize] = ACTIONS(1352), + [anon_sym_usize] = ACTIONS(1352), + [anon_sym_f32] = ACTIONS(1352), + [anon_sym_f64] = ACTIONS(1352), + [anon_sym_bool] = ACTIONS(1352), + [anon_sym_str] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_async] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_fn] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_impl] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1352), + [anon_sym_loop] = ACTIONS(1352), + [anon_sym_match] = ACTIONS(1352), + [anon_sym_mod] = ACTIONS(1352), + [anon_sym_pub] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_trait] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_unsafe] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_POUND] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_COLON_COLON] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_DOT_DOT] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_move] = ACTIONS(1352), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1350), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1352), + [anon_sym_false] = ACTIONS(1352), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1352), + [sym_super] = ACTIONS(1352), + [sym_crate] = ACTIONS(1352), + [sym_metavariable] = ACTIONS(1350), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), [sym_block_comment] = ACTIONS(3), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_macro_rules_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u128] = ACTIONS(1369), - [anon_sym_i128] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_str] = ACTIONS(1369), - [anon_sym_char] = ACTIONS(1369), - [anon_sym_SQUOTE] = ACTIONS(1369), - [anon_sym_async] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_default] = ACTIONS(1369), - [anon_sym_enum] = ACTIONS(1369), - [anon_sym_fn] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_impl] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_mod] = ACTIONS(1369), - [anon_sym_pub] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_trait] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_union] = ACTIONS(1369), - [anon_sym_unsafe] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_POUND] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_move] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1367), - [aux_sym_string_literal_token1] = ACTIONS(1367), - [sym_char_literal] = ACTIONS(1367), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1369), - [sym_super] = ACTIONS(1369), - [sym_crate] = ACTIONS(1369), - [sym_metavariable] = ACTIONS(1367), - [sym_raw_string_literal] = ACTIONS(1367), - [sym_float_literal] = ACTIONS(1367), + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_macro_rules_BANG] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_u8] = ACTIONS(1356), + [anon_sym_i8] = ACTIONS(1356), + [anon_sym_u16] = ACTIONS(1356), + [anon_sym_i16] = ACTIONS(1356), + [anon_sym_u32] = ACTIONS(1356), + [anon_sym_i32] = ACTIONS(1356), + [anon_sym_u64] = ACTIONS(1356), + [anon_sym_i64] = ACTIONS(1356), + [anon_sym_u128] = ACTIONS(1356), + [anon_sym_i128] = ACTIONS(1356), + [anon_sym_isize] = ACTIONS(1356), + [anon_sym_usize] = ACTIONS(1356), + [anon_sym_f32] = ACTIONS(1356), + [anon_sym_f64] = ACTIONS(1356), + [anon_sym_bool] = ACTIONS(1356), + [anon_sym_str] = ACTIONS(1356), + [anon_sym_char] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_async] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_fn] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_impl] = ACTIONS(1356), + [anon_sym_let] = ACTIONS(1356), + [anon_sym_loop] = ACTIONS(1356), + [anon_sym_match] = ACTIONS(1356), + [anon_sym_mod] = ACTIONS(1356), + [anon_sym_pub] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_trait] = ACTIONS(1356), + [anon_sym_type] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_unsafe] = ACTIONS(1356), + [anon_sym_use] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_COLON_COLON] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_DOT_DOT] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_move] = ACTIONS(1356), + [sym_integer_literal] = ACTIONS(1354), + [aux_sym_string_literal_token1] = ACTIONS(1354), + [sym_char_literal] = ACTIONS(1354), + [anon_sym_true] = ACTIONS(1356), + [anon_sym_false] = ACTIONS(1356), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1356), + [sym_super] = ACTIONS(1356), + [sym_crate] = ACTIONS(1356), + [sym_metavariable] = ACTIONS(1354), + [sym_raw_string_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1354), [sym_block_comment] = ACTIONS(3), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(1371), - [sym_identifier] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_macro_rules_BANG] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1373), - [anon_sym_i8] = ACTIONS(1373), - [anon_sym_u16] = ACTIONS(1373), - [anon_sym_i16] = ACTIONS(1373), - [anon_sym_u32] = ACTIONS(1373), - [anon_sym_i32] = ACTIONS(1373), - [anon_sym_u64] = ACTIONS(1373), - [anon_sym_i64] = ACTIONS(1373), - [anon_sym_u128] = ACTIONS(1373), - [anon_sym_i128] = ACTIONS(1373), - [anon_sym_isize] = ACTIONS(1373), - [anon_sym_usize] = ACTIONS(1373), - [anon_sym_f32] = ACTIONS(1373), - [anon_sym_f64] = ACTIONS(1373), - [anon_sym_bool] = ACTIONS(1373), - [anon_sym_str] = ACTIONS(1373), - [anon_sym_char] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_default] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1373), - [anon_sym_fn] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_impl] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_loop] = ACTIONS(1373), - [anon_sym_match] = ACTIONS(1373), - [anon_sym_mod] = ACTIONS(1373), - [anon_sym_pub] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_trait] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_union] = ACTIONS(1373), - [anon_sym_unsafe] = ACTIONS(1373), - [anon_sym_use] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_POUND] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_extern] = ACTIONS(1373), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_COLON_COLON] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_PIPE] = ACTIONS(1371), - [anon_sym_move] = ACTIONS(1373), - [sym_integer_literal] = ACTIONS(1371), - [aux_sym_string_literal_token1] = ACTIONS(1371), - [sym_char_literal] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(1373), - [anon_sym_false] = ACTIONS(1373), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1373), - [sym_super] = ACTIONS(1373), - [sym_crate] = ACTIONS(1373), - [sym_metavariable] = ACTIONS(1371), - [sym_raw_string_literal] = ACTIONS(1371), - [sym_float_literal] = ACTIONS(1371), + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_macro_rules_BANG] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1360), + [anon_sym_i8] = ACTIONS(1360), + [anon_sym_u16] = ACTIONS(1360), + [anon_sym_i16] = ACTIONS(1360), + [anon_sym_u32] = ACTIONS(1360), + [anon_sym_i32] = ACTIONS(1360), + [anon_sym_u64] = ACTIONS(1360), + [anon_sym_i64] = ACTIONS(1360), + [anon_sym_u128] = ACTIONS(1360), + [anon_sym_i128] = ACTIONS(1360), + [anon_sym_isize] = ACTIONS(1360), + [anon_sym_usize] = ACTIONS(1360), + [anon_sym_f32] = ACTIONS(1360), + [anon_sym_f64] = ACTIONS(1360), + [anon_sym_bool] = ACTIONS(1360), + [anon_sym_str] = ACTIONS(1360), + [anon_sym_char] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_async] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_fn] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_impl] = ACTIONS(1360), + [anon_sym_let] = ACTIONS(1360), + [anon_sym_loop] = ACTIONS(1360), + [anon_sym_match] = ACTIONS(1360), + [anon_sym_mod] = ACTIONS(1360), + [anon_sym_pub] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_trait] = ACTIONS(1360), + [anon_sym_type] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_unsafe] = ACTIONS(1360), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_COLON_COLON] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_DOT_DOT] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_move] = ACTIONS(1360), + [sym_integer_literal] = ACTIONS(1358), + [aux_sym_string_literal_token1] = ACTIONS(1358), + [sym_char_literal] = ACTIONS(1358), + [anon_sym_true] = ACTIONS(1360), + [anon_sym_false] = ACTIONS(1360), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1360), + [sym_super] = ACTIONS(1360), + [sym_crate] = ACTIONS(1360), + [sym_metavariable] = ACTIONS(1358), + [sym_raw_string_literal] = ACTIONS(1358), + [sym_float_literal] = ACTIONS(1358), [sym_block_comment] = ACTIONS(3), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(1375), - [sym_identifier] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_macro_rules_BANG] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_u8] = ACTIONS(1377), - [anon_sym_i8] = ACTIONS(1377), - [anon_sym_u16] = ACTIONS(1377), - [anon_sym_i16] = ACTIONS(1377), - [anon_sym_u32] = ACTIONS(1377), - [anon_sym_i32] = ACTIONS(1377), - [anon_sym_u64] = ACTIONS(1377), - [anon_sym_i64] = ACTIONS(1377), - [anon_sym_u128] = ACTIONS(1377), - [anon_sym_i128] = ACTIONS(1377), - [anon_sym_isize] = ACTIONS(1377), - [anon_sym_usize] = ACTIONS(1377), - [anon_sym_f32] = ACTIONS(1377), - [anon_sym_f64] = ACTIONS(1377), - [anon_sym_bool] = ACTIONS(1377), - [anon_sym_str] = ACTIONS(1377), - [anon_sym_char] = ACTIONS(1377), - [anon_sym_SQUOTE] = ACTIONS(1377), - [anon_sym_async] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_default] = ACTIONS(1377), - [anon_sym_enum] = ACTIONS(1377), - [anon_sym_fn] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_impl] = ACTIONS(1377), - [anon_sym_let] = ACTIONS(1377), - [anon_sym_loop] = ACTIONS(1377), - [anon_sym_match] = ACTIONS(1377), - [anon_sym_mod] = ACTIONS(1377), - [anon_sym_pub] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_struct] = ACTIONS(1377), - [anon_sym_trait] = ACTIONS(1377), - [anon_sym_type] = ACTIONS(1377), - [anon_sym_union] = ACTIONS(1377), - [anon_sym_unsafe] = ACTIONS(1377), - [anon_sym_use] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_POUND] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_extern] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1375), - [anon_sym_COLON_COLON] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_DOT_DOT] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_move] = ACTIONS(1377), - [sym_integer_literal] = ACTIONS(1375), - [aux_sym_string_literal_token1] = ACTIONS(1375), - [sym_char_literal] = ACTIONS(1375), - [anon_sym_true] = ACTIONS(1377), - [anon_sym_false] = ACTIONS(1377), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1377), - [sym_super] = ACTIONS(1377), - [sym_crate] = ACTIONS(1377), - [sym_metavariable] = ACTIONS(1375), - [sym_raw_string_literal] = ACTIONS(1375), - [sym_float_literal] = ACTIONS(1375), + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_macro_rules_BANG] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_u8] = ACTIONS(1364), + [anon_sym_i8] = ACTIONS(1364), + [anon_sym_u16] = ACTIONS(1364), + [anon_sym_i16] = ACTIONS(1364), + [anon_sym_u32] = ACTIONS(1364), + [anon_sym_i32] = ACTIONS(1364), + [anon_sym_u64] = ACTIONS(1364), + [anon_sym_i64] = ACTIONS(1364), + [anon_sym_u128] = ACTIONS(1364), + [anon_sym_i128] = ACTIONS(1364), + [anon_sym_isize] = ACTIONS(1364), + [anon_sym_usize] = ACTIONS(1364), + [anon_sym_f32] = ACTIONS(1364), + [anon_sym_f64] = ACTIONS(1364), + [anon_sym_bool] = ACTIONS(1364), + [anon_sym_str] = ACTIONS(1364), + [anon_sym_char] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_async] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_impl] = ACTIONS(1364), + [anon_sym_let] = ACTIONS(1364), + [anon_sym_loop] = ACTIONS(1364), + [anon_sym_match] = ACTIONS(1364), + [anon_sym_mod] = ACTIONS(1364), + [anon_sym_pub] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_trait] = ACTIONS(1364), + [anon_sym_type] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_unsafe] = ACTIONS(1364), + [anon_sym_use] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_POUND] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_COLON_COLON] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_DOT_DOT] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_move] = ACTIONS(1364), + [sym_integer_literal] = ACTIONS(1362), + [aux_sym_string_literal_token1] = ACTIONS(1362), + [sym_char_literal] = ACTIONS(1362), + [anon_sym_true] = ACTIONS(1364), + [anon_sym_false] = ACTIONS(1364), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1364), + [sym_super] = ACTIONS(1364), + [sym_crate] = ACTIONS(1364), + [sym_metavariable] = ACTIONS(1362), + [sym_raw_string_literal] = ACTIONS(1362), + [sym_float_literal] = ACTIONS(1362), [sym_block_comment] = ACTIONS(3), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(1379), - [sym_identifier] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_macro_rules_BANG] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_u8] = ACTIONS(1381), - [anon_sym_i8] = ACTIONS(1381), - [anon_sym_u16] = ACTIONS(1381), - [anon_sym_i16] = ACTIONS(1381), - [anon_sym_u32] = ACTIONS(1381), - [anon_sym_i32] = ACTIONS(1381), - [anon_sym_u64] = ACTIONS(1381), - [anon_sym_i64] = ACTIONS(1381), - [anon_sym_u128] = ACTIONS(1381), - [anon_sym_i128] = ACTIONS(1381), - [anon_sym_isize] = ACTIONS(1381), - [anon_sym_usize] = ACTIONS(1381), - [anon_sym_f32] = ACTIONS(1381), - [anon_sym_f64] = ACTIONS(1381), - [anon_sym_bool] = ACTIONS(1381), - [anon_sym_str] = ACTIONS(1381), - [anon_sym_char] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_async] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_default] = ACTIONS(1381), - [anon_sym_enum] = ACTIONS(1381), - [anon_sym_fn] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_impl] = ACTIONS(1381), - [anon_sym_let] = ACTIONS(1381), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1381), - [anon_sym_mod] = ACTIONS(1381), - [anon_sym_pub] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_struct] = ACTIONS(1381), - [anon_sym_trait] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1381), - [anon_sym_unsafe] = ACTIONS(1381), - [anon_sym_use] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_POUND] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_COLON_COLON] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_move] = ACTIONS(1381), - [sym_integer_literal] = ACTIONS(1379), - [aux_sym_string_literal_token1] = ACTIONS(1379), - [sym_char_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1381), - [sym_super] = ACTIONS(1381), - [sym_crate] = ACTIONS(1381), - [sym_metavariable] = ACTIONS(1379), - [sym_raw_string_literal] = ACTIONS(1379), - [sym_float_literal] = ACTIONS(1379), + [ts_builtin_sym_end] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_macro_rules_BANG] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_u8] = ACTIONS(1368), + [anon_sym_i8] = ACTIONS(1368), + [anon_sym_u16] = ACTIONS(1368), + [anon_sym_i16] = ACTIONS(1368), + [anon_sym_u32] = ACTIONS(1368), + [anon_sym_i32] = ACTIONS(1368), + [anon_sym_u64] = ACTIONS(1368), + [anon_sym_i64] = ACTIONS(1368), + [anon_sym_u128] = ACTIONS(1368), + [anon_sym_i128] = ACTIONS(1368), + [anon_sym_isize] = ACTIONS(1368), + [anon_sym_usize] = ACTIONS(1368), + [anon_sym_f32] = ACTIONS(1368), + [anon_sym_f64] = ACTIONS(1368), + [anon_sym_bool] = ACTIONS(1368), + [anon_sym_str] = ACTIONS(1368), + [anon_sym_char] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_async] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_impl] = ACTIONS(1368), + [anon_sym_let] = ACTIONS(1368), + [anon_sym_loop] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1368), + [anon_sym_mod] = ACTIONS(1368), + [anon_sym_pub] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_trait] = ACTIONS(1368), + [anon_sym_type] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_unsafe] = ACTIONS(1368), + [anon_sym_use] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_COLON_COLON] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_DOT_DOT] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_move] = ACTIONS(1368), + [sym_integer_literal] = ACTIONS(1366), + [aux_sym_string_literal_token1] = ACTIONS(1366), + [sym_char_literal] = ACTIONS(1366), + [anon_sym_true] = ACTIONS(1368), + [anon_sym_false] = ACTIONS(1368), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1368), + [sym_super] = ACTIONS(1368), + [sym_crate] = ACTIONS(1368), + [sym_metavariable] = ACTIONS(1366), + [sym_raw_string_literal] = ACTIONS(1366), + [sym_float_literal] = ACTIONS(1366), [sym_block_comment] = ACTIONS(3), }, [316] = { - [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_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1383), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_PIPE] = ACTIONS(1383), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1385), - [sym_super] = ACTIONS(1385), - [sym_crate] = ACTIONS(1385), - [sym_metavariable] = ACTIONS(1383), - [sym_raw_string_literal] = ACTIONS(1383), - [sym_float_literal] = ACTIONS(1383), + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_macro_rules_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_u8] = ACTIONS(1372), + [anon_sym_i8] = ACTIONS(1372), + [anon_sym_u16] = ACTIONS(1372), + [anon_sym_i16] = ACTIONS(1372), + [anon_sym_u32] = ACTIONS(1372), + [anon_sym_i32] = ACTIONS(1372), + [anon_sym_u64] = ACTIONS(1372), + [anon_sym_i64] = ACTIONS(1372), + [anon_sym_u128] = ACTIONS(1372), + [anon_sym_i128] = ACTIONS(1372), + [anon_sym_isize] = ACTIONS(1372), + [anon_sym_usize] = ACTIONS(1372), + [anon_sym_f32] = ACTIONS(1372), + [anon_sym_f64] = ACTIONS(1372), + [anon_sym_bool] = ACTIONS(1372), + [anon_sym_str] = ACTIONS(1372), + [anon_sym_char] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_impl] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_loop] = ACTIONS(1372), + [anon_sym_match] = ACTIONS(1372), + [anon_sym_mod] = ACTIONS(1372), + [anon_sym_pub] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_trait] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_unsafe] = ACTIONS(1372), + [anon_sym_use] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_POUND] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_COLON_COLON] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_DOT_DOT] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1370), + [anon_sym_move] = ACTIONS(1372), + [sym_integer_literal] = ACTIONS(1370), + [aux_sym_string_literal_token1] = ACTIONS(1370), + [sym_char_literal] = ACTIONS(1370), + [anon_sym_true] = ACTIONS(1372), + [anon_sym_false] = ACTIONS(1372), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1372), + [sym_super] = ACTIONS(1372), + [sym_crate] = ACTIONS(1372), + [sym_metavariable] = ACTIONS(1370), + [sym_raw_string_literal] = ACTIONS(1370), + [sym_float_literal] = ACTIONS(1370), [sym_block_comment] = ACTIONS(3), }, [317] = { - [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_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_PIPE] = ACTIONS(1387), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1389), - [sym_super] = ACTIONS(1389), - [sym_crate] = ACTIONS(1389), - [sym_metavariable] = ACTIONS(1387), - [sym_raw_string_literal] = ACTIONS(1387), - [sym_float_literal] = ACTIONS(1387), + [ts_builtin_sym_end] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_macro_rules_BANG] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_u8] = ACTIONS(1376), + [anon_sym_i8] = ACTIONS(1376), + [anon_sym_u16] = ACTIONS(1376), + [anon_sym_i16] = ACTIONS(1376), + [anon_sym_u32] = ACTIONS(1376), + [anon_sym_i32] = ACTIONS(1376), + [anon_sym_u64] = ACTIONS(1376), + [anon_sym_i64] = ACTIONS(1376), + [anon_sym_u128] = ACTIONS(1376), + [anon_sym_i128] = ACTIONS(1376), + [anon_sym_isize] = ACTIONS(1376), + [anon_sym_usize] = ACTIONS(1376), + [anon_sym_f32] = ACTIONS(1376), + [anon_sym_f64] = ACTIONS(1376), + [anon_sym_bool] = ACTIONS(1376), + [anon_sym_str] = ACTIONS(1376), + [anon_sym_char] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_async] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_fn] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_impl] = ACTIONS(1376), + [anon_sym_let] = ACTIONS(1376), + [anon_sym_loop] = ACTIONS(1376), + [anon_sym_match] = ACTIONS(1376), + [anon_sym_mod] = ACTIONS(1376), + [anon_sym_pub] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_trait] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_unsafe] = ACTIONS(1376), + [anon_sym_use] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_POUND] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(1374), + [anon_sym_COLON_COLON] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_DOT_DOT] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_move] = ACTIONS(1376), + [sym_integer_literal] = ACTIONS(1374), + [aux_sym_string_literal_token1] = ACTIONS(1374), + [sym_char_literal] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1376), + [sym_super] = ACTIONS(1376), + [sym_crate] = ACTIONS(1376), + [sym_metavariable] = ACTIONS(1374), + [sym_raw_string_literal] = ACTIONS(1374), + [sym_float_literal] = ACTIONS(1374), [sym_block_comment] = ACTIONS(3), }, [318] = { - [sym__token_pattern] = STATE(330), - [sym_token_tree_pattern] = STATE(330), - [sym_token_binding_pattern] = STATE(330), - [sym_token_repetition_pattern] = STATE(330), - [sym__literal] = STATE(330), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(330), - [sym_identifier] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [anon_sym_u8] = ACTIONS(1391), - [anon_sym_i8] = ACTIONS(1391), - [anon_sym_u16] = ACTIONS(1391), - [anon_sym_i16] = ACTIONS(1391), - [anon_sym_u32] = ACTIONS(1391), - [anon_sym_i32] = ACTIONS(1391), - [anon_sym_u64] = ACTIONS(1391), - [anon_sym_i64] = ACTIONS(1391), - [anon_sym_u128] = ACTIONS(1391), - [anon_sym_i128] = ACTIONS(1391), - [anon_sym_isize] = ACTIONS(1391), - [anon_sym_usize] = ACTIONS(1391), - [anon_sym_f32] = ACTIONS(1391), - [anon_sym_f64] = ACTIONS(1391), - [anon_sym_bool] = ACTIONS(1391), - [anon_sym_str] = ACTIONS(1391), - [anon_sym_char] = ACTIONS(1391), - [aux_sym__non_special_token_token1] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1391), - [anon_sym_as] = ACTIONS(1391), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_await] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [anon_sym_default] = ACTIONS(1391), - [anon_sym_enum] = ACTIONS(1391), - [anon_sym_fn] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_impl] = ACTIONS(1391), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_loop] = ACTIONS(1391), - [anon_sym_match] = ACTIONS(1391), - [anon_sym_mod] = ACTIONS(1391), - [anon_sym_pub] = ACTIONS(1391), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_struct] = ACTIONS(1391), - [anon_sym_trait] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_union] = ACTIONS(1391), - [anon_sym_unsafe] = ACTIONS(1391), - [anon_sym_use] = ACTIONS(1391), - [anon_sym_where] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [sym_mutable_specifier] = ACTIONS(1391), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [ts_builtin_sym_end] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_macro_rules_BANG] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_u8] = ACTIONS(1380), + [anon_sym_i8] = ACTIONS(1380), + [anon_sym_u16] = ACTIONS(1380), + [anon_sym_i16] = ACTIONS(1380), + [anon_sym_u32] = ACTIONS(1380), + [anon_sym_i32] = ACTIONS(1380), + [anon_sym_u64] = ACTIONS(1380), + [anon_sym_i64] = ACTIONS(1380), + [anon_sym_u128] = ACTIONS(1380), + [anon_sym_i128] = ACTIONS(1380), + [anon_sym_isize] = ACTIONS(1380), + [anon_sym_usize] = ACTIONS(1380), + [anon_sym_f32] = ACTIONS(1380), + [anon_sym_f64] = ACTIONS(1380), + [anon_sym_bool] = ACTIONS(1380), + [anon_sym_str] = ACTIONS(1380), + [anon_sym_char] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_async] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_impl] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1380), + [anon_sym_loop] = ACTIONS(1380), + [anon_sym_match] = ACTIONS(1380), + [anon_sym_mod] = ACTIONS(1380), + [anon_sym_pub] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_trait] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_unsafe] = ACTIONS(1380), + [anon_sym_use] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_POUND] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1378), + [anon_sym_COLON_COLON] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_DOT_DOT] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PIPE] = ACTIONS(1378), + [anon_sym_move] = ACTIONS(1380), + [sym_integer_literal] = ACTIONS(1378), + [aux_sym_string_literal_token1] = ACTIONS(1378), + [sym_char_literal] = ACTIONS(1378), + [anon_sym_true] = ACTIONS(1380), + [anon_sym_false] = ACTIONS(1380), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1380), + [sym_super] = ACTIONS(1380), + [sym_crate] = ACTIONS(1380), + [sym_metavariable] = ACTIONS(1378), + [sym_raw_string_literal] = ACTIONS(1378), + [sym_float_literal] = ACTIONS(1378), [sym_block_comment] = ACTIONS(3), }, [319] = { - [sym__token_pattern] = STATE(331), - [sym_token_tree_pattern] = STATE(331), - [sym_token_binding_pattern] = STATE(331), - [sym_token_repetition_pattern] = STATE(331), - [sym__literal] = STATE(331), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(331), - [sym_identifier] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1395), - [anon_sym_await] = 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_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_where] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [sym_mutable_specifier] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1395), - [sym_super] = ACTIONS(1395), - [sym_crate] = ACTIONS(1395), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_macro_rules_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_u8] = ACTIONS(1384), + [anon_sym_i8] = ACTIONS(1384), + [anon_sym_u16] = ACTIONS(1384), + [anon_sym_i16] = ACTIONS(1384), + [anon_sym_u32] = ACTIONS(1384), + [anon_sym_i32] = ACTIONS(1384), + [anon_sym_u64] = ACTIONS(1384), + [anon_sym_i64] = ACTIONS(1384), + [anon_sym_u128] = ACTIONS(1384), + [anon_sym_i128] = ACTIONS(1384), + [anon_sym_isize] = ACTIONS(1384), + [anon_sym_usize] = ACTIONS(1384), + [anon_sym_f32] = ACTIONS(1384), + [anon_sym_f64] = ACTIONS(1384), + [anon_sym_bool] = ACTIONS(1384), + [anon_sym_str] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_impl] = ACTIONS(1384), + [anon_sym_let] = ACTIONS(1384), + [anon_sym_loop] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_mod] = ACTIONS(1384), + [anon_sym_pub] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_trait] = ACTIONS(1384), + [anon_sym_type] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_unsafe] = ACTIONS(1384), + [anon_sym_use] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_POUND] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_COLON_COLON] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_DOT_DOT] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PIPE] = ACTIONS(1382), + [anon_sym_move] = ACTIONS(1384), + [sym_integer_literal] = ACTIONS(1382), + [aux_sym_string_literal_token1] = ACTIONS(1382), + [sym_char_literal] = ACTIONS(1382), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1384), + [sym_super] = ACTIONS(1384), + [sym_crate] = ACTIONS(1384), + [sym_metavariable] = ACTIONS(1382), + [sym_raw_string_literal] = ACTIONS(1382), + [sym_float_literal] = ACTIONS(1382), [sym_block_comment] = ACTIONS(3), }, [320] = { - [sym__token_pattern] = STATE(333), - [sym_token_tree_pattern] = STATE(333), - [sym_token_binding_pattern] = STATE(333), - [sym_token_repetition_pattern] = STATE(333), - [sym__literal] = STATE(333), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_RBRACK] = ACTIONS(1393), - [anon_sym_DOLLAR] = ACTIONS(1200), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_await] = 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_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_where] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [sym_mutable_specifier] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_crate] = ACTIONS(1397), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [ts_builtin_sym_end] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_macro_rules_BANG] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_u8] = ACTIONS(1388), + [anon_sym_i8] = ACTIONS(1388), + [anon_sym_u16] = ACTIONS(1388), + [anon_sym_i16] = ACTIONS(1388), + [anon_sym_u32] = ACTIONS(1388), + [anon_sym_i32] = ACTIONS(1388), + [anon_sym_u64] = ACTIONS(1388), + [anon_sym_i64] = ACTIONS(1388), + [anon_sym_u128] = ACTIONS(1388), + [anon_sym_i128] = ACTIONS(1388), + [anon_sym_isize] = ACTIONS(1388), + [anon_sym_usize] = ACTIONS(1388), + [anon_sym_f32] = ACTIONS(1388), + [anon_sym_f64] = ACTIONS(1388), + [anon_sym_bool] = ACTIONS(1388), + [anon_sym_str] = ACTIONS(1388), + [anon_sym_char] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_fn] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_impl] = ACTIONS(1388), + [anon_sym_let] = ACTIONS(1388), + [anon_sym_loop] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_mod] = ACTIONS(1388), + [anon_sym_pub] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_trait] = ACTIONS(1388), + [anon_sym_type] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_unsafe] = ACTIONS(1388), + [anon_sym_use] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_POUND] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_COLON_COLON] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_DOT_DOT] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_move] = ACTIONS(1388), + [sym_integer_literal] = ACTIONS(1386), + [aux_sym_string_literal_token1] = ACTIONS(1386), + [sym_char_literal] = ACTIONS(1386), + [anon_sym_true] = ACTIONS(1388), + [anon_sym_false] = ACTIONS(1388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1388), + [sym_super] = ACTIONS(1388), + [sym_crate] = ACTIONS(1388), + [sym_metavariable] = ACTIONS(1386), + [sym_raw_string_literal] = ACTIONS(1386), + [sym_float_literal] = ACTIONS(1386), [sym_block_comment] = ACTIONS(3), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_macro_rules_BANG] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u128] = ACTIONS(1401), - [anon_sym_i128] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_str] = ACTIONS(1401), - [anon_sym_char] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_async] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_enum] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_impl] = ACTIONS(1401), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_loop] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_pub] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_trait] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_union] = ACTIONS(1401), - [anon_sym_unsafe] = ACTIONS(1401), - [anon_sym_use] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_POUND] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1399), - [anon_sym_COLON_COLON] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_move] = ACTIONS(1401), - [sym_integer_literal] = ACTIONS(1399), - [aux_sym_string_literal_token1] = ACTIONS(1399), - [sym_char_literal] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1401), - [sym_super] = ACTIONS(1401), - [sym_crate] = ACTIONS(1401), - [sym_metavariable] = ACTIONS(1399), - [sym_raw_string_literal] = ACTIONS(1399), - [sym_float_literal] = ACTIONS(1399), + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_macro_rules_BANG] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_u8] = ACTIONS(1392), + [anon_sym_i8] = ACTIONS(1392), + [anon_sym_u16] = ACTIONS(1392), + [anon_sym_i16] = ACTIONS(1392), + [anon_sym_u32] = ACTIONS(1392), + [anon_sym_i32] = ACTIONS(1392), + [anon_sym_u64] = ACTIONS(1392), + [anon_sym_i64] = ACTIONS(1392), + [anon_sym_u128] = ACTIONS(1392), + [anon_sym_i128] = ACTIONS(1392), + [anon_sym_isize] = ACTIONS(1392), + [anon_sym_usize] = ACTIONS(1392), + [anon_sym_f32] = ACTIONS(1392), + [anon_sym_f64] = ACTIONS(1392), + [anon_sym_bool] = ACTIONS(1392), + [anon_sym_str] = ACTIONS(1392), + [anon_sym_char] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_fn] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_impl] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_loop] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1392), + [anon_sym_mod] = ACTIONS(1392), + [anon_sym_pub] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_trait] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_unsafe] = ACTIONS(1392), + [anon_sym_use] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_POUND] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_COLON_COLON] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_DOT_DOT] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_move] = ACTIONS(1392), + [sym_integer_literal] = ACTIONS(1390), + [aux_sym_string_literal_token1] = ACTIONS(1390), + [sym_char_literal] = ACTIONS(1390), + [anon_sym_true] = ACTIONS(1392), + [anon_sym_false] = ACTIONS(1392), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1392), + [sym_super] = ACTIONS(1392), + [sym_crate] = ACTIONS(1392), + [sym_metavariable] = ACTIONS(1390), + [sym_raw_string_literal] = ACTIONS(1390), + [sym_float_literal] = ACTIONS(1390), [sym_block_comment] = ACTIONS(3), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(1403), - [sym_identifier] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_macro_rules_BANG] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u128] = ACTIONS(1405), - [anon_sym_i128] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_str] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_async] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_enum] = ACTIONS(1405), - [anon_sym_fn] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1405), - [anon_sym_loop] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_pub] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_trait] = ACTIONS(1405), - [anon_sym_type] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_unsafe] = ACTIONS(1405), - [anon_sym_use] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1403), - [anon_sym_COLON_COLON] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_DOT_DOT] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_move] = ACTIONS(1405), - [sym_integer_literal] = ACTIONS(1403), - [aux_sym_string_literal_token1] = ACTIONS(1403), - [sym_char_literal] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1405), - [sym_super] = ACTIONS(1405), - [sym_crate] = ACTIONS(1405), - [sym_metavariable] = ACTIONS(1403), - [sym_raw_string_literal] = ACTIONS(1403), - [sym_float_literal] = ACTIONS(1403), + [ts_builtin_sym_end] = ACTIONS(1394), + [sym_identifier] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_macro_rules_BANG] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u128] = ACTIONS(1396), + [anon_sym_i128] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_str] = ACTIONS(1396), + [anon_sym_char] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_async] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_fn] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_impl] = ACTIONS(1396), + [anon_sym_let] = ACTIONS(1396), + [anon_sym_loop] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1396), + [anon_sym_mod] = ACTIONS(1396), + [anon_sym_pub] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_trait] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_unsafe] = ACTIONS(1396), + [anon_sym_use] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_move] = ACTIONS(1396), + [sym_integer_literal] = ACTIONS(1394), + [aux_sym_string_literal_token1] = ACTIONS(1394), + [sym_char_literal] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1396), + [anon_sym_false] = ACTIONS(1396), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1396), + [sym_super] = ACTIONS(1396), + [sym_crate] = ACTIONS(1396), + [sym_metavariable] = ACTIONS(1394), + [sym_raw_string_literal] = ACTIONS(1394), + [sym_float_literal] = ACTIONS(1394), [sym_block_comment] = ACTIONS(3), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_identifier] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_macro_rules_BANG] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u128] = ACTIONS(1409), - [anon_sym_i128] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_str] = ACTIONS(1409), - [anon_sym_char] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_async] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_fn] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_impl] = ACTIONS(1409), - [anon_sym_let] = ACTIONS(1409), - [anon_sym_loop] = ACTIONS(1409), - [anon_sym_match] = ACTIONS(1409), - [anon_sym_mod] = ACTIONS(1409), - [anon_sym_pub] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_trait] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1409), - [anon_sym_use] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_POUND] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_DOT_DOT] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_move] = ACTIONS(1409), - [sym_integer_literal] = ACTIONS(1407), - [aux_sym_string_literal_token1] = ACTIONS(1407), - [sym_char_literal] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1409), - [sym_super] = ACTIONS(1409), - [sym_crate] = ACTIONS(1409), - [sym_metavariable] = ACTIONS(1407), - [sym_raw_string_literal] = ACTIONS(1407), - [sym_float_literal] = ACTIONS(1407), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_macro_rules_BANG] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_u8] = ACTIONS(1400), + [anon_sym_i8] = ACTIONS(1400), + [anon_sym_u16] = ACTIONS(1400), + [anon_sym_i16] = ACTIONS(1400), + [anon_sym_u32] = ACTIONS(1400), + [anon_sym_i32] = ACTIONS(1400), + [anon_sym_u64] = ACTIONS(1400), + [anon_sym_i64] = ACTIONS(1400), + [anon_sym_u128] = ACTIONS(1400), + [anon_sym_i128] = ACTIONS(1400), + [anon_sym_isize] = ACTIONS(1400), + [anon_sym_usize] = ACTIONS(1400), + [anon_sym_f32] = ACTIONS(1400), + [anon_sym_f64] = ACTIONS(1400), + [anon_sym_bool] = ACTIONS(1400), + [anon_sym_str] = ACTIONS(1400), + [anon_sym_char] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_fn] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_impl] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_pub] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_trait] = ACTIONS(1400), + [anon_sym_type] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_unsafe] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_COLON_COLON] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_DOT_DOT] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1398), + [anon_sym_move] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1398), + [aux_sym_string_literal_token1] = ACTIONS(1398), + [sym_char_literal] = ACTIONS(1398), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_crate] = ACTIONS(1400), + [sym_metavariable] = ACTIONS(1398), + [sym_raw_string_literal] = ACTIONS(1398), + [sym_float_literal] = ACTIONS(1398), [sym_block_comment] = ACTIONS(3), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_identifier] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_macro_rules_BANG] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_u8] = ACTIONS(1413), - [anon_sym_i8] = ACTIONS(1413), - [anon_sym_u16] = ACTIONS(1413), - [anon_sym_i16] = ACTIONS(1413), - [anon_sym_u32] = ACTIONS(1413), - [anon_sym_i32] = ACTIONS(1413), - [anon_sym_u64] = ACTIONS(1413), - [anon_sym_i64] = ACTIONS(1413), - [anon_sym_u128] = ACTIONS(1413), - [anon_sym_i128] = ACTIONS(1413), - [anon_sym_isize] = ACTIONS(1413), - [anon_sym_usize] = ACTIONS(1413), - [anon_sym_f32] = ACTIONS(1413), - [anon_sym_f64] = ACTIONS(1413), - [anon_sym_bool] = ACTIONS(1413), - [anon_sym_str] = ACTIONS(1413), - [anon_sym_char] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_async] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_fn] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_impl] = ACTIONS(1413), - [anon_sym_let] = ACTIONS(1413), - [anon_sym_loop] = ACTIONS(1413), - [anon_sym_match] = ACTIONS(1413), - [anon_sym_mod] = ACTIONS(1413), - [anon_sym_pub] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_trait] = ACTIONS(1413), - [anon_sym_type] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_unsafe] = ACTIONS(1413), - [anon_sym_use] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_POUND] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym_LT] = ACTIONS(1411), - [anon_sym_COLON_COLON] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1411), - [aux_sym_string_literal_token1] = ACTIONS(1411), - [sym_char_literal] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_crate] = ACTIONS(1413), - [sym_metavariable] = ACTIONS(1411), - [sym_raw_string_literal] = ACTIONS(1411), - [sym_float_literal] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_macro_rules_BANG] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_u8] = ACTIONS(1404), + [anon_sym_i8] = ACTIONS(1404), + [anon_sym_u16] = ACTIONS(1404), + [anon_sym_i16] = ACTIONS(1404), + [anon_sym_u32] = ACTIONS(1404), + [anon_sym_i32] = ACTIONS(1404), + [anon_sym_u64] = ACTIONS(1404), + [anon_sym_i64] = ACTIONS(1404), + [anon_sym_u128] = ACTIONS(1404), + [anon_sym_i128] = ACTIONS(1404), + [anon_sym_isize] = ACTIONS(1404), + [anon_sym_usize] = ACTIONS(1404), + [anon_sym_f32] = ACTIONS(1404), + [anon_sym_f64] = ACTIONS(1404), + [anon_sym_bool] = ACTIONS(1404), + [anon_sym_str] = ACTIONS(1404), + [anon_sym_char] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_async] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_fn] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_impl] = ACTIONS(1404), + [anon_sym_let] = ACTIONS(1404), + [anon_sym_loop] = ACTIONS(1404), + [anon_sym_match] = ACTIONS(1404), + [anon_sym_mod] = ACTIONS(1404), + [anon_sym_pub] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_trait] = ACTIONS(1404), + [anon_sym_type] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_unsafe] = ACTIONS(1404), + [anon_sym_use] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_POUND] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym_LT] = ACTIONS(1402), + [anon_sym_COLON_COLON] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_move] = ACTIONS(1404), + [sym_integer_literal] = ACTIONS(1402), + [aux_sym_string_literal_token1] = ACTIONS(1402), + [sym_char_literal] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1404), + [anon_sym_false] = ACTIONS(1404), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1404), + [sym_super] = ACTIONS(1404), + [sym_crate] = ACTIONS(1404), + [sym_metavariable] = ACTIONS(1402), + [sym_raw_string_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1402), [sym_block_comment] = ACTIONS(3), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(1415), - [sym_identifier] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_macro_rules_BANG] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_u8] = ACTIONS(1417), - [anon_sym_i8] = ACTIONS(1417), - [anon_sym_u16] = ACTIONS(1417), - [anon_sym_i16] = ACTIONS(1417), - [anon_sym_u32] = ACTIONS(1417), - [anon_sym_i32] = ACTIONS(1417), - [anon_sym_u64] = ACTIONS(1417), - [anon_sym_i64] = ACTIONS(1417), - [anon_sym_u128] = ACTIONS(1417), - [anon_sym_i128] = ACTIONS(1417), - [anon_sym_isize] = ACTIONS(1417), - [anon_sym_usize] = ACTIONS(1417), - [anon_sym_f32] = ACTIONS(1417), - [anon_sym_f64] = ACTIONS(1417), - [anon_sym_bool] = ACTIONS(1417), - [anon_sym_str] = ACTIONS(1417), - [anon_sym_char] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_default] = ACTIONS(1417), - [anon_sym_enum] = ACTIONS(1417), - [anon_sym_fn] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_impl] = ACTIONS(1417), - [anon_sym_let] = ACTIONS(1417), - [anon_sym_loop] = ACTIONS(1417), - [anon_sym_match] = ACTIONS(1417), - [anon_sym_mod] = ACTIONS(1417), - [anon_sym_pub] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_static] = ACTIONS(1417), - [anon_sym_struct] = ACTIONS(1417), - [anon_sym_trait] = ACTIONS(1417), - [anon_sym_type] = ACTIONS(1417), - [anon_sym_union] = ACTIONS(1417), - [anon_sym_unsafe] = ACTIONS(1417), - [anon_sym_use] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_POUND] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_extern] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_move] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1415), - [aux_sym_string_literal_token1] = ACTIONS(1415), - [sym_char_literal] = ACTIONS(1415), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1417), - [sym_super] = ACTIONS(1417), - [sym_crate] = ACTIONS(1417), - [sym_metavariable] = ACTIONS(1415), - [sym_raw_string_literal] = ACTIONS(1415), - [sym_float_literal] = ACTIONS(1415), + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_identifier] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_macro_rules_BANG] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_u8] = ACTIONS(1408), + [anon_sym_i8] = ACTIONS(1408), + [anon_sym_u16] = ACTIONS(1408), + [anon_sym_i16] = ACTIONS(1408), + [anon_sym_u32] = ACTIONS(1408), + [anon_sym_i32] = ACTIONS(1408), + [anon_sym_u64] = ACTIONS(1408), + [anon_sym_i64] = ACTIONS(1408), + [anon_sym_u128] = ACTIONS(1408), + [anon_sym_i128] = ACTIONS(1408), + [anon_sym_isize] = ACTIONS(1408), + [anon_sym_usize] = ACTIONS(1408), + [anon_sym_f32] = ACTIONS(1408), + [anon_sym_f64] = ACTIONS(1408), + [anon_sym_bool] = ACTIONS(1408), + [anon_sym_str] = ACTIONS(1408), + [anon_sym_char] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_impl] = ACTIONS(1408), + [anon_sym_let] = ACTIONS(1408), + [anon_sym_loop] = ACTIONS(1408), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_mod] = ACTIONS(1408), + [anon_sym_pub] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_trait] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_unsafe] = ACTIONS(1408), + [anon_sym_use] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym_LT] = ACTIONS(1406), + [anon_sym_COLON_COLON] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_DOT_DOT] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PIPE] = ACTIONS(1406), + [anon_sym_move] = ACTIONS(1408), + [sym_integer_literal] = ACTIONS(1406), + [aux_sym_string_literal_token1] = ACTIONS(1406), + [sym_char_literal] = ACTIONS(1406), + [anon_sym_true] = ACTIONS(1408), + [anon_sym_false] = ACTIONS(1408), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1408), + [sym_super] = ACTIONS(1408), + [sym_crate] = ACTIONS(1408), + [sym_metavariable] = ACTIONS(1406), + [sym_raw_string_literal] = ACTIONS(1406), + [sym_float_literal] = ACTIONS(1406), [sym_block_comment] = ACTIONS(3), }, [326] = { - [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_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1419), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym_raw_string_literal] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), + [ts_builtin_sym_end] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_macro_rules_BANG] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_u8] = ACTIONS(1412), + [anon_sym_i8] = ACTIONS(1412), + [anon_sym_u16] = ACTIONS(1412), + [anon_sym_i16] = ACTIONS(1412), + [anon_sym_u32] = ACTIONS(1412), + [anon_sym_i32] = ACTIONS(1412), + [anon_sym_u64] = ACTIONS(1412), + [anon_sym_i64] = ACTIONS(1412), + [anon_sym_u128] = ACTIONS(1412), + [anon_sym_i128] = ACTIONS(1412), + [anon_sym_isize] = ACTIONS(1412), + [anon_sym_usize] = ACTIONS(1412), + [anon_sym_f32] = ACTIONS(1412), + [anon_sym_f64] = ACTIONS(1412), + [anon_sym_bool] = ACTIONS(1412), + [anon_sym_str] = ACTIONS(1412), + [anon_sym_char] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_async] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_fn] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_impl] = ACTIONS(1412), + [anon_sym_let] = ACTIONS(1412), + [anon_sym_loop] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1412), + [anon_sym_mod] = ACTIONS(1412), + [anon_sym_pub] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_trait] = ACTIONS(1412), + [anon_sym_type] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_POUND] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_COLON_COLON] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_move] = ACTIONS(1412), + [sym_integer_literal] = ACTIONS(1410), + [aux_sym_string_literal_token1] = ACTIONS(1410), + [sym_char_literal] = ACTIONS(1410), + [anon_sym_true] = ACTIONS(1412), + [anon_sym_false] = ACTIONS(1412), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1410), + [sym_raw_string_literal] = ACTIONS(1410), + [sym_float_literal] = ACTIONS(1410), [sym_block_comment] = ACTIONS(3), }, [327] = { - [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_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_crate] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1423), - [sym_raw_string_literal] = ACTIONS(1423), - [sym_float_literal] = ACTIONS(1423), + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_macro_rules_BANG] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_u8] = ACTIONS(1416), + [anon_sym_i8] = ACTIONS(1416), + [anon_sym_u16] = ACTIONS(1416), + [anon_sym_i16] = ACTIONS(1416), + [anon_sym_u32] = ACTIONS(1416), + [anon_sym_i32] = ACTIONS(1416), + [anon_sym_u64] = ACTIONS(1416), + [anon_sym_i64] = ACTIONS(1416), + [anon_sym_u128] = ACTIONS(1416), + [anon_sym_i128] = ACTIONS(1416), + [anon_sym_isize] = ACTIONS(1416), + [anon_sym_usize] = ACTIONS(1416), + [anon_sym_f32] = ACTIONS(1416), + [anon_sym_f64] = ACTIONS(1416), + [anon_sym_bool] = ACTIONS(1416), + [anon_sym_str] = ACTIONS(1416), + [anon_sym_char] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_async] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_fn] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_impl] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_loop] = ACTIONS(1416), + [anon_sym_match] = ACTIONS(1416), + [anon_sym_mod] = ACTIONS(1416), + [anon_sym_pub] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_trait] = ACTIONS(1416), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_unsafe] = ACTIONS(1416), + [anon_sym_use] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1414), + [anon_sym_COLON_COLON] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_move] = ACTIONS(1416), + [sym_integer_literal] = ACTIONS(1414), + [aux_sym_string_literal_token1] = ACTIONS(1414), + [sym_char_literal] = ACTIONS(1414), + [anon_sym_true] = ACTIONS(1416), + [anon_sym_false] = ACTIONS(1416), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1416), + [sym_super] = ACTIONS(1416), + [sym_crate] = ACTIONS(1416), + [sym_metavariable] = ACTIONS(1414), + [sym_raw_string_literal] = ACTIONS(1414), + [sym_float_literal] = ACTIONS(1414), [sym_block_comment] = ACTIONS(3), }, [328] = { - [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_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1429), - [sym_super] = ACTIONS(1429), - [sym_crate] = ACTIONS(1429), - [sym_metavariable] = ACTIONS(1427), - [sym_raw_string_literal] = ACTIONS(1427), - [sym_float_literal] = ACTIONS(1427), + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_macro_rules_BANG] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_u8] = ACTIONS(1420), + [anon_sym_i8] = ACTIONS(1420), + [anon_sym_u16] = ACTIONS(1420), + [anon_sym_i16] = ACTIONS(1420), + [anon_sym_u32] = ACTIONS(1420), + [anon_sym_i32] = ACTIONS(1420), + [anon_sym_u64] = ACTIONS(1420), + [anon_sym_i64] = ACTIONS(1420), + [anon_sym_u128] = ACTIONS(1420), + [anon_sym_i128] = ACTIONS(1420), + [anon_sym_isize] = ACTIONS(1420), + [anon_sym_usize] = ACTIONS(1420), + [anon_sym_f32] = ACTIONS(1420), + [anon_sym_f64] = ACTIONS(1420), + [anon_sym_bool] = ACTIONS(1420), + [anon_sym_str] = ACTIONS(1420), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_async] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_fn] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_impl] = ACTIONS(1420), + [anon_sym_let] = ACTIONS(1420), + [anon_sym_loop] = ACTIONS(1420), + [anon_sym_match] = ACTIONS(1420), + [anon_sym_mod] = ACTIONS(1420), + [anon_sym_pub] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_trait] = ACTIONS(1420), + [anon_sym_type] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_unsafe] = ACTIONS(1420), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_DOT_DOT] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PIPE] = ACTIONS(1418), + [anon_sym_move] = ACTIONS(1420), + [sym_integer_literal] = ACTIONS(1418), + [aux_sym_string_literal_token1] = ACTIONS(1418), + [sym_char_literal] = ACTIONS(1418), + [anon_sym_true] = ACTIONS(1420), + [anon_sym_false] = ACTIONS(1420), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1420), + [sym_super] = ACTIONS(1420), + [sym_crate] = ACTIONS(1420), + [sym_metavariable] = ACTIONS(1418), + [sym_raw_string_literal] = ACTIONS(1418), + [sym_float_literal] = ACTIONS(1418), [sym_block_comment] = ACTIONS(3), }, [329] = { - [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_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym_raw_string_literal] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym_macro_rules_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_u8] = ACTIONS(1424), + [anon_sym_i8] = ACTIONS(1424), + [anon_sym_u16] = ACTIONS(1424), + [anon_sym_i16] = ACTIONS(1424), + [anon_sym_u32] = ACTIONS(1424), + [anon_sym_i32] = ACTIONS(1424), + [anon_sym_u64] = ACTIONS(1424), + [anon_sym_i64] = ACTIONS(1424), + [anon_sym_u128] = ACTIONS(1424), + [anon_sym_i128] = ACTIONS(1424), + [anon_sym_isize] = ACTIONS(1424), + [anon_sym_usize] = ACTIONS(1424), + [anon_sym_f32] = ACTIONS(1424), + [anon_sym_f64] = ACTIONS(1424), + [anon_sym_bool] = ACTIONS(1424), + [anon_sym_str] = ACTIONS(1424), + [anon_sym_char] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_fn] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_impl] = ACTIONS(1424), + [anon_sym_let] = ACTIONS(1424), + [anon_sym_loop] = ACTIONS(1424), + [anon_sym_match] = ACTIONS(1424), + [anon_sym_mod] = ACTIONS(1424), + [anon_sym_pub] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_trait] = ACTIONS(1424), + [anon_sym_type] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_unsafe] = ACTIONS(1424), + [anon_sym_use] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1422), + [aux_sym_string_literal_token1] = ACTIONS(1422), + [sym_char_literal] = ACTIONS(1422), + [anon_sym_true] = ACTIONS(1424), + [anon_sym_false] = ACTIONS(1424), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1424), + [sym_super] = ACTIONS(1424), + [sym_crate] = ACTIONS(1424), + [sym_metavariable] = ACTIONS(1422), + [sym_raw_string_literal] = ACTIONS(1422), + [sym_float_literal] = ACTIONS(1422), [sym_block_comment] = ACTIONS(3), }, [330] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [aux_sym__non_special_token_token1] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [sym_mutable_specifier] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_macro_rules_BANG] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_u8] = ACTIONS(1428), + [anon_sym_i8] = ACTIONS(1428), + [anon_sym_u16] = ACTIONS(1428), + [anon_sym_i16] = ACTIONS(1428), + [anon_sym_u32] = ACTIONS(1428), + [anon_sym_i32] = ACTIONS(1428), + [anon_sym_u64] = ACTIONS(1428), + [anon_sym_i64] = ACTIONS(1428), + [anon_sym_u128] = ACTIONS(1428), + [anon_sym_i128] = ACTIONS(1428), + [anon_sym_isize] = ACTIONS(1428), + [anon_sym_usize] = ACTIONS(1428), + [anon_sym_f32] = ACTIONS(1428), + [anon_sym_f64] = ACTIONS(1428), + [anon_sym_bool] = ACTIONS(1428), + [anon_sym_str] = ACTIONS(1428), + [anon_sym_char] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_async] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_fn] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_impl] = ACTIONS(1428), + [anon_sym_let] = ACTIONS(1428), + [anon_sym_loop] = ACTIONS(1428), + [anon_sym_match] = ACTIONS(1428), + [anon_sym_mod] = ACTIONS(1428), + [anon_sym_pub] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_trait] = ACTIONS(1428), + [anon_sym_type] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_unsafe] = ACTIONS(1428), + [anon_sym_use] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_COLON_COLON] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_DOT_DOT] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_move] = ACTIONS(1428), + [sym_integer_literal] = ACTIONS(1426), + [aux_sym_string_literal_token1] = ACTIONS(1426), + [sym_char_literal] = ACTIONS(1426), + [anon_sym_true] = ACTIONS(1428), + [anon_sym_false] = ACTIONS(1428), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1428), + [sym_super] = ACTIONS(1428), + [sym_crate] = ACTIONS(1428), + [sym_metavariable] = ACTIONS(1426), + [sym_raw_string_literal] = ACTIONS(1426), + [sym_float_literal] = ACTIONS(1426), [sym_block_comment] = ACTIONS(3), }, [331] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [aux_sym__non_special_token_token1] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [sym_mutable_specifier] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_macro_rules_BANG] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u128] = ACTIONS(1432), + [anon_sym_i128] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_impl] = ACTIONS(1432), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_loop] = ACTIONS(1432), + [anon_sym_match] = ACTIONS(1432), + [anon_sym_mod] = ACTIONS(1432), + [anon_sym_pub] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_trait] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_unsafe] = ACTIONS(1432), + [anon_sym_use] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_DOT_DOT] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [anon_sym_move] = ACTIONS(1432), + [sym_integer_literal] = ACTIONS(1430), + [aux_sym_string_literal_token1] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_crate] = ACTIONS(1432), + [sym_metavariable] = ACTIONS(1430), + [sym_raw_string_literal] = ACTIONS(1430), + [sym_float_literal] = ACTIONS(1430), [sym_block_comment] = ACTIONS(3), }, [332] = { - [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_LBRACE] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_u8] = ACTIONS(1439), - [anon_sym_i8] = ACTIONS(1439), - [anon_sym_u16] = ACTIONS(1439), - [anon_sym_i16] = ACTIONS(1439), - [anon_sym_u32] = ACTIONS(1439), - [anon_sym_i32] = ACTIONS(1439), - [anon_sym_u64] = ACTIONS(1439), - [anon_sym_i64] = ACTIONS(1439), - [anon_sym_u128] = ACTIONS(1439), - [anon_sym_i128] = ACTIONS(1439), - [anon_sym_isize] = ACTIONS(1439), - [anon_sym_usize] = ACTIONS(1439), - [anon_sym_f32] = ACTIONS(1439), - [anon_sym_f64] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_str] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1439), - [anon_sym_enum] = ACTIONS(1439), - [anon_sym_fn] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_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_POUND] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_extern] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_COLON_COLON] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_DOT_DOT] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_move] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1437), - [aux_sym_string_literal_token1] = ACTIONS(1437), - [sym_char_literal] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1439), - [sym_super] = ACTIONS(1439), - [sym_crate] = ACTIONS(1439), - [sym_metavariable] = ACTIONS(1437), - [sym_raw_string_literal] = ACTIONS(1437), - [sym_float_literal] = ACTIONS(1437), + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_macro_rules_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u128] = ACTIONS(1436), + [anon_sym_i128] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_str] = ACTIONS(1436), + [anon_sym_char] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_async] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_impl] = ACTIONS(1436), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_loop] = ACTIONS(1436), + [anon_sym_match] = ACTIONS(1436), + [anon_sym_mod] = ACTIONS(1436), + [anon_sym_pub] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_trait] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1436), + [anon_sym_use] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_COLON_COLON] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_DOT_DOT] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1434), + [aux_sym_string_literal_token1] = ACTIONS(1434), + [sym_char_literal] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1436), + [sym_super] = ACTIONS(1436), + [sym_crate] = ACTIONS(1436), + [sym_metavariable] = ACTIONS(1434), + [sym_raw_string_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1434), [sym_block_comment] = ACTIONS(3), }, [333] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_RBRACK] = ACTIONS(1435), - [anon_sym_DOLLAR] = ACTIONS(1200), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [aux_sym__non_special_token_token1] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [sym_mutable_specifier] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_macro_rules_BANG] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u128] = ACTIONS(1440), + [anon_sym_i128] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_str] = ACTIONS(1440), + [anon_sym_char] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_fn] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_impl] = ACTIONS(1440), + [anon_sym_let] = ACTIONS(1440), + [anon_sym_loop] = ACTIONS(1440), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_mod] = ACTIONS(1440), + [anon_sym_pub] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_trait] = ACTIONS(1440), + [anon_sym_type] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_unsafe] = ACTIONS(1440), + [anon_sym_use] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_COLON_COLON] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_DOT_DOT] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_move] = ACTIONS(1440), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1438), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1438), + [sym_raw_string_literal] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), [sym_block_comment] = ACTIONS(3), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(1441), - [sym_identifier] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_macro_rules_BANG] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1441), - [anon_sym_u8] = ACTIONS(1443), - [anon_sym_i8] = ACTIONS(1443), - [anon_sym_u16] = ACTIONS(1443), - [anon_sym_i16] = ACTIONS(1443), - [anon_sym_u32] = ACTIONS(1443), - [anon_sym_i32] = ACTIONS(1443), - [anon_sym_u64] = ACTIONS(1443), - [anon_sym_i64] = ACTIONS(1443), - [anon_sym_u128] = ACTIONS(1443), - [anon_sym_i128] = ACTIONS(1443), - [anon_sym_isize] = ACTIONS(1443), - [anon_sym_usize] = ACTIONS(1443), - [anon_sym_f32] = ACTIONS(1443), - [anon_sym_f64] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_str] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_SQUOTE] = ACTIONS(1443), - [anon_sym_async] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_enum] = ACTIONS(1443), - [anon_sym_fn] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_impl] = ACTIONS(1443), - [anon_sym_let] = ACTIONS(1443), - [anon_sym_loop] = ACTIONS(1443), - [anon_sym_match] = ACTIONS(1443), - [anon_sym_mod] = ACTIONS(1443), - [anon_sym_pub] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_struct] = ACTIONS(1443), - [anon_sym_trait] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_union] = ACTIONS(1443), - [anon_sym_unsafe] = ACTIONS(1443), - [anon_sym_use] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_POUND] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_extern] = ACTIONS(1443), - [anon_sym_LT] = ACTIONS(1441), - [anon_sym_COLON_COLON] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1441), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_move] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [aux_sym_string_literal_token1] = ACTIONS(1441), - [sym_char_literal] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1443), - [sym_super] = ACTIONS(1443), - [sym_crate] = ACTIONS(1443), - [sym_metavariable] = ACTIONS(1441), - [sym_raw_string_literal] = ACTIONS(1441), - [sym_float_literal] = ACTIONS(1441), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_macro_rules_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u128] = ACTIONS(1444), + [anon_sym_i128] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_str] = ACTIONS(1444), + [anon_sym_char] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_fn] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_impl] = ACTIONS(1444), + [anon_sym_let] = ACTIONS(1444), + [anon_sym_loop] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_mod] = ACTIONS(1444), + [anon_sym_pub] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_trait] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1444), + [anon_sym_use] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_COLON_COLON] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_DOT_DOT] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_move] = ACTIONS(1444), + [sym_integer_literal] = ACTIONS(1442), + [aux_sym_string_literal_token1] = ACTIONS(1442), + [sym_char_literal] = ACTIONS(1442), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1444), + [sym_super] = ACTIONS(1444), + [sym_crate] = ACTIONS(1444), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1442), + [sym_float_literal] = ACTIONS(1442), [sym_block_comment] = ACTIONS(3), }, [335] = { - [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_LBRACE] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_fn] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_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_POUND] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym_LT] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_DOT_DOT] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_crate] = ACTIONS(1447), - [sym_metavariable] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1445), - [sym_float_literal] = ACTIONS(1445), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_macro_rules_BANG] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u128] = ACTIONS(1448), + [anon_sym_i128] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_str] = ACTIONS(1448), + [anon_sym_char] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_fn] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_impl] = ACTIONS(1448), + [anon_sym_let] = ACTIONS(1448), + [anon_sym_loop] = ACTIONS(1448), + [anon_sym_match] = ACTIONS(1448), + [anon_sym_mod] = ACTIONS(1448), + [anon_sym_pub] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_trait] = ACTIONS(1448), + [anon_sym_type] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_unsafe] = ACTIONS(1448), + [anon_sym_use] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_COLON_COLON] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_move] = ACTIONS(1448), + [sym_integer_literal] = ACTIONS(1446), + [aux_sym_string_literal_token1] = ACTIONS(1446), + [sym_char_literal] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1448), + [sym_super] = ACTIONS(1448), + [sym_crate] = ACTIONS(1448), + [sym_metavariable] = ACTIONS(1446), + [sym_raw_string_literal] = ACTIONS(1446), + [sym_float_literal] = ACTIONS(1446), [sym_block_comment] = ACTIONS(3), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1449), - [sym_identifier] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_macro_rules_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_u8] = ACTIONS(1451), - [anon_sym_i8] = ACTIONS(1451), - [anon_sym_u16] = ACTIONS(1451), - [anon_sym_i16] = ACTIONS(1451), - [anon_sym_u32] = ACTIONS(1451), - [anon_sym_i32] = ACTIONS(1451), - [anon_sym_u64] = ACTIONS(1451), - [anon_sym_i64] = ACTIONS(1451), - [anon_sym_u128] = ACTIONS(1451), - [anon_sym_i128] = ACTIONS(1451), - [anon_sym_isize] = ACTIONS(1451), - [anon_sym_usize] = ACTIONS(1451), - [anon_sym_f32] = ACTIONS(1451), - [anon_sym_f64] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_str] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_SQUOTE] = ACTIONS(1451), - [anon_sym_async] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_impl] = ACTIONS(1451), - [anon_sym_let] = ACTIONS(1451), - [anon_sym_loop] = ACTIONS(1451), - [anon_sym_match] = ACTIONS(1451), - [anon_sym_mod] = ACTIONS(1451), - [anon_sym_pub] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_struct] = ACTIONS(1451), - [anon_sym_trait] = ACTIONS(1451), - [anon_sym_type] = ACTIONS(1451), - [anon_sym_union] = ACTIONS(1451), - [anon_sym_unsafe] = ACTIONS(1451), - [anon_sym_use] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_POUND] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_extern] = ACTIONS(1451), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_COLON_COLON] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_move] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [aux_sym_string_literal_token1] = ACTIONS(1449), - [sym_char_literal] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1451), - [sym_super] = ACTIONS(1451), - [sym_crate] = ACTIONS(1451), - [sym_metavariable] = ACTIONS(1449), - [sym_raw_string_literal] = ACTIONS(1449), - [sym_float_literal] = ACTIONS(1449), + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_macro_rules_BANG] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_u8] = ACTIONS(1452), + [anon_sym_i8] = ACTIONS(1452), + [anon_sym_u16] = ACTIONS(1452), + [anon_sym_i16] = ACTIONS(1452), + [anon_sym_u32] = ACTIONS(1452), + [anon_sym_i32] = ACTIONS(1452), + [anon_sym_u64] = ACTIONS(1452), + [anon_sym_i64] = ACTIONS(1452), + [anon_sym_u128] = ACTIONS(1452), + [anon_sym_i128] = ACTIONS(1452), + [anon_sym_isize] = ACTIONS(1452), + [anon_sym_usize] = ACTIONS(1452), + [anon_sym_f32] = ACTIONS(1452), + [anon_sym_f64] = ACTIONS(1452), + [anon_sym_bool] = ACTIONS(1452), + [anon_sym_str] = ACTIONS(1452), + [anon_sym_char] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_async] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_fn] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_impl] = ACTIONS(1452), + [anon_sym_let] = ACTIONS(1452), + [anon_sym_loop] = ACTIONS(1452), + [anon_sym_match] = ACTIONS(1452), + [anon_sym_mod] = ACTIONS(1452), + [anon_sym_pub] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_trait] = ACTIONS(1452), + [anon_sym_type] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_unsafe] = ACTIONS(1452), + [anon_sym_use] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_COLON_COLON] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_DOT_DOT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_move] = ACTIONS(1452), + [sym_integer_literal] = ACTIONS(1450), + [aux_sym_string_literal_token1] = ACTIONS(1450), + [sym_char_literal] = ACTIONS(1450), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1452), + [sym_super] = ACTIONS(1452), + [sym_crate] = ACTIONS(1452), + [sym_metavariable] = ACTIONS(1450), + [sym_raw_string_literal] = ACTIONS(1450), + [sym_float_literal] = ACTIONS(1450), [sym_block_comment] = ACTIONS(3), }, [337] = { - [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_LBRACE] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_u8] = ACTIONS(1455), - [anon_sym_i8] = ACTIONS(1455), - [anon_sym_u16] = ACTIONS(1455), - [anon_sym_i16] = ACTIONS(1455), - [anon_sym_u32] = ACTIONS(1455), - [anon_sym_i32] = ACTIONS(1455), - [anon_sym_u64] = ACTIONS(1455), - [anon_sym_i64] = ACTIONS(1455), - [anon_sym_u128] = ACTIONS(1455), - [anon_sym_i128] = ACTIONS(1455), - [anon_sym_isize] = ACTIONS(1455), - [anon_sym_usize] = ACTIONS(1455), - [anon_sym_f32] = ACTIONS(1455), - [anon_sym_f64] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_str] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1455), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_impl] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_mod] = ACTIONS(1455), - [anon_sym_pub] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_trait] = ACTIONS(1455), - [anon_sym_type] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_unsafe] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1453), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_crate] = ACTIONS(1455), - [sym_metavariable] = ACTIONS(1453), - [sym_raw_string_literal] = ACTIONS(1453), - [sym_float_literal] = ACTIONS(1453), + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_macro_rules_BANG] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_u8] = ACTIONS(1456), + [anon_sym_i8] = ACTIONS(1456), + [anon_sym_u16] = ACTIONS(1456), + [anon_sym_i16] = ACTIONS(1456), + [anon_sym_u32] = ACTIONS(1456), + [anon_sym_i32] = ACTIONS(1456), + [anon_sym_u64] = ACTIONS(1456), + [anon_sym_i64] = ACTIONS(1456), + [anon_sym_u128] = ACTIONS(1456), + [anon_sym_i128] = ACTIONS(1456), + [anon_sym_isize] = ACTIONS(1456), + [anon_sym_usize] = ACTIONS(1456), + [anon_sym_f32] = ACTIONS(1456), + [anon_sym_f64] = ACTIONS(1456), + [anon_sym_bool] = ACTIONS(1456), + [anon_sym_str] = ACTIONS(1456), + [anon_sym_char] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_async] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_fn] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_impl] = ACTIONS(1456), + [anon_sym_let] = ACTIONS(1456), + [anon_sym_loop] = ACTIONS(1456), + [anon_sym_match] = ACTIONS(1456), + [anon_sym_mod] = ACTIONS(1456), + [anon_sym_pub] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_trait] = ACTIONS(1456), + [anon_sym_type] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_unsafe] = ACTIONS(1456), + [anon_sym_use] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_COLON_COLON] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_move] = ACTIONS(1456), + [sym_integer_literal] = ACTIONS(1454), + [aux_sym_string_literal_token1] = ACTIONS(1454), + [sym_char_literal] = ACTIONS(1454), + [anon_sym_true] = ACTIONS(1456), + [anon_sym_false] = ACTIONS(1456), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1456), + [sym_super] = ACTIONS(1456), + [sym_crate] = ACTIONS(1456), + [sym_metavariable] = ACTIONS(1454), + [sym_raw_string_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1454), [sym_block_comment] = ACTIONS(3), }, [338] = { - [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_LBRACE] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1457), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_extern] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1457), - [aux_sym_string_literal_token1] = ACTIONS(1457), - [sym_char_literal] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1459), - [sym_super] = ACTIONS(1459), - [sym_crate] = ACTIONS(1459), - [sym_metavariable] = ACTIONS(1457), - [sym_raw_string_literal] = ACTIONS(1457), - [sym_float_literal] = ACTIONS(1457), + [ts_builtin_sym_end] = ACTIONS(1458), + [sym_identifier] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_macro_rules_BANG] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_u8] = ACTIONS(1460), + [anon_sym_i8] = ACTIONS(1460), + [anon_sym_u16] = ACTIONS(1460), + [anon_sym_i16] = ACTIONS(1460), + [anon_sym_u32] = ACTIONS(1460), + [anon_sym_i32] = ACTIONS(1460), + [anon_sym_u64] = ACTIONS(1460), + [anon_sym_i64] = ACTIONS(1460), + [anon_sym_u128] = ACTIONS(1460), + [anon_sym_i128] = ACTIONS(1460), + [anon_sym_isize] = ACTIONS(1460), + [anon_sym_usize] = ACTIONS(1460), + [anon_sym_f32] = ACTIONS(1460), + [anon_sym_f64] = ACTIONS(1460), + [anon_sym_bool] = ACTIONS(1460), + [anon_sym_str] = ACTIONS(1460), + [anon_sym_char] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_fn] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_impl] = ACTIONS(1460), + [anon_sym_let] = ACTIONS(1460), + [anon_sym_loop] = ACTIONS(1460), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_mod] = ACTIONS(1460), + [anon_sym_pub] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_trait] = ACTIONS(1460), + [anon_sym_type] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_unsafe] = ACTIONS(1460), + [anon_sym_use] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_COLON_COLON] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_DOT_DOT] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_move] = ACTIONS(1460), + [sym_integer_literal] = ACTIONS(1458), + [aux_sym_string_literal_token1] = ACTIONS(1458), + [sym_char_literal] = ACTIONS(1458), + [anon_sym_true] = ACTIONS(1460), + [anon_sym_false] = ACTIONS(1460), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1460), + [sym_super] = ACTIONS(1460), + [sym_crate] = ACTIONS(1460), + [sym_metavariable] = ACTIONS(1458), + [sym_raw_string_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1458), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1461), - [sym_identifier] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1461), - [anon_sym_macro_rules_BANG] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1461), - [anon_sym_STAR] = 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_SQUOTE] = ACTIONS(1463), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_default] = ACTIONS(1463), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_impl] = ACTIONS(1463), - [anon_sym_let] = ACTIONS(1463), - [anon_sym_loop] = ACTIONS(1463), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_mod] = ACTIONS(1463), - [anon_sym_pub] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_struct] = ACTIONS(1463), - [anon_sym_trait] = ACTIONS(1463), - [anon_sym_type] = ACTIONS(1463), - [anon_sym_union] = ACTIONS(1463), - [anon_sym_unsafe] = ACTIONS(1463), - [anon_sym_use] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1461), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_COLON_COLON] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1461), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_PIPE] = ACTIONS(1461), - [anon_sym_move] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1461), - [aux_sym_string_literal_token1] = ACTIONS(1461), - [sym_char_literal] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1463), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1461), - [sym_raw_string_literal] = ACTIONS(1461), - [sym_float_literal] = ACTIONS(1461), + [ts_builtin_sym_end] = ACTIONS(1462), + [sym_identifier] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_macro_rules_BANG] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_u8] = ACTIONS(1464), + [anon_sym_i8] = ACTIONS(1464), + [anon_sym_u16] = ACTIONS(1464), + [anon_sym_i16] = ACTIONS(1464), + [anon_sym_u32] = ACTIONS(1464), + [anon_sym_i32] = ACTIONS(1464), + [anon_sym_u64] = ACTIONS(1464), + [anon_sym_i64] = ACTIONS(1464), + [anon_sym_u128] = ACTIONS(1464), + [anon_sym_i128] = ACTIONS(1464), + [anon_sym_isize] = ACTIONS(1464), + [anon_sym_usize] = ACTIONS(1464), + [anon_sym_f32] = ACTIONS(1464), + [anon_sym_f64] = ACTIONS(1464), + [anon_sym_bool] = ACTIONS(1464), + [anon_sym_str] = ACTIONS(1464), + [anon_sym_char] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_fn] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_impl] = ACTIONS(1464), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_loop] = ACTIONS(1464), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_mod] = ACTIONS(1464), + [anon_sym_pub] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_trait] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1464), + [anon_sym_use] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_DOT_DOT] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_move] = ACTIONS(1464), + [sym_integer_literal] = ACTIONS(1462), + [aux_sym_string_literal_token1] = ACTIONS(1462), + [sym_char_literal] = ACTIONS(1462), + [anon_sym_true] = ACTIONS(1464), + [anon_sym_false] = ACTIONS(1464), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1464), + [sym_super] = ACTIONS(1464), + [sym_crate] = ACTIONS(1464), + [sym_metavariable] = ACTIONS(1462), + [sym_raw_string_literal] = ACTIONS(1462), + [sym_float_literal] = ACTIONS(1462), [sym_block_comment] = ACTIONS(3), }, [340] = { - [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_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1465), - [anon_sym_COLON_COLON] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1467), - [sym_super] = ACTIONS(1467), - [sym_crate] = ACTIONS(1467), - [sym_metavariable] = ACTIONS(1465), - [sym_raw_string_literal] = ACTIONS(1465), - [sym_float_literal] = ACTIONS(1465), + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_macro_rules_BANG] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_u8] = ACTIONS(1468), + [anon_sym_i8] = ACTIONS(1468), + [anon_sym_u16] = ACTIONS(1468), + [anon_sym_i16] = ACTIONS(1468), + [anon_sym_u32] = ACTIONS(1468), + [anon_sym_i32] = ACTIONS(1468), + [anon_sym_u64] = ACTIONS(1468), + [anon_sym_i64] = ACTIONS(1468), + [anon_sym_u128] = ACTIONS(1468), + [anon_sym_i128] = ACTIONS(1468), + [anon_sym_isize] = ACTIONS(1468), + [anon_sym_usize] = ACTIONS(1468), + [anon_sym_f32] = ACTIONS(1468), + [anon_sym_f64] = ACTIONS(1468), + [anon_sym_bool] = ACTIONS(1468), + [anon_sym_str] = ACTIONS(1468), + [anon_sym_char] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_async] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_fn] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_impl] = ACTIONS(1468), + [anon_sym_let] = ACTIONS(1468), + [anon_sym_loop] = ACTIONS(1468), + [anon_sym_match] = ACTIONS(1468), + [anon_sym_mod] = ACTIONS(1468), + [anon_sym_pub] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_trait] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1468), + [anon_sym_use] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_COLON_COLON] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_DOT_DOT] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_move] = ACTIONS(1468), + [sym_integer_literal] = ACTIONS(1466), + [aux_sym_string_literal_token1] = ACTIONS(1466), + [sym_char_literal] = ACTIONS(1466), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1468), + [sym_super] = ACTIONS(1468), + [sym_crate] = ACTIONS(1468), + [sym_metavariable] = ACTIONS(1466), + [sym_raw_string_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1466), [sym_block_comment] = ACTIONS(3), }, [341] = { - [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_LBRACE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_extern] = ACTIONS(1471), - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_COLON_COLON] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_DOT_DOT] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1471), - [sym_super] = ACTIONS(1471), - [sym_crate] = ACTIONS(1471), - [sym_metavariable] = ACTIONS(1469), - [sym_raw_string_literal] = ACTIONS(1469), - [sym_float_literal] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_macro_rules_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_u8] = ACTIONS(1472), + [anon_sym_i8] = ACTIONS(1472), + [anon_sym_u16] = ACTIONS(1472), + [anon_sym_i16] = ACTIONS(1472), + [anon_sym_u32] = ACTIONS(1472), + [anon_sym_i32] = ACTIONS(1472), + [anon_sym_u64] = ACTIONS(1472), + [anon_sym_i64] = ACTIONS(1472), + [anon_sym_u128] = ACTIONS(1472), + [anon_sym_i128] = ACTIONS(1472), + [anon_sym_isize] = ACTIONS(1472), + [anon_sym_usize] = ACTIONS(1472), + [anon_sym_f32] = ACTIONS(1472), + [anon_sym_f64] = ACTIONS(1472), + [anon_sym_bool] = ACTIONS(1472), + [anon_sym_str] = ACTIONS(1472), + [anon_sym_char] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_async] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_fn] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_impl] = ACTIONS(1472), + [anon_sym_let] = ACTIONS(1472), + [anon_sym_loop] = ACTIONS(1472), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_mod] = ACTIONS(1472), + [anon_sym_pub] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_trait] = ACTIONS(1472), + [anon_sym_type] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_unsafe] = ACTIONS(1472), + [anon_sym_use] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_COLON_COLON] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_move] = ACTIONS(1472), + [sym_integer_literal] = ACTIONS(1470), + [aux_sym_string_literal_token1] = ACTIONS(1470), + [sym_char_literal] = ACTIONS(1470), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1472), + [sym_super] = ACTIONS(1472), + [sym_crate] = ACTIONS(1472), + [sym_metavariable] = ACTIONS(1470), + [sym_raw_string_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1470), [sym_block_comment] = ACTIONS(3), }, [342] = { - [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_LBRACE] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_u8] = ACTIONS(1475), - [anon_sym_i8] = ACTIONS(1475), - [anon_sym_u16] = ACTIONS(1475), - [anon_sym_i16] = ACTIONS(1475), - [anon_sym_u32] = ACTIONS(1475), - [anon_sym_i32] = ACTIONS(1475), - [anon_sym_u64] = ACTIONS(1475), - [anon_sym_i64] = ACTIONS(1475), - [anon_sym_u128] = ACTIONS(1475), - [anon_sym_i128] = ACTIONS(1475), - [anon_sym_isize] = ACTIONS(1475), - [anon_sym_usize] = ACTIONS(1475), - [anon_sym_f32] = ACTIONS(1475), - [anon_sym_f64] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_str] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_async] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_default] = ACTIONS(1475), - [anon_sym_enum] = ACTIONS(1475), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_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_POUND] = ACTIONS(1473), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_COLON_COLON] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1475), - [sym_super] = ACTIONS(1475), - [sym_crate] = ACTIONS(1475), - [sym_metavariable] = ACTIONS(1473), - [sym_raw_string_literal] = ACTIONS(1473), - [sym_float_literal] = ACTIONS(1473), + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_macro_rules_BANG] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_u8] = ACTIONS(1476), + [anon_sym_i8] = ACTIONS(1476), + [anon_sym_u16] = ACTIONS(1476), + [anon_sym_i16] = ACTIONS(1476), + [anon_sym_u32] = ACTIONS(1476), + [anon_sym_i32] = ACTIONS(1476), + [anon_sym_u64] = ACTIONS(1476), + [anon_sym_i64] = ACTIONS(1476), + [anon_sym_u128] = ACTIONS(1476), + [anon_sym_i128] = ACTIONS(1476), + [anon_sym_isize] = ACTIONS(1476), + [anon_sym_usize] = ACTIONS(1476), + [anon_sym_f32] = ACTIONS(1476), + [anon_sym_f64] = ACTIONS(1476), + [anon_sym_bool] = ACTIONS(1476), + [anon_sym_str] = ACTIONS(1476), + [anon_sym_char] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_fn] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_impl] = ACTIONS(1476), + [anon_sym_let] = ACTIONS(1476), + [anon_sym_loop] = ACTIONS(1476), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_mod] = ACTIONS(1476), + [anon_sym_pub] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_trait] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1476), + [anon_sym_use] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_COLON_COLON] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_DOT_DOT] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_move] = ACTIONS(1476), + [sym_integer_literal] = ACTIONS(1474), + [aux_sym_string_literal_token1] = ACTIONS(1474), + [sym_char_literal] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1476), + [sym_super] = ACTIONS(1476), + [sym_crate] = ACTIONS(1476), + [sym_metavariable] = ACTIONS(1474), + [sym_raw_string_literal] = ACTIONS(1474), + [sym_float_literal] = ACTIONS(1474), [sym_block_comment] = ACTIONS(3), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1477), - [sym_identifier] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_macro_rules_BANG] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_STAR] = 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_SQUOTE] = ACTIONS(1479), - [anon_sym_async] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1479), - [anon_sym_enum] = ACTIONS(1479), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_impl] = ACTIONS(1479), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_loop] = ACTIONS(1479), - [anon_sym_match] = ACTIONS(1479), - [anon_sym_mod] = ACTIONS(1479), - [anon_sym_pub] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_struct] = ACTIONS(1479), - [anon_sym_trait] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_union] = ACTIONS(1479), - [anon_sym_unsafe] = ACTIONS(1479), - [anon_sym_use] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_extern] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_COLON_COLON] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1479), - [sym_super] = ACTIONS(1479), - [sym_crate] = ACTIONS(1479), - [sym_metavariable] = ACTIONS(1477), - [sym_raw_string_literal] = ACTIONS(1477), - [sym_float_literal] = ACTIONS(1477), + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_macro_rules_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_u8] = ACTIONS(1480), + [anon_sym_i8] = ACTIONS(1480), + [anon_sym_u16] = ACTIONS(1480), + [anon_sym_i16] = ACTIONS(1480), + [anon_sym_u32] = ACTIONS(1480), + [anon_sym_i32] = ACTIONS(1480), + [anon_sym_u64] = ACTIONS(1480), + [anon_sym_i64] = ACTIONS(1480), + [anon_sym_u128] = ACTIONS(1480), + [anon_sym_i128] = ACTIONS(1480), + [anon_sym_isize] = ACTIONS(1480), + [anon_sym_usize] = ACTIONS(1480), + [anon_sym_f32] = ACTIONS(1480), + [anon_sym_f64] = ACTIONS(1480), + [anon_sym_bool] = ACTIONS(1480), + [anon_sym_str] = ACTIONS(1480), + [anon_sym_char] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_async] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_fn] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_impl] = ACTIONS(1480), + [anon_sym_let] = ACTIONS(1480), + [anon_sym_loop] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_mod] = ACTIONS(1480), + [anon_sym_pub] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_trait] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1480), + [anon_sym_use] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_COLON_COLON] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_move] = ACTIONS(1480), + [sym_integer_literal] = ACTIONS(1478), + [aux_sym_string_literal_token1] = ACTIONS(1478), + [sym_char_literal] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1480), + [anon_sym_false] = ACTIONS(1480), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1480), + [sym_super] = ACTIONS(1480), + [sym_crate] = ACTIONS(1480), + [sym_metavariable] = ACTIONS(1478), + [sym_raw_string_literal] = ACTIONS(1478), + [sym_float_literal] = ACTIONS(1478), [sym_block_comment] = ACTIONS(3), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(1481), - [sym_identifier] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_macro_rules_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_STAR] = 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_SQUOTE] = ACTIONS(1483), - [anon_sym_async] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_impl] = ACTIONS(1483), - [anon_sym_let] = ACTIONS(1483), - [anon_sym_loop] = ACTIONS(1483), - [anon_sym_match] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_pub] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_struct] = ACTIONS(1483), - [anon_sym_trait] = ACTIONS(1483), - [anon_sym_type] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_unsafe] = ACTIONS(1483), - [anon_sym_use] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_extern] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_COLON_COLON] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_crate] = ACTIONS(1483), - [sym_metavariable] = ACTIONS(1481), - [sym_raw_string_literal] = ACTIONS(1481), - [sym_float_literal] = ACTIONS(1481), + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_macro_rules_BANG] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_u8] = ACTIONS(1484), + [anon_sym_i8] = ACTIONS(1484), + [anon_sym_u16] = ACTIONS(1484), + [anon_sym_i16] = ACTIONS(1484), + [anon_sym_u32] = ACTIONS(1484), + [anon_sym_i32] = ACTIONS(1484), + [anon_sym_u64] = ACTIONS(1484), + [anon_sym_i64] = ACTIONS(1484), + [anon_sym_u128] = ACTIONS(1484), + [anon_sym_i128] = ACTIONS(1484), + [anon_sym_isize] = ACTIONS(1484), + [anon_sym_usize] = ACTIONS(1484), + [anon_sym_f32] = ACTIONS(1484), + [anon_sym_f64] = ACTIONS(1484), + [anon_sym_bool] = ACTIONS(1484), + [anon_sym_str] = ACTIONS(1484), + [anon_sym_char] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_async] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_fn] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_impl] = ACTIONS(1484), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_loop] = ACTIONS(1484), + [anon_sym_match] = ACTIONS(1484), + [anon_sym_mod] = ACTIONS(1484), + [anon_sym_pub] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_trait] = ACTIONS(1484), + [anon_sym_type] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_unsafe] = ACTIONS(1484), + [anon_sym_use] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_move] = ACTIONS(1484), + [sym_integer_literal] = ACTIONS(1482), + [aux_sym_string_literal_token1] = ACTIONS(1482), + [sym_char_literal] = ACTIONS(1482), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1484), + [sym_super] = ACTIONS(1484), + [sym_crate] = ACTIONS(1484), + [sym_metavariable] = ACTIONS(1482), + [sym_raw_string_literal] = ACTIONS(1482), + [sym_float_literal] = ACTIONS(1482), [sym_block_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1485), - [sym_identifier] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_macro_rules_BANG] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u128] = ACTIONS(1487), - [anon_sym_i128] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_str] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_SQUOTE] = ACTIONS(1487), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_impl] = ACTIONS(1487), - [anon_sym_let] = ACTIONS(1487), - [anon_sym_loop] = ACTIONS(1487), - [anon_sym_match] = ACTIONS(1487), - [anon_sym_mod] = ACTIONS(1487), - [anon_sym_pub] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_trait] = ACTIONS(1487), - [anon_sym_type] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_unsafe] = ACTIONS(1487), - [anon_sym_use] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_POUND] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_COLON_COLON] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_DOT_DOT] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_move] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1485), - [aux_sym_string_literal_token1] = ACTIONS(1485), - [sym_char_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_crate] = ACTIONS(1487), - [sym_metavariable] = ACTIONS(1485), - [sym_raw_string_literal] = ACTIONS(1485), - [sym_float_literal] = ACTIONS(1485), + [sym__token_pattern] = STATE(242), + [sym_token_tree_pattern] = STATE(242), + [sym_token_binding_pattern] = STATE(242), + [sym_token_repetition_pattern] = STATE(242), + [sym__literal] = STATE(242), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1494), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1486), + [anon_sym_i8] = ACTIONS(1486), + [anon_sym_u16] = ACTIONS(1486), + [anon_sym_i16] = ACTIONS(1486), + [anon_sym_u32] = ACTIONS(1486), + [anon_sym_i32] = ACTIONS(1486), + [anon_sym_u64] = ACTIONS(1486), + [anon_sym_i64] = ACTIONS(1486), + [anon_sym_u128] = ACTIONS(1486), + [anon_sym_i128] = ACTIONS(1486), + [anon_sym_isize] = ACTIONS(1486), + [anon_sym_usize] = ACTIONS(1486), + [anon_sym_f32] = ACTIONS(1486), + [anon_sym_f64] = ACTIONS(1486), + [anon_sym_bool] = ACTIONS(1486), + [anon_sym_str] = ACTIONS(1486), + [anon_sym_char] = ACTIONS(1486), + [aux_sym__non_special_token_token1] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_as] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_await] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_fn] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_impl] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_loop] = ACTIONS(1486), + [anon_sym_match] = ACTIONS(1486), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_trait] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_unsafe] = ACTIONS(1486), + [anon_sym_use] = ACTIONS(1486), + [anon_sym_where] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [sym_mutable_specifier] = ACTIONS(1486), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_crate] = ACTIONS(1486), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [346] = { - [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_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1489), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_DOT_DOT] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_PIPE] = ACTIONS(1489), - [anon_sym_move] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1489), - [aux_sym_string_literal_token1] = ACTIONS(1489), - [sym_char_literal] = ACTIONS(1489), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_crate] = ACTIONS(1491), - [sym_metavariable] = ACTIONS(1489), - [sym_raw_string_literal] = ACTIONS(1489), - [sym_float_literal] = ACTIONS(1489), + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_identifier] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_macro_rules_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_u8] = ACTIONS(1508), + [anon_sym_i8] = ACTIONS(1508), + [anon_sym_u16] = ACTIONS(1508), + [anon_sym_i16] = ACTIONS(1508), + [anon_sym_u32] = ACTIONS(1508), + [anon_sym_i32] = ACTIONS(1508), + [anon_sym_u64] = ACTIONS(1508), + [anon_sym_i64] = ACTIONS(1508), + [anon_sym_u128] = ACTIONS(1508), + [anon_sym_i128] = ACTIONS(1508), + [anon_sym_isize] = ACTIONS(1508), + [anon_sym_usize] = ACTIONS(1508), + [anon_sym_f32] = ACTIONS(1508), + [anon_sym_f64] = ACTIONS(1508), + [anon_sym_bool] = ACTIONS(1508), + [anon_sym_str] = ACTIONS(1508), + [anon_sym_char] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_fn] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_impl] = ACTIONS(1508), + [anon_sym_let] = ACTIONS(1508), + [anon_sym_loop] = ACTIONS(1508), + [anon_sym_match] = ACTIONS(1508), + [anon_sym_mod] = ACTIONS(1508), + [anon_sym_pub] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_trait] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_unsafe] = ACTIONS(1508), + [anon_sym_use] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1506), + [anon_sym_COLON_COLON] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_move] = ACTIONS(1508), + [sym_integer_literal] = ACTIONS(1506), + [aux_sym_string_literal_token1] = ACTIONS(1506), + [sym_char_literal] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1508), + [anon_sym_false] = ACTIONS(1508), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1508), + [sym_super] = ACTIONS(1508), + [sym_crate] = ACTIONS(1508), + [sym_metavariable] = ACTIONS(1506), + [sym_raw_string_literal] = ACTIONS(1506), + [sym_float_literal] = ACTIONS(1506), [sym_block_comment] = ACTIONS(3), }, [347] = { - [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_LBRACE] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_COLON_COLON] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_move] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1493), - [aux_sym_string_literal_token1] = ACTIONS(1493), - [sym_char_literal] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1495), - [sym_super] = ACTIONS(1495), - [sym_crate] = ACTIONS(1495), - [sym_metavariable] = ACTIONS(1493), - [sym_raw_string_literal] = ACTIONS(1493), - [sym_float_literal] = ACTIONS(1493), + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_macro_rules_BANG] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_u8] = ACTIONS(1512), + [anon_sym_i8] = ACTIONS(1512), + [anon_sym_u16] = ACTIONS(1512), + [anon_sym_i16] = ACTIONS(1512), + [anon_sym_u32] = ACTIONS(1512), + [anon_sym_i32] = ACTIONS(1512), + [anon_sym_u64] = ACTIONS(1512), + [anon_sym_i64] = ACTIONS(1512), + [anon_sym_u128] = ACTIONS(1512), + [anon_sym_i128] = ACTIONS(1512), + [anon_sym_isize] = ACTIONS(1512), + [anon_sym_usize] = ACTIONS(1512), + [anon_sym_f32] = ACTIONS(1512), + [anon_sym_f64] = ACTIONS(1512), + [anon_sym_bool] = ACTIONS(1512), + [anon_sym_str] = ACTIONS(1512), + [anon_sym_char] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_fn] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_impl] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1512), + [anon_sym_loop] = ACTIONS(1512), + [anon_sym_match] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1512), + [anon_sym_pub] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_trait] = ACTIONS(1512), + [anon_sym_type] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_unsafe] = ACTIONS(1512), + [anon_sym_use] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1510), + [anon_sym_COLON_COLON] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_move] = ACTIONS(1512), + [sym_integer_literal] = ACTIONS(1510), + [aux_sym_string_literal_token1] = ACTIONS(1510), + [sym_char_literal] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1512), + [anon_sym_false] = ACTIONS(1512), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1512), + [sym_super] = ACTIONS(1512), + [sym_crate] = ACTIONS(1512), + [sym_metavariable] = ACTIONS(1510), + [sym_raw_string_literal] = ACTIONS(1510), + [sym_float_literal] = ACTIONS(1510), [sym_block_comment] = ACTIONS(3), }, [348] = { - [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_LBRACE] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_u8] = ACTIONS(1499), - [anon_sym_i8] = ACTIONS(1499), - [anon_sym_u16] = ACTIONS(1499), - [anon_sym_i16] = ACTIONS(1499), - [anon_sym_u32] = ACTIONS(1499), - [anon_sym_i32] = ACTIONS(1499), - [anon_sym_u64] = ACTIONS(1499), - [anon_sym_i64] = ACTIONS(1499), - [anon_sym_u128] = ACTIONS(1499), - [anon_sym_i128] = ACTIONS(1499), - [anon_sym_isize] = ACTIONS(1499), - [anon_sym_usize] = ACTIONS(1499), - [anon_sym_f32] = ACTIONS(1499), - [anon_sym_f64] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_str] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1499), - [anon_sym_async] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_enum] = ACTIONS(1499), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_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_POUND] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_COLON_COLON] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1499), - [sym_super] = ACTIONS(1499), - [sym_crate] = ACTIONS(1499), - [sym_metavariable] = ACTIONS(1497), - [sym_raw_string_literal] = ACTIONS(1497), - [sym_float_literal] = ACTIONS(1497), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_macro_rules_BANG] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_u8] = ACTIONS(1516), + [anon_sym_i8] = ACTIONS(1516), + [anon_sym_u16] = ACTIONS(1516), + [anon_sym_i16] = ACTIONS(1516), + [anon_sym_u32] = ACTIONS(1516), + [anon_sym_i32] = ACTIONS(1516), + [anon_sym_u64] = ACTIONS(1516), + [anon_sym_i64] = ACTIONS(1516), + [anon_sym_u128] = ACTIONS(1516), + [anon_sym_i128] = ACTIONS(1516), + [anon_sym_isize] = ACTIONS(1516), + [anon_sym_usize] = ACTIONS(1516), + [anon_sym_f32] = ACTIONS(1516), + [anon_sym_f64] = ACTIONS(1516), + [anon_sym_bool] = ACTIONS(1516), + [anon_sym_str] = ACTIONS(1516), + [anon_sym_char] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_fn] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_impl] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_mod] = ACTIONS(1516), + [anon_sym_pub] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_trait] = ACTIONS(1516), + [anon_sym_type] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_unsafe] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1514), + [anon_sym_COLON_COLON] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_move] = ACTIONS(1516), + [sym_integer_literal] = ACTIONS(1514), + [aux_sym_string_literal_token1] = ACTIONS(1514), + [sym_char_literal] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1516), + [sym_super] = ACTIONS(1516), + [sym_crate] = ACTIONS(1516), + [sym_metavariable] = ACTIONS(1514), + [sym_raw_string_literal] = ACTIONS(1514), + [sym_float_literal] = ACTIONS(1514), [sym_block_comment] = ACTIONS(3), }, [349] = { - [sym__token_pattern] = STATE(461), - [sym_token_tree_pattern] = STATE(461), - [sym_token_binding_pattern] = STATE(461), - [sym_token_repetition_pattern] = STATE(461), - [sym__literal] = STATE(461), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_as] = ACTIONS(1501), - [anon_sym_async] = ACTIONS(1501), - [anon_sym_await] = 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_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_where] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [sym_mutable_specifier] = ACTIONS(1501), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_crate] = ACTIONS(1501), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym__token_pattern] = STATE(242), + [sym_token_tree_pattern] = STATE(242), + [sym_token_binding_pattern] = STATE(242), + [sym_token_repetition_pattern] = STATE(242), + [sym__literal] = STATE(242), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1486), + [anon_sym_i8] = ACTIONS(1486), + [anon_sym_u16] = ACTIONS(1486), + [anon_sym_i16] = ACTIONS(1486), + [anon_sym_u32] = ACTIONS(1486), + [anon_sym_i32] = ACTIONS(1486), + [anon_sym_u64] = ACTIONS(1486), + [anon_sym_i64] = ACTIONS(1486), + [anon_sym_u128] = ACTIONS(1486), + [anon_sym_i128] = ACTIONS(1486), + [anon_sym_isize] = ACTIONS(1486), + [anon_sym_usize] = ACTIONS(1486), + [anon_sym_f32] = ACTIONS(1486), + [anon_sym_f64] = ACTIONS(1486), + [anon_sym_bool] = ACTIONS(1486), + [anon_sym_str] = ACTIONS(1486), + [anon_sym_char] = ACTIONS(1486), + [aux_sym__non_special_token_token1] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_as] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_await] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_fn] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_impl] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_loop] = ACTIONS(1486), + [anon_sym_match] = ACTIONS(1486), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_trait] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_unsafe] = ACTIONS(1486), + [anon_sym_use] = ACTIONS(1486), + [anon_sym_where] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [sym_mutable_specifier] = ACTIONS(1486), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_crate] = ACTIONS(1486), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [350] = { - [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_LBRACE] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1505), - [anon_sym_COLON_COLON] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1507), - [sym_super] = ACTIONS(1507), - [sym_crate] = ACTIONS(1507), - [sym_metavariable] = ACTIONS(1505), - [sym_raw_string_literal] = ACTIONS(1505), - [sym_float_literal] = ACTIONS(1505), + [ts_builtin_sym_end] = ACTIONS(1518), + [sym_identifier] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_macro_rules_BANG] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_u8] = ACTIONS(1520), + [anon_sym_i8] = ACTIONS(1520), + [anon_sym_u16] = ACTIONS(1520), + [anon_sym_i16] = ACTIONS(1520), + [anon_sym_u32] = ACTIONS(1520), + [anon_sym_i32] = ACTIONS(1520), + [anon_sym_u64] = ACTIONS(1520), + [anon_sym_i64] = ACTIONS(1520), + [anon_sym_u128] = ACTIONS(1520), + [anon_sym_i128] = ACTIONS(1520), + [anon_sym_isize] = ACTIONS(1520), + [anon_sym_usize] = ACTIONS(1520), + [anon_sym_f32] = ACTIONS(1520), + [anon_sym_f64] = ACTIONS(1520), + [anon_sym_bool] = ACTIONS(1520), + [anon_sym_str] = ACTIONS(1520), + [anon_sym_char] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_async] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_fn] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_impl] = ACTIONS(1520), + [anon_sym_let] = ACTIONS(1520), + [anon_sym_loop] = ACTIONS(1520), + [anon_sym_match] = ACTIONS(1520), + [anon_sym_mod] = ACTIONS(1520), + [anon_sym_pub] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_trait] = ACTIONS(1520), + [anon_sym_type] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_unsafe] = ACTIONS(1520), + [anon_sym_use] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_COLON_COLON] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_move] = ACTIONS(1520), + [sym_integer_literal] = ACTIONS(1518), + [aux_sym_string_literal_token1] = ACTIONS(1518), + [sym_char_literal] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1520), + [sym_super] = ACTIONS(1520), + [sym_crate] = ACTIONS(1520), + [sym_metavariable] = ACTIONS(1518), + [sym_raw_string_literal] = ACTIONS(1518), + [sym_float_literal] = ACTIONS(1518), [sym_block_comment] = ACTIONS(3), }, [351] = { - [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_LBRACE] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_extern] = ACTIONS(1511), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_COLON_COLON] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1511), - [sym_super] = ACTIONS(1511), - [sym_crate] = ACTIONS(1511), - [sym_metavariable] = ACTIONS(1509), - [sym_raw_string_literal] = ACTIONS(1509), - [sym_float_literal] = ACTIONS(1509), + [sym__token_pattern] = STATE(242), + [sym_token_tree_pattern] = STATE(242), + [sym_token_binding_pattern] = STATE(242), + [sym_token_repetition_pattern] = STATE(242), + [sym__literal] = STATE(242), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1486), + [anon_sym_i8] = ACTIONS(1486), + [anon_sym_u16] = ACTIONS(1486), + [anon_sym_i16] = ACTIONS(1486), + [anon_sym_u32] = ACTIONS(1486), + [anon_sym_i32] = ACTIONS(1486), + [anon_sym_u64] = ACTIONS(1486), + [anon_sym_i64] = ACTIONS(1486), + [anon_sym_u128] = ACTIONS(1486), + [anon_sym_i128] = ACTIONS(1486), + [anon_sym_isize] = ACTIONS(1486), + [anon_sym_usize] = ACTIONS(1486), + [anon_sym_f32] = ACTIONS(1486), + [anon_sym_f64] = ACTIONS(1486), + [anon_sym_bool] = ACTIONS(1486), + [anon_sym_str] = ACTIONS(1486), + [anon_sym_char] = ACTIONS(1486), + [aux_sym__non_special_token_token1] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_as] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_await] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_fn] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_impl] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_loop] = ACTIONS(1486), + [anon_sym_match] = ACTIONS(1486), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_trait] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_unsafe] = ACTIONS(1486), + [anon_sym_use] = ACTIONS(1486), + [anon_sym_where] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [sym_mutable_specifier] = ACTIONS(1486), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_crate] = ACTIONS(1486), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [352] = { - [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_LBRACE] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_LBRACK] = ACTIONS(1513), - [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_COLON_COLON] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1515), - [sym_super] = ACTIONS(1515), - [sym_crate] = ACTIONS(1515), - [sym_metavariable] = ACTIONS(1513), - [sym_raw_string_literal] = ACTIONS(1513), - [sym_float_literal] = ACTIONS(1513), + [ts_builtin_sym_end] = ACTIONS(1522), + [sym_identifier] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_macro_rules_BANG] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u128] = ACTIONS(1524), + [anon_sym_i128] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_str] = ACTIONS(1524), + [anon_sym_char] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_async] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_fn] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_impl] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1524), + [anon_sym_loop] = ACTIONS(1524), + [anon_sym_match] = ACTIONS(1524), + [anon_sym_mod] = ACTIONS(1524), + [anon_sym_pub] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_trait] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_unsafe] = ACTIONS(1524), + [anon_sym_use] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_COLON_COLON] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_DOT_DOT] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_move] = ACTIONS(1524), + [sym_integer_literal] = ACTIONS(1522), + [aux_sym_string_literal_token1] = ACTIONS(1522), + [sym_char_literal] = ACTIONS(1522), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1524), + [sym_super] = ACTIONS(1524), + [sym_crate] = ACTIONS(1524), + [sym_metavariable] = ACTIONS(1522), + [sym_raw_string_literal] = ACTIONS(1522), + [sym_float_literal] = ACTIONS(1522), [sym_block_comment] = ACTIONS(3), }, [353] = { - [sym_attribute_item] = STATE(500), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2317), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_arm] = STATE(466), - [sym_last_match_arm] = STATE(2451), - [sym_match_pattern] = STATE(2324), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(500), - [aux_sym_match_block_repeat1] = STATE(466), + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_identifier] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym_macro_rules_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_u8] = ACTIONS(1528), + [anon_sym_i8] = ACTIONS(1528), + [anon_sym_u16] = ACTIONS(1528), + [anon_sym_i16] = ACTIONS(1528), + [anon_sym_u32] = ACTIONS(1528), + [anon_sym_i32] = ACTIONS(1528), + [anon_sym_u64] = ACTIONS(1528), + [anon_sym_i64] = ACTIONS(1528), + [anon_sym_u128] = ACTIONS(1528), + [anon_sym_i128] = ACTIONS(1528), + [anon_sym_isize] = ACTIONS(1528), + [anon_sym_usize] = ACTIONS(1528), + [anon_sym_f32] = ACTIONS(1528), + [anon_sym_f64] = ACTIONS(1528), + [anon_sym_bool] = ACTIONS(1528), + [anon_sym_str] = ACTIONS(1528), + [anon_sym_char] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_async] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_fn] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_impl] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_mod] = ACTIONS(1528), + [anon_sym_pub] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_trait] = ACTIONS(1528), + [anon_sym_type] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_unsafe] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_COLON_COLON] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_DOT_DOT] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PIPE] = ACTIONS(1526), + [anon_sym_move] = ACTIONS(1528), + [sym_integer_literal] = ACTIONS(1526), + [aux_sym_string_literal_token1] = ACTIONS(1526), + [sym_char_literal] = ACTIONS(1526), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1526), + [sym_raw_string_literal] = ACTIONS(1526), + [sym_float_literal] = ACTIONS(1526), + [sym_block_comment] = ACTIONS(3), + }, + [354] = { + [sym_attribute_item] = STATE(523), + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_macro_invocation] = STATE(2313), + [sym_scoped_identifier] = STATE(1556), + [sym_scoped_type_identifier] = STATE(1971), + [sym_match_arm] = STATE(490), + [sym_last_match_arm] = STATE(2408), + [sym_match_pattern] = STATE(2318), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2065), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_enum_variant_list_repeat1] = STATE(523), + [aux_sym_match_block_repeat1] = STATE(490), [sym_identifier] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), @@ -47722,8234 +47308,8158 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(1088), [anon_sym_union] = ACTIONS(1088), [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [354] = { - [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_LBRACE] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1517), - [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_extern] = ACTIONS(1519), - [anon_sym_LT] = ACTIONS(1517), - [anon_sym_COLON_COLON] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1519), - [sym_super] = ACTIONS(1519), - [sym_crate] = ACTIONS(1519), - [sym_metavariable] = ACTIONS(1517), - [sym_raw_string_literal] = ACTIONS(1517), - [sym_float_literal] = ACTIONS(1517), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [355] = { - [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_LBRACE] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1521), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1523), - [anon_sym_LT] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_move] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1521), - [aux_sym_string_literal_token1] = ACTIONS(1521), - [sym_char_literal] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1523), - [sym_super] = ACTIONS(1523), - [sym_crate] = ACTIONS(1523), - [sym_metavariable] = ACTIONS(1521), - [sym_raw_string_literal] = ACTIONS(1521), - [sym_float_literal] = ACTIONS(1521), + [ts_builtin_sym_end] = ACTIONS(1530), + [sym_identifier] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_macro_rules_BANG] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_async] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_enum] = ACTIONS(1532), + [anon_sym_fn] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_impl] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_pub] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_struct] = ACTIONS(1532), + [anon_sym_trait] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_unsafe] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_LT] = ACTIONS(1530), + [anon_sym_COLON_COLON] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_DOT_DOT] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_move] = ACTIONS(1532), + [sym_integer_literal] = ACTIONS(1530), + [aux_sym_string_literal_token1] = ACTIONS(1530), + [sym_char_literal] = ACTIONS(1530), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(1530), + [sym_float_literal] = ACTIONS(1530), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_macro_rules_BANG] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_STAR] = 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_SQUOTE] = ACTIONS(1527), - [anon_sym_async] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_default] = ACTIONS(1527), - [anon_sym_enum] = ACTIONS(1527), - [anon_sym_fn] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_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_POUND] = ACTIONS(1525), - [anon_sym_BANG] = ACTIONS(1525), - [anon_sym_extern] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1525), - [anon_sym_DOT_DOT] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1525), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1527), - [sym_super] = ACTIONS(1527), - [sym_crate] = ACTIONS(1527), - [sym_metavariable] = ACTIONS(1525), - [sym_raw_string_literal] = ACTIONS(1525), - [sym_float_literal] = ACTIONS(1525), + [sym__token_pattern] = STATE(242), + [sym_token_tree_pattern] = STATE(242), + [sym_token_binding_pattern] = STATE(242), + [sym_token_repetition_pattern] = STATE(242), + [sym__literal] = STATE(242), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1486), + [anon_sym_i8] = ACTIONS(1486), + [anon_sym_u16] = ACTIONS(1486), + [anon_sym_i16] = ACTIONS(1486), + [anon_sym_u32] = ACTIONS(1486), + [anon_sym_i32] = ACTIONS(1486), + [anon_sym_u64] = ACTIONS(1486), + [anon_sym_i64] = ACTIONS(1486), + [anon_sym_u128] = ACTIONS(1486), + [anon_sym_i128] = ACTIONS(1486), + [anon_sym_isize] = ACTIONS(1486), + [anon_sym_usize] = ACTIONS(1486), + [anon_sym_f32] = ACTIONS(1486), + [anon_sym_f64] = ACTIONS(1486), + [anon_sym_bool] = ACTIONS(1486), + [anon_sym_str] = ACTIONS(1486), + [anon_sym_char] = ACTIONS(1486), + [aux_sym__non_special_token_token1] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_as] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_await] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_fn] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_impl] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_loop] = ACTIONS(1486), + [anon_sym_match] = ACTIONS(1486), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_trait] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_unsafe] = ACTIONS(1486), + [anon_sym_use] = ACTIONS(1486), + [anon_sym_where] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [sym_mutable_specifier] = ACTIONS(1486), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_crate] = ACTIONS(1486), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [357] = { - [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_LBRACE] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1531), - [sym_super] = ACTIONS(1531), - [sym_crate] = ACTIONS(1531), - [sym_metavariable] = ACTIONS(1529), - [sym_raw_string_literal] = ACTIONS(1529), - [sym_float_literal] = ACTIONS(1529), + [ts_builtin_sym_end] = ACTIONS(1536), + [sym_identifier] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_macro_rules_BANG] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_u8] = ACTIONS(1538), + [anon_sym_i8] = ACTIONS(1538), + [anon_sym_u16] = ACTIONS(1538), + [anon_sym_i16] = ACTIONS(1538), + [anon_sym_u32] = ACTIONS(1538), + [anon_sym_i32] = ACTIONS(1538), + [anon_sym_u64] = ACTIONS(1538), + [anon_sym_i64] = ACTIONS(1538), + [anon_sym_u128] = ACTIONS(1538), + [anon_sym_i128] = ACTIONS(1538), + [anon_sym_isize] = ACTIONS(1538), + [anon_sym_usize] = ACTIONS(1538), + [anon_sym_f32] = ACTIONS(1538), + [anon_sym_f64] = ACTIONS(1538), + [anon_sym_bool] = ACTIONS(1538), + [anon_sym_str] = ACTIONS(1538), + [anon_sym_char] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_async] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_fn] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_impl] = ACTIONS(1538), + [anon_sym_let] = ACTIONS(1538), + [anon_sym_loop] = ACTIONS(1538), + [anon_sym_match] = ACTIONS(1538), + [anon_sym_mod] = ACTIONS(1538), + [anon_sym_pub] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_trait] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1538), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_unsafe] = ACTIONS(1538), + [anon_sym_use] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_move] = ACTIONS(1538), + [sym_integer_literal] = ACTIONS(1536), + [aux_sym_string_literal_token1] = ACTIONS(1536), + [sym_char_literal] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1538), + [sym_super] = ACTIONS(1538), + [sym_crate] = ACTIONS(1538), + [sym_metavariable] = ACTIONS(1536), + [sym_raw_string_literal] = ACTIONS(1536), + [sym_float_literal] = ACTIONS(1536), [sym_block_comment] = ACTIONS(3), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(1533), - [sym_identifier] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_macro_rules_BANG] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_RBRACE] = ACTIONS(1533), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_u8] = ACTIONS(1535), - [anon_sym_i8] = ACTIONS(1535), - [anon_sym_u16] = ACTIONS(1535), - [anon_sym_i16] = ACTIONS(1535), - [anon_sym_u32] = ACTIONS(1535), - [anon_sym_i32] = ACTIONS(1535), - [anon_sym_u64] = ACTIONS(1535), - [anon_sym_i64] = ACTIONS(1535), - [anon_sym_u128] = ACTIONS(1535), - [anon_sym_i128] = ACTIONS(1535), - [anon_sym_isize] = ACTIONS(1535), - [anon_sym_usize] = ACTIONS(1535), - [anon_sym_f32] = ACTIONS(1535), - [anon_sym_f64] = ACTIONS(1535), - [anon_sym_bool] = ACTIONS(1535), - [anon_sym_str] = ACTIONS(1535), - [anon_sym_char] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_async] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_default] = ACTIONS(1535), - [anon_sym_enum] = ACTIONS(1535), - [anon_sym_fn] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_impl] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_mod] = ACTIONS(1535), - [anon_sym_pub] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1535), - [anon_sym_trait] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_union] = ACTIONS(1535), - [anon_sym_unsafe] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_move] = ACTIONS(1535), - [sym_integer_literal] = ACTIONS(1533), - [aux_sym_string_literal_token1] = ACTIONS(1533), - [sym_char_literal] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1535), - [sym_super] = ACTIONS(1535), - [sym_crate] = ACTIONS(1535), - [sym_metavariable] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1533), - [sym_float_literal] = ACTIONS(1533), + [ts_builtin_sym_end] = ACTIONS(1540), + [sym_identifier] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_macro_rules_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_u8] = ACTIONS(1542), + [anon_sym_i8] = ACTIONS(1542), + [anon_sym_u16] = ACTIONS(1542), + [anon_sym_i16] = ACTIONS(1542), + [anon_sym_u32] = ACTIONS(1542), + [anon_sym_i32] = ACTIONS(1542), + [anon_sym_u64] = ACTIONS(1542), + [anon_sym_i64] = ACTIONS(1542), + [anon_sym_u128] = ACTIONS(1542), + [anon_sym_i128] = ACTIONS(1542), + [anon_sym_isize] = ACTIONS(1542), + [anon_sym_usize] = ACTIONS(1542), + [anon_sym_f32] = ACTIONS(1542), + [anon_sym_f64] = ACTIONS(1542), + [anon_sym_bool] = ACTIONS(1542), + [anon_sym_str] = ACTIONS(1542), + [anon_sym_char] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_fn] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_impl] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1542), + [anon_sym_loop] = ACTIONS(1542), + [anon_sym_match] = ACTIONS(1542), + [anon_sym_mod] = ACTIONS(1542), + [anon_sym_pub] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_trait] = ACTIONS(1542), + [anon_sym_type] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_unsafe] = ACTIONS(1542), + [anon_sym_use] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_COLON_COLON] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_move] = ACTIONS(1542), + [sym_integer_literal] = ACTIONS(1540), + [aux_sym_string_literal_token1] = ACTIONS(1540), + [sym_char_literal] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1540), + [sym_raw_string_literal] = ACTIONS(1540), + [sym_float_literal] = ACTIONS(1540), [sym_block_comment] = ACTIONS(3), }, [359] = { - [ts_builtin_sym_end] = ACTIONS(1537), - [sym_identifier] = ACTIONS(1539), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_macro_rules_BANG] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_u8] = ACTIONS(1539), - [anon_sym_i8] = ACTIONS(1539), - [anon_sym_u16] = ACTIONS(1539), - [anon_sym_i16] = ACTIONS(1539), - [anon_sym_u32] = ACTIONS(1539), - [anon_sym_i32] = ACTIONS(1539), - [anon_sym_u64] = ACTIONS(1539), - [anon_sym_i64] = ACTIONS(1539), - [anon_sym_u128] = ACTIONS(1539), - [anon_sym_i128] = ACTIONS(1539), - [anon_sym_isize] = ACTIONS(1539), - [anon_sym_usize] = ACTIONS(1539), - [anon_sym_f32] = ACTIONS(1539), - [anon_sym_f64] = ACTIONS(1539), - [anon_sym_bool] = ACTIONS(1539), - [anon_sym_str] = ACTIONS(1539), - [anon_sym_char] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_async] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_fn] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_impl] = ACTIONS(1539), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_loop] = ACTIONS(1539), - [anon_sym_match] = ACTIONS(1539), - [anon_sym_mod] = ACTIONS(1539), - [anon_sym_pub] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_trait] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_unsafe] = ACTIONS(1539), - [anon_sym_use] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_POUND] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_COLON_COLON] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_move] = ACTIONS(1539), - [sym_integer_literal] = ACTIONS(1537), - [aux_sym_string_literal_token1] = ACTIONS(1537), - [sym_char_literal] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1539), - [anon_sym_false] = ACTIONS(1539), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_crate] = ACTIONS(1539), - [sym_metavariable] = ACTIONS(1537), - [sym_raw_string_literal] = ACTIONS(1537), - [sym_float_literal] = ACTIONS(1537), + [ts_builtin_sym_end] = ACTIONS(1544), + [sym_identifier] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_macro_rules_BANG] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_u8] = ACTIONS(1546), + [anon_sym_i8] = ACTIONS(1546), + [anon_sym_u16] = ACTIONS(1546), + [anon_sym_i16] = ACTIONS(1546), + [anon_sym_u32] = ACTIONS(1546), + [anon_sym_i32] = ACTIONS(1546), + [anon_sym_u64] = ACTIONS(1546), + [anon_sym_i64] = ACTIONS(1546), + [anon_sym_u128] = ACTIONS(1546), + [anon_sym_i128] = ACTIONS(1546), + [anon_sym_isize] = ACTIONS(1546), + [anon_sym_usize] = ACTIONS(1546), + [anon_sym_f32] = ACTIONS(1546), + [anon_sym_f64] = ACTIONS(1546), + [anon_sym_bool] = ACTIONS(1546), + [anon_sym_str] = ACTIONS(1546), + [anon_sym_char] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_default] = ACTIONS(1546), + [anon_sym_enum] = ACTIONS(1546), + [anon_sym_fn] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_impl] = ACTIONS(1546), + [anon_sym_let] = ACTIONS(1546), + [anon_sym_loop] = ACTIONS(1546), + [anon_sym_match] = ACTIONS(1546), + [anon_sym_mod] = ACTIONS(1546), + [anon_sym_pub] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1546), + [anon_sym_struct] = ACTIONS(1546), + [anon_sym_trait] = ACTIONS(1546), + [anon_sym_type] = ACTIONS(1546), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1546), + [anon_sym_use] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_COLON_COLON] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_move] = ACTIONS(1546), + [sym_integer_literal] = ACTIONS(1544), + [aux_sym_string_literal_token1] = ACTIONS(1544), + [sym_char_literal] = ACTIONS(1544), + [anon_sym_true] = ACTIONS(1546), + [anon_sym_false] = ACTIONS(1546), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1546), + [sym_super] = ACTIONS(1546), + [sym_crate] = ACTIONS(1546), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(1544), + [sym_float_literal] = ACTIONS(1544), [sym_block_comment] = ACTIONS(3), }, [360] = { - [ts_builtin_sym_end] = ACTIONS(1541), - [sym_identifier] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_macro_rules_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_u8] = ACTIONS(1543), - [anon_sym_i8] = ACTIONS(1543), - [anon_sym_u16] = ACTIONS(1543), - [anon_sym_i16] = ACTIONS(1543), - [anon_sym_u32] = ACTIONS(1543), - [anon_sym_i32] = ACTIONS(1543), - [anon_sym_u64] = ACTIONS(1543), - [anon_sym_i64] = ACTIONS(1543), - [anon_sym_u128] = ACTIONS(1543), - [anon_sym_i128] = ACTIONS(1543), - [anon_sym_isize] = ACTIONS(1543), - [anon_sym_usize] = ACTIONS(1543), - [anon_sym_f32] = ACTIONS(1543), - [anon_sym_f64] = ACTIONS(1543), - [anon_sym_bool] = ACTIONS(1543), - [anon_sym_str] = ACTIONS(1543), - [anon_sym_char] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_async] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_enum] = ACTIONS(1543), - [anon_sym_fn] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_impl] = ACTIONS(1543), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_loop] = ACTIONS(1543), - [anon_sym_match] = ACTIONS(1543), - [anon_sym_mod] = ACTIONS(1543), - [anon_sym_pub] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1543), - [anon_sym_trait] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_union] = ACTIONS(1543), - [anon_sym_unsafe] = ACTIONS(1543), - [anon_sym_use] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1543), - [anon_sym_LT] = ACTIONS(1541), - [anon_sym_COLON_COLON] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_move] = ACTIONS(1543), - [sym_integer_literal] = ACTIONS(1541), - [aux_sym_string_literal_token1] = ACTIONS(1541), - [sym_char_literal] = ACTIONS(1541), - [anon_sym_true] = ACTIONS(1543), - [anon_sym_false] = ACTIONS(1543), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1543), - [sym_super] = ACTIONS(1543), - [sym_crate] = ACTIONS(1543), - [sym_metavariable] = ACTIONS(1541), - [sym_raw_string_literal] = ACTIONS(1541), - [sym_float_literal] = ACTIONS(1541), + [ts_builtin_sym_end] = ACTIONS(1548), + [sym_identifier] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_macro_rules_BANG] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_u8] = ACTIONS(1550), + [anon_sym_i8] = ACTIONS(1550), + [anon_sym_u16] = ACTIONS(1550), + [anon_sym_i16] = ACTIONS(1550), + [anon_sym_u32] = ACTIONS(1550), + [anon_sym_i32] = ACTIONS(1550), + [anon_sym_u64] = ACTIONS(1550), + [anon_sym_i64] = ACTIONS(1550), + [anon_sym_u128] = ACTIONS(1550), + [anon_sym_i128] = ACTIONS(1550), + [anon_sym_isize] = ACTIONS(1550), + [anon_sym_usize] = ACTIONS(1550), + [anon_sym_f32] = ACTIONS(1550), + [anon_sym_f64] = ACTIONS(1550), + [anon_sym_bool] = ACTIONS(1550), + [anon_sym_str] = ACTIONS(1550), + [anon_sym_char] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_async] = ACTIONS(1550), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_const] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_default] = ACTIONS(1550), + [anon_sym_enum] = ACTIONS(1550), + [anon_sym_fn] = ACTIONS(1550), + [anon_sym_for] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_impl] = ACTIONS(1550), + [anon_sym_let] = ACTIONS(1550), + [anon_sym_loop] = ACTIONS(1550), + [anon_sym_match] = ACTIONS(1550), + [anon_sym_mod] = ACTIONS(1550), + [anon_sym_pub] = ACTIONS(1550), + [anon_sym_return] = ACTIONS(1550), + [anon_sym_static] = ACTIONS(1550), + [anon_sym_struct] = ACTIONS(1550), + [anon_sym_trait] = ACTIONS(1550), + [anon_sym_type] = ACTIONS(1550), + [anon_sym_union] = ACTIONS(1550), + [anon_sym_unsafe] = ACTIONS(1550), + [anon_sym_use] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_COLON_COLON] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_DOT_DOT] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_move] = ACTIONS(1550), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1548), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1550), + [anon_sym_false] = ACTIONS(1550), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1548), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), [sym_block_comment] = ACTIONS(3), }, [361] = { - [ts_builtin_sym_end] = ACTIONS(1545), - [sym_identifier] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_macro_rules_BANG] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_u8] = ACTIONS(1547), - [anon_sym_i8] = ACTIONS(1547), - [anon_sym_u16] = ACTIONS(1547), - [anon_sym_i16] = ACTIONS(1547), - [anon_sym_u32] = ACTIONS(1547), - [anon_sym_i32] = ACTIONS(1547), - [anon_sym_u64] = ACTIONS(1547), - [anon_sym_i64] = ACTIONS(1547), - [anon_sym_u128] = ACTIONS(1547), - [anon_sym_i128] = ACTIONS(1547), - [anon_sym_isize] = ACTIONS(1547), - [anon_sym_usize] = ACTIONS(1547), - [anon_sym_f32] = ACTIONS(1547), - [anon_sym_f64] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_str] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_async] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_default] = ACTIONS(1547), - [anon_sym_enum] = ACTIONS(1547), - [anon_sym_fn] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_impl] = ACTIONS(1547), - [anon_sym_let] = ACTIONS(1547), - [anon_sym_loop] = ACTIONS(1547), - [anon_sym_match] = ACTIONS(1547), - [anon_sym_mod] = ACTIONS(1547), - [anon_sym_pub] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [anon_sym_trait] = ACTIONS(1547), - [anon_sym_type] = ACTIONS(1547), - [anon_sym_union] = ACTIONS(1547), - [anon_sym_unsafe] = ACTIONS(1547), - [anon_sym_use] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_POUND] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1547), - [anon_sym_LT] = ACTIONS(1545), - [anon_sym_COLON_COLON] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_move] = ACTIONS(1547), - [sym_integer_literal] = ACTIONS(1545), - [aux_sym_string_literal_token1] = ACTIONS(1545), - [sym_char_literal] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1547), - [anon_sym_false] = ACTIONS(1547), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1547), - [sym_super] = ACTIONS(1547), - [sym_crate] = ACTIONS(1547), - [sym_metavariable] = ACTIONS(1545), - [sym_raw_string_literal] = ACTIONS(1545), - [sym_float_literal] = ACTIONS(1545), + [ts_builtin_sym_end] = ACTIONS(1552), + [sym_identifier] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_macro_rules_BANG] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_u8] = ACTIONS(1554), + [anon_sym_i8] = ACTIONS(1554), + [anon_sym_u16] = ACTIONS(1554), + [anon_sym_i16] = ACTIONS(1554), + [anon_sym_u32] = ACTIONS(1554), + [anon_sym_i32] = ACTIONS(1554), + [anon_sym_u64] = ACTIONS(1554), + [anon_sym_i64] = ACTIONS(1554), + [anon_sym_u128] = ACTIONS(1554), + [anon_sym_i128] = ACTIONS(1554), + [anon_sym_isize] = ACTIONS(1554), + [anon_sym_usize] = ACTIONS(1554), + [anon_sym_f32] = ACTIONS(1554), + [anon_sym_f64] = ACTIONS(1554), + [anon_sym_bool] = ACTIONS(1554), + [anon_sym_str] = ACTIONS(1554), + [anon_sym_char] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_fn] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_impl] = ACTIONS(1554), + [anon_sym_let] = ACTIONS(1554), + [anon_sym_loop] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1554), + [anon_sym_mod] = ACTIONS(1554), + [anon_sym_pub] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_trait] = ACTIONS(1554), + [anon_sym_type] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_unsafe] = ACTIONS(1554), + [anon_sym_use] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_DOT_DOT] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_move] = ACTIONS(1554), + [sym_integer_literal] = ACTIONS(1552), + [aux_sym_string_literal_token1] = ACTIONS(1552), + [sym_char_literal] = ACTIONS(1552), + [anon_sym_true] = ACTIONS(1554), + [anon_sym_false] = ACTIONS(1554), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1554), + [sym_super] = ACTIONS(1554), + [sym_crate] = ACTIONS(1554), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1552), + [sym_float_literal] = ACTIONS(1552), [sym_block_comment] = ACTIONS(3), }, [362] = { - [ts_builtin_sym_end] = ACTIONS(1549), - [sym_identifier] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_macro_rules_BANG] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_u8] = ACTIONS(1551), - [anon_sym_i8] = ACTIONS(1551), - [anon_sym_u16] = ACTIONS(1551), - [anon_sym_i16] = ACTIONS(1551), - [anon_sym_u32] = ACTIONS(1551), - [anon_sym_i32] = ACTIONS(1551), - [anon_sym_u64] = ACTIONS(1551), - [anon_sym_i64] = ACTIONS(1551), - [anon_sym_u128] = ACTIONS(1551), - [anon_sym_i128] = ACTIONS(1551), - [anon_sym_isize] = ACTIONS(1551), - [anon_sym_usize] = ACTIONS(1551), - [anon_sym_f32] = ACTIONS(1551), - [anon_sym_f64] = ACTIONS(1551), - [anon_sym_bool] = ACTIONS(1551), - [anon_sym_str] = ACTIONS(1551), - [anon_sym_char] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_async] = ACTIONS(1551), - [anon_sym_break] = ACTIONS(1551), - [anon_sym_const] = ACTIONS(1551), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_enum] = ACTIONS(1551), - [anon_sym_fn] = ACTIONS(1551), - [anon_sym_for] = ACTIONS(1551), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_impl] = ACTIONS(1551), - [anon_sym_let] = ACTIONS(1551), - [anon_sym_loop] = ACTIONS(1551), - [anon_sym_match] = ACTIONS(1551), - [anon_sym_mod] = ACTIONS(1551), - [anon_sym_pub] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1551), - [anon_sym_struct] = ACTIONS(1551), - [anon_sym_trait] = ACTIONS(1551), - [anon_sym_type] = ACTIONS(1551), - [anon_sym_union] = ACTIONS(1551), - [anon_sym_unsafe] = ACTIONS(1551), - [anon_sym_use] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_POUND] = ACTIONS(1549), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1551), - [anon_sym_LT] = ACTIONS(1549), - [anon_sym_COLON_COLON] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_move] = ACTIONS(1551), - [sym_integer_literal] = ACTIONS(1549), - [aux_sym_string_literal_token1] = ACTIONS(1549), - [sym_char_literal] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1551), - [sym_super] = ACTIONS(1551), - [sym_crate] = ACTIONS(1551), - [sym_metavariable] = ACTIONS(1549), - [sym_raw_string_literal] = ACTIONS(1549), - [sym_float_literal] = ACTIONS(1549), + [ts_builtin_sym_end] = ACTIONS(1556), + [sym_identifier] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_macro_rules_BANG] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_u8] = ACTIONS(1558), + [anon_sym_i8] = ACTIONS(1558), + [anon_sym_u16] = ACTIONS(1558), + [anon_sym_i16] = ACTIONS(1558), + [anon_sym_u32] = ACTIONS(1558), + [anon_sym_i32] = ACTIONS(1558), + [anon_sym_u64] = ACTIONS(1558), + [anon_sym_i64] = ACTIONS(1558), + [anon_sym_u128] = ACTIONS(1558), + [anon_sym_i128] = ACTIONS(1558), + [anon_sym_isize] = ACTIONS(1558), + [anon_sym_usize] = ACTIONS(1558), + [anon_sym_f32] = ACTIONS(1558), + [anon_sym_f64] = ACTIONS(1558), + [anon_sym_bool] = ACTIONS(1558), + [anon_sym_str] = ACTIONS(1558), + [anon_sym_char] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_fn] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_impl] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(1558), + [anon_sym_loop] = ACTIONS(1558), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_mod] = ACTIONS(1558), + [anon_sym_pub] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_trait] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_unsafe] = ACTIONS(1558), + [anon_sym_use] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_COLON_COLON] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_move] = ACTIONS(1558), + [sym_integer_literal] = ACTIONS(1556), + [aux_sym_string_literal_token1] = ACTIONS(1556), + [sym_char_literal] = ACTIONS(1556), + [anon_sym_true] = ACTIONS(1558), + [anon_sym_false] = ACTIONS(1558), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1558), + [sym_super] = ACTIONS(1558), + [sym_crate] = ACTIONS(1558), + [sym_metavariable] = ACTIONS(1556), + [sym_raw_string_literal] = ACTIONS(1556), + [sym_float_literal] = ACTIONS(1556), [sym_block_comment] = ACTIONS(3), }, [363] = { - [ts_builtin_sym_end] = ACTIONS(1553), - [sym_identifier] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_macro_rules_BANG] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1555), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_enum] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_impl] = ACTIONS(1555), - [anon_sym_let] = ACTIONS(1555), - [anon_sym_loop] = ACTIONS(1555), - [anon_sym_match] = ACTIONS(1555), - [anon_sym_mod] = ACTIONS(1555), - [anon_sym_pub] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_struct] = ACTIONS(1555), - [anon_sym_trait] = ACTIONS(1555), - [anon_sym_type] = ACTIONS(1555), - [anon_sym_union] = ACTIONS(1555), - [anon_sym_unsafe] = ACTIONS(1555), - [anon_sym_use] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_extern] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_DOT_DOT] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_move] = ACTIONS(1555), - [sym_integer_literal] = ACTIONS(1553), - [aux_sym_string_literal_token1] = ACTIONS(1553), - [sym_char_literal] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1555), - [anon_sym_false] = ACTIONS(1555), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1555), - [sym_super] = ACTIONS(1555), - [sym_crate] = ACTIONS(1555), - [sym_metavariable] = ACTIONS(1553), - [sym_raw_string_literal] = ACTIONS(1553), - [sym_float_literal] = ACTIONS(1553), + [ts_builtin_sym_end] = ACTIONS(1560), + [sym_identifier] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_macro_rules_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_u8] = ACTIONS(1562), + [anon_sym_i8] = ACTIONS(1562), + [anon_sym_u16] = ACTIONS(1562), + [anon_sym_i16] = ACTIONS(1562), + [anon_sym_u32] = ACTIONS(1562), + [anon_sym_i32] = ACTIONS(1562), + [anon_sym_u64] = ACTIONS(1562), + [anon_sym_i64] = ACTIONS(1562), + [anon_sym_u128] = ACTIONS(1562), + [anon_sym_i128] = ACTIONS(1562), + [anon_sym_isize] = ACTIONS(1562), + [anon_sym_usize] = ACTIONS(1562), + [anon_sym_f32] = ACTIONS(1562), + [anon_sym_f64] = ACTIONS(1562), + [anon_sym_bool] = ACTIONS(1562), + [anon_sym_str] = ACTIONS(1562), + [anon_sym_char] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [anon_sym_async] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_default] = ACTIONS(1562), + [anon_sym_enum] = ACTIONS(1562), + [anon_sym_fn] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(1562), + [anon_sym_impl] = ACTIONS(1562), + [anon_sym_let] = ACTIONS(1562), + [anon_sym_loop] = ACTIONS(1562), + [anon_sym_match] = ACTIONS(1562), + [anon_sym_mod] = ACTIONS(1562), + [anon_sym_pub] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1562), + [anon_sym_trait] = ACTIONS(1562), + [anon_sym_type] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_unsafe] = ACTIONS(1562), + [anon_sym_use] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_COLON_COLON] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_DOT_DOT] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_move] = ACTIONS(1562), + [sym_integer_literal] = ACTIONS(1560), + [aux_sym_string_literal_token1] = ACTIONS(1560), + [sym_char_literal] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1562), + [anon_sym_false] = ACTIONS(1562), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1562), + [sym_super] = ACTIONS(1562), + [sym_crate] = ACTIONS(1562), + [sym_metavariable] = ACTIONS(1560), + [sym_raw_string_literal] = ACTIONS(1560), + [sym_float_literal] = ACTIONS(1560), [sym_block_comment] = ACTIONS(3), }, [364] = { - [ts_builtin_sym_end] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_macro_rules_BANG] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_u8] = ACTIONS(1559), - [anon_sym_i8] = ACTIONS(1559), - [anon_sym_u16] = ACTIONS(1559), - [anon_sym_i16] = ACTIONS(1559), - [anon_sym_u32] = ACTIONS(1559), - [anon_sym_i32] = ACTIONS(1559), - [anon_sym_u64] = ACTIONS(1559), - [anon_sym_i64] = ACTIONS(1559), - [anon_sym_u128] = ACTIONS(1559), - [anon_sym_i128] = ACTIONS(1559), - [anon_sym_isize] = ACTIONS(1559), - [anon_sym_usize] = ACTIONS(1559), - [anon_sym_f32] = ACTIONS(1559), - [anon_sym_f64] = ACTIONS(1559), - [anon_sym_bool] = ACTIONS(1559), - [anon_sym_str] = ACTIONS(1559), - [anon_sym_char] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_async] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_default] = ACTIONS(1559), - [anon_sym_enum] = ACTIONS(1559), - [anon_sym_fn] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [anon_sym_mod] = ACTIONS(1559), - [anon_sym_pub] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_struct] = ACTIONS(1559), - [anon_sym_trait] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(1557), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_COLON_COLON] = ACTIONS(1557), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_DOT_DOT] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_move] = ACTIONS(1559), - [sym_integer_literal] = ACTIONS(1557), - [aux_sym_string_literal_token1] = ACTIONS(1557), - [sym_char_literal] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1559), - [sym_super] = ACTIONS(1559), - [sym_crate] = ACTIONS(1559), - [sym_metavariable] = ACTIONS(1557), - [sym_raw_string_literal] = ACTIONS(1557), - [sym_float_literal] = ACTIONS(1557), + [ts_builtin_sym_end] = ACTIONS(1564), + [sym_identifier] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_macro_rules_BANG] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_async] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_fn] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_impl] = ACTIONS(1566), + [anon_sym_let] = ACTIONS(1566), + [anon_sym_loop] = ACTIONS(1566), + [anon_sym_match] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_pub] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_trait] = ACTIONS(1566), + [anon_sym_type] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_unsafe] = ACTIONS(1566), + [anon_sym_use] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_COLON_COLON] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_DOT_DOT] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_move] = ACTIONS(1566), + [sym_integer_literal] = ACTIONS(1564), + [aux_sym_string_literal_token1] = ACTIONS(1564), + [sym_char_literal] = ACTIONS(1564), + [anon_sym_true] = ACTIONS(1566), + [anon_sym_false] = ACTIONS(1566), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1566), + [sym_super] = ACTIONS(1566), + [sym_crate] = ACTIONS(1566), + [sym_metavariable] = ACTIONS(1564), + [sym_raw_string_literal] = ACTIONS(1564), + [sym_float_literal] = ACTIONS(1564), [sym_block_comment] = ACTIONS(3), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(1561), - [sym_identifier] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_macro_rules_BANG] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_u8] = ACTIONS(1563), - [anon_sym_i8] = ACTIONS(1563), - [anon_sym_u16] = ACTIONS(1563), - [anon_sym_i16] = ACTIONS(1563), - [anon_sym_u32] = ACTIONS(1563), - [anon_sym_i32] = ACTIONS(1563), - [anon_sym_u64] = ACTIONS(1563), - [anon_sym_i64] = ACTIONS(1563), - [anon_sym_u128] = ACTIONS(1563), - [anon_sym_i128] = ACTIONS(1563), - [anon_sym_isize] = ACTIONS(1563), - [anon_sym_usize] = ACTIONS(1563), - [anon_sym_f32] = ACTIONS(1563), - [anon_sym_f64] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_str] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_async] = ACTIONS(1563), - [anon_sym_break] = ACTIONS(1563), - [anon_sym_const] = ACTIONS(1563), - [anon_sym_continue] = ACTIONS(1563), - [anon_sym_default] = ACTIONS(1563), - [anon_sym_enum] = ACTIONS(1563), - [anon_sym_fn] = ACTIONS(1563), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_impl] = ACTIONS(1563), - [anon_sym_let] = ACTIONS(1563), - [anon_sym_loop] = ACTIONS(1563), - [anon_sym_match] = ACTIONS(1563), - [anon_sym_mod] = ACTIONS(1563), - [anon_sym_pub] = ACTIONS(1563), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1563), - [anon_sym_struct] = ACTIONS(1563), - [anon_sym_trait] = ACTIONS(1563), - [anon_sym_type] = ACTIONS(1563), - [anon_sym_union] = ACTIONS(1563), - [anon_sym_unsafe] = ACTIONS(1563), - [anon_sym_use] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1563), - [anon_sym_POUND] = ACTIONS(1561), - [anon_sym_BANG] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1563), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_COLON_COLON] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_DOT_DOT] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_move] = ACTIONS(1563), - [sym_integer_literal] = ACTIONS(1561), - [aux_sym_string_literal_token1] = ACTIONS(1561), - [sym_char_literal] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1563), - [sym_super] = ACTIONS(1563), - [sym_crate] = ACTIONS(1563), - [sym_metavariable] = ACTIONS(1561), - [sym_raw_string_literal] = ACTIONS(1561), - [sym_float_literal] = ACTIONS(1561), + [ts_builtin_sym_end] = ACTIONS(1568), + [sym_identifier] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym_macro_rules_BANG] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1568), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_u8] = ACTIONS(1570), + [anon_sym_i8] = ACTIONS(1570), + [anon_sym_u16] = ACTIONS(1570), + [anon_sym_i16] = ACTIONS(1570), + [anon_sym_u32] = ACTIONS(1570), + [anon_sym_i32] = ACTIONS(1570), + [anon_sym_u64] = ACTIONS(1570), + [anon_sym_i64] = ACTIONS(1570), + [anon_sym_u128] = ACTIONS(1570), + [anon_sym_i128] = ACTIONS(1570), + [anon_sym_isize] = ACTIONS(1570), + [anon_sym_usize] = ACTIONS(1570), + [anon_sym_f32] = ACTIONS(1570), + [anon_sym_f64] = ACTIONS(1570), + [anon_sym_bool] = ACTIONS(1570), + [anon_sym_str] = ACTIONS(1570), + [anon_sym_char] = ACTIONS(1570), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_async] = ACTIONS(1570), + [anon_sym_break] = ACTIONS(1570), + [anon_sym_const] = ACTIONS(1570), + [anon_sym_continue] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_enum] = ACTIONS(1570), + [anon_sym_fn] = ACTIONS(1570), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_impl] = ACTIONS(1570), + [anon_sym_let] = ACTIONS(1570), + [anon_sym_loop] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1570), + [anon_sym_mod] = ACTIONS(1570), + [anon_sym_pub] = ACTIONS(1570), + [anon_sym_return] = ACTIONS(1570), + [anon_sym_static] = ACTIONS(1570), + [anon_sym_struct] = ACTIONS(1570), + [anon_sym_trait] = ACTIONS(1570), + [anon_sym_type] = ACTIONS(1570), + [anon_sym_union] = ACTIONS(1570), + [anon_sym_unsafe] = ACTIONS(1570), + [anon_sym_use] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1570), + [anon_sym_POUND] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_extern] = ACTIONS(1570), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_COLON_COLON] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1568), + [aux_sym_string_literal_token1] = ACTIONS(1568), + [sym_char_literal] = ACTIONS(1568), + [anon_sym_true] = ACTIONS(1570), + [anon_sym_false] = ACTIONS(1570), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1570), + [sym_super] = ACTIONS(1570), + [sym_crate] = ACTIONS(1570), + [sym_metavariable] = ACTIONS(1568), + [sym_raw_string_literal] = ACTIONS(1568), + [sym_float_literal] = ACTIONS(1568), [sym_block_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_macro_rules_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u128] = ACTIONS(1567), - [anon_sym_i128] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_str] = ACTIONS(1567), - [anon_sym_char] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_default] = ACTIONS(1567), - [anon_sym_enum] = ACTIONS(1567), - [anon_sym_fn] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_impl] = ACTIONS(1567), - [anon_sym_let] = ACTIONS(1567), - [anon_sym_loop] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_mod] = ACTIONS(1567), - [anon_sym_pub] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_static] = ACTIONS(1567), - [anon_sym_struct] = ACTIONS(1567), - [anon_sym_trait] = ACTIONS(1567), - [anon_sym_type] = ACTIONS(1567), - [anon_sym_union] = ACTIONS(1567), - [anon_sym_unsafe] = ACTIONS(1567), - [anon_sym_use] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_POUND] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1567), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_COLON_COLON] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_move] = ACTIONS(1567), - [sym_integer_literal] = ACTIONS(1565), - [aux_sym_string_literal_token1] = ACTIONS(1565), - [sym_char_literal] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1567), - [sym_super] = ACTIONS(1567), - [sym_crate] = ACTIONS(1567), - [sym_metavariable] = ACTIONS(1565), - [sym_raw_string_literal] = ACTIONS(1565), - [sym_float_literal] = ACTIONS(1565), + [ts_builtin_sym_end] = ACTIONS(1572), + [sym_identifier] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_macro_rules_BANG] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_u8] = ACTIONS(1574), + [anon_sym_i8] = ACTIONS(1574), + [anon_sym_u16] = ACTIONS(1574), + [anon_sym_i16] = ACTIONS(1574), + [anon_sym_u32] = ACTIONS(1574), + [anon_sym_i32] = ACTIONS(1574), + [anon_sym_u64] = ACTIONS(1574), + [anon_sym_i64] = ACTIONS(1574), + [anon_sym_u128] = ACTIONS(1574), + [anon_sym_i128] = ACTIONS(1574), + [anon_sym_isize] = ACTIONS(1574), + [anon_sym_usize] = ACTIONS(1574), + [anon_sym_f32] = ACTIONS(1574), + [anon_sym_f64] = ACTIONS(1574), + [anon_sym_bool] = ACTIONS(1574), + [anon_sym_str] = ACTIONS(1574), + [anon_sym_char] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1574), + [anon_sym_break] = ACTIONS(1574), + [anon_sym_const] = ACTIONS(1574), + [anon_sym_continue] = ACTIONS(1574), + [anon_sym_default] = ACTIONS(1574), + [anon_sym_enum] = ACTIONS(1574), + [anon_sym_fn] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1574), + [anon_sym_if] = ACTIONS(1574), + [anon_sym_impl] = ACTIONS(1574), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_loop] = ACTIONS(1574), + [anon_sym_match] = ACTIONS(1574), + [anon_sym_mod] = ACTIONS(1574), + [anon_sym_pub] = ACTIONS(1574), + [anon_sym_return] = ACTIONS(1574), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_struct] = ACTIONS(1574), + [anon_sym_trait] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_union] = ACTIONS(1574), + [anon_sym_unsafe] = ACTIONS(1574), + [anon_sym_use] = ACTIONS(1574), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_extern] = ACTIONS(1574), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_DOT_DOT] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_move] = ACTIONS(1574), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1572), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1574), + [anon_sym_false] = ACTIONS(1574), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1574), + [sym_super] = ACTIONS(1574), + [sym_crate] = ACTIONS(1574), + [sym_metavariable] = ACTIONS(1572), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), [sym_block_comment] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1569), - [sym_identifier] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1569), - [anon_sym_macro_rules_BANG] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_u8] = ACTIONS(1571), - [anon_sym_i8] = ACTIONS(1571), - [anon_sym_u16] = ACTIONS(1571), - [anon_sym_i16] = ACTIONS(1571), - [anon_sym_u32] = ACTIONS(1571), - [anon_sym_i32] = ACTIONS(1571), - [anon_sym_u64] = ACTIONS(1571), - [anon_sym_i64] = ACTIONS(1571), - [anon_sym_u128] = ACTIONS(1571), - [anon_sym_i128] = ACTIONS(1571), - [anon_sym_isize] = ACTIONS(1571), - [anon_sym_usize] = ACTIONS(1571), - [anon_sym_f32] = ACTIONS(1571), - [anon_sym_f64] = ACTIONS(1571), - [anon_sym_bool] = ACTIONS(1571), - [anon_sym_str] = ACTIONS(1571), - [anon_sym_char] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_enum] = ACTIONS(1571), - [anon_sym_fn] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_impl] = ACTIONS(1571), - [anon_sym_let] = ACTIONS(1571), - [anon_sym_loop] = ACTIONS(1571), - [anon_sym_match] = ACTIONS(1571), - [anon_sym_mod] = ACTIONS(1571), - [anon_sym_pub] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1571), - [anon_sym_struct] = ACTIONS(1571), - [anon_sym_trait] = ACTIONS(1571), - [anon_sym_type] = ACTIONS(1571), - [anon_sym_union] = ACTIONS(1571), - [anon_sym_unsafe] = ACTIONS(1571), - [anon_sym_use] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_POUND] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1569), - [anon_sym_COLON_COLON] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_move] = ACTIONS(1571), - [sym_integer_literal] = ACTIONS(1569), - [aux_sym_string_literal_token1] = ACTIONS(1569), - [sym_char_literal] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1571), - [sym_super] = ACTIONS(1571), - [sym_crate] = ACTIONS(1571), - [sym_metavariable] = ACTIONS(1569), - [sym_raw_string_literal] = ACTIONS(1569), - [sym_float_literal] = ACTIONS(1569), + [ts_builtin_sym_end] = ACTIONS(1576), + [sym_identifier] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_macro_rules_BANG] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_u8] = ACTIONS(1578), + [anon_sym_i8] = ACTIONS(1578), + [anon_sym_u16] = ACTIONS(1578), + [anon_sym_i16] = ACTIONS(1578), + [anon_sym_u32] = ACTIONS(1578), + [anon_sym_i32] = ACTIONS(1578), + [anon_sym_u64] = ACTIONS(1578), + [anon_sym_i64] = ACTIONS(1578), + [anon_sym_u128] = ACTIONS(1578), + [anon_sym_i128] = ACTIONS(1578), + [anon_sym_isize] = ACTIONS(1578), + [anon_sym_usize] = ACTIONS(1578), + [anon_sym_f32] = ACTIONS(1578), + [anon_sym_f64] = ACTIONS(1578), + [anon_sym_bool] = ACTIONS(1578), + [anon_sym_str] = ACTIONS(1578), + [anon_sym_char] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_break] = ACTIONS(1578), + [anon_sym_const] = ACTIONS(1578), + [anon_sym_continue] = ACTIONS(1578), + [anon_sym_default] = ACTIONS(1578), + [anon_sym_enum] = ACTIONS(1578), + [anon_sym_fn] = ACTIONS(1578), + [anon_sym_for] = ACTIONS(1578), + [anon_sym_if] = ACTIONS(1578), + [anon_sym_impl] = ACTIONS(1578), + [anon_sym_let] = ACTIONS(1578), + [anon_sym_loop] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_mod] = ACTIONS(1578), + [anon_sym_pub] = ACTIONS(1578), + [anon_sym_return] = ACTIONS(1578), + [anon_sym_static] = ACTIONS(1578), + [anon_sym_struct] = ACTIONS(1578), + [anon_sym_trait] = ACTIONS(1578), + [anon_sym_type] = ACTIONS(1578), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1578), + [anon_sym_use] = ACTIONS(1578), + [anon_sym_while] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_extern] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1576), + [anon_sym_COLON_COLON] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_DOT_DOT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_move] = ACTIONS(1578), + [sym_integer_literal] = ACTIONS(1576), + [aux_sym_string_literal_token1] = ACTIONS(1576), + [sym_char_literal] = ACTIONS(1576), + [anon_sym_true] = ACTIONS(1578), + [anon_sym_false] = ACTIONS(1578), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1576), + [sym_raw_string_literal] = ACTIONS(1576), + [sym_float_literal] = ACTIONS(1576), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1573), - [sym_identifier] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_macro_rules_BANG] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_u8] = ACTIONS(1575), - [anon_sym_i8] = ACTIONS(1575), - [anon_sym_u16] = ACTIONS(1575), - [anon_sym_i16] = ACTIONS(1575), - [anon_sym_u32] = ACTIONS(1575), - [anon_sym_i32] = ACTIONS(1575), - [anon_sym_u64] = ACTIONS(1575), - [anon_sym_i64] = ACTIONS(1575), - [anon_sym_u128] = ACTIONS(1575), - [anon_sym_i128] = ACTIONS(1575), - [anon_sym_isize] = ACTIONS(1575), - [anon_sym_usize] = ACTIONS(1575), - [anon_sym_f32] = ACTIONS(1575), - [anon_sym_f64] = ACTIONS(1575), - [anon_sym_bool] = ACTIONS(1575), - [anon_sym_str] = ACTIONS(1575), - [anon_sym_char] = ACTIONS(1575), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_async] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1575), - [anon_sym_enum] = ACTIONS(1575), - [anon_sym_fn] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_impl] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_pub] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_struct] = ACTIONS(1575), - [anon_sym_trait] = ACTIONS(1575), - [anon_sym_type] = ACTIONS(1575), - [anon_sym_union] = ACTIONS(1575), - [anon_sym_unsafe] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_COLON_COLON] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_move] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1573), - [aux_sym_string_literal_token1] = ACTIONS(1573), - [sym_char_literal] = ACTIONS(1573), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1575), - [sym_crate] = ACTIONS(1575), - [sym_metavariable] = ACTIONS(1573), - [sym_raw_string_literal] = ACTIONS(1573), - [sym_float_literal] = ACTIONS(1573), + [sym__token_pattern] = STATE(242), + [sym_token_tree_pattern] = STATE(242), + [sym_token_binding_pattern] = STATE(242), + [sym_token_repetition_pattern] = STATE(242), + [sym__literal] = STATE(242), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1486), + [anon_sym_i8] = ACTIONS(1486), + [anon_sym_u16] = ACTIONS(1486), + [anon_sym_i16] = ACTIONS(1486), + [anon_sym_u32] = ACTIONS(1486), + [anon_sym_i32] = ACTIONS(1486), + [anon_sym_u64] = ACTIONS(1486), + [anon_sym_i64] = ACTIONS(1486), + [anon_sym_u128] = ACTIONS(1486), + [anon_sym_i128] = ACTIONS(1486), + [anon_sym_isize] = ACTIONS(1486), + [anon_sym_usize] = ACTIONS(1486), + [anon_sym_f32] = ACTIONS(1486), + [anon_sym_f64] = ACTIONS(1486), + [anon_sym_bool] = ACTIONS(1486), + [anon_sym_str] = ACTIONS(1486), + [anon_sym_char] = ACTIONS(1486), + [aux_sym__non_special_token_token1] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_as] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_await] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_fn] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_impl] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_loop] = ACTIONS(1486), + [anon_sym_match] = ACTIONS(1486), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_trait] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_unsafe] = ACTIONS(1486), + [anon_sym_use] = ACTIONS(1486), + [anon_sym_where] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [sym_mutable_specifier] = ACTIONS(1486), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_crate] = ACTIONS(1486), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1577), - [sym_identifier] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_macro_rules_BANG] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_u8] = ACTIONS(1579), - [anon_sym_i8] = ACTIONS(1579), - [anon_sym_u16] = ACTIONS(1579), - [anon_sym_i16] = ACTIONS(1579), - [anon_sym_u32] = ACTIONS(1579), - [anon_sym_i32] = ACTIONS(1579), - [anon_sym_u64] = ACTIONS(1579), - [anon_sym_i64] = ACTIONS(1579), - [anon_sym_u128] = ACTIONS(1579), - [anon_sym_i128] = ACTIONS(1579), - [anon_sym_isize] = ACTIONS(1579), - [anon_sym_usize] = ACTIONS(1579), - [anon_sym_f32] = ACTIONS(1579), - [anon_sym_f64] = ACTIONS(1579), - [anon_sym_bool] = ACTIONS(1579), - [anon_sym_str] = ACTIONS(1579), - [anon_sym_char] = ACTIONS(1579), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_enum] = ACTIONS(1579), - [anon_sym_fn] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_impl] = ACTIONS(1579), - [anon_sym_let] = ACTIONS(1579), - [anon_sym_loop] = ACTIONS(1579), - [anon_sym_match] = ACTIONS(1579), - [anon_sym_mod] = ACTIONS(1579), - [anon_sym_pub] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1579), - [anon_sym_trait] = ACTIONS(1579), - [anon_sym_type] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1579), - [anon_sym_unsafe] = ACTIONS(1579), - [anon_sym_use] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_move] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1577), - [aux_sym_string_literal_token1] = ACTIONS(1577), - [sym_char_literal] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1579), - [sym_super] = ACTIONS(1579), - [sym_crate] = ACTIONS(1579), - [sym_metavariable] = ACTIONS(1577), - [sym_raw_string_literal] = ACTIONS(1577), - [sym_float_literal] = ACTIONS(1577), + [ts_builtin_sym_end] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_macro_rules_BANG] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_u8] = ACTIONS(1582), + [anon_sym_i8] = ACTIONS(1582), + [anon_sym_u16] = ACTIONS(1582), + [anon_sym_i16] = ACTIONS(1582), + [anon_sym_u32] = ACTIONS(1582), + [anon_sym_i32] = ACTIONS(1582), + [anon_sym_u64] = ACTIONS(1582), + [anon_sym_i64] = ACTIONS(1582), + [anon_sym_u128] = ACTIONS(1582), + [anon_sym_i128] = ACTIONS(1582), + [anon_sym_isize] = ACTIONS(1582), + [anon_sym_usize] = ACTIONS(1582), + [anon_sym_f32] = ACTIONS(1582), + [anon_sym_f64] = ACTIONS(1582), + [anon_sym_bool] = ACTIONS(1582), + [anon_sym_str] = ACTIONS(1582), + [anon_sym_char] = ACTIONS(1582), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_async] = ACTIONS(1582), + [anon_sym_break] = ACTIONS(1582), + [anon_sym_const] = ACTIONS(1582), + [anon_sym_continue] = ACTIONS(1582), + [anon_sym_default] = ACTIONS(1582), + [anon_sym_enum] = ACTIONS(1582), + [anon_sym_fn] = ACTIONS(1582), + [anon_sym_for] = ACTIONS(1582), + [anon_sym_if] = ACTIONS(1582), + [anon_sym_impl] = ACTIONS(1582), + [anon_sym_let] = ACTIONS(1582), + [anon_sym_loop] = ACTIONS(1582), + [anon_sym_match] = ACTIONS(1582), + [anon_sym_mod] = ACTIONS(1582), + [anon_sym_pub] = ACTIONS(1582), + [anon_sym_return] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1582), + [anon_sym_struct] = ACTIONS(1582), + [anon_sym_trait] = ACTIONS(1582), + [anon_sym_type] = ACTIONS(1582), + [anon_sym_union] = ACTIONS(1582), + [anon_sym_unsafe] = ACTIONS(1582), + [anon_sym_use] = ACTIONS(1582), + [anon_sym_while] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_COLON_COLON] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_move] = ACTIONS(1582), + [sym_integer_literal] = ACTIONS(1580), + [aux_sym_string_literal_token1] = ACTIONS(1580), + [sym_char_literal] = ACTIONS(1580), + [anon_sym_true] = ACTIONS(1582), + [anon_sym_false] = ACTIONS(1582), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1580), + [sym_float_literal] = ACTIONS(1580), [sym_block_comment] = ACTIONS(3), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1581), - [sym_identifier] = ACTIONS(1583), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_macro_rules_BANG] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1581), - [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_SQUOTE] = 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_enum] = ACTIONS(1583), - [anon_sym_fn] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_impl] = ACTIONS(1583), - [anon_sym_let] = ACTIONS(1583), - [anon_sym_loop] = ACTIONS(1583), - [anon_sym_match] = ACTIONS(1583), - [anon_sym_mod] = ACTIONS(1583), - [anon_sym_pub] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_struct] = ACTIONS(1583), - [anon_sym_trait] = ACTIONS(1583), - [anon_sym_type] = ACTIONS(1583), - [anon_sym_union] = ACTIONS(1583), - [anon_sym_unsafe] = ACTIONS(1583), - [anon_sym_use] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_POUND] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1583), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_COLON_COLON] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_move] = ACTIONS(1583), - [sym_integer_literal] = ACTIONS(1581), - [aux_sym_string_literal_token1] = ACTIONS(1581), - [sym_char_literal] = ACTIONS(1581), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1583), - [sym_super] = ACTIONS(1583), - [sym_crate] = ACTIONS(1583), - [sym_metavariable] = ACTIONS(1581), - [sym_raw_string_literal] = ACTIONS(1581), - [sym_float_literal] = ACTIONS(1581), + [ts_builtin_sym_end] = ACTIONS(1584), + [sym_identifier] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_macro_rules_BANG] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1586), + [anon_sym_i8] = ACTIONS(1586), + [anon_sym_u16] = ACTIONS(1586), + [anon_sym_i16] = ACTIONS(1586), + [anon_sym_u32] = ACTIONS(1586), + [anon_sym_i32] = ACTIONS(1586), + [anon_sym_u64] = ACTIONS(1586), + [anon_sym_i64] = ACTIONS(1586), + [anon_sym_u128] = ACTIONS(1586), + [anon_sym_i128] = ACTIONS(1586), + [anon_sym_isize] = ACTIONS(1586), + [anon_sym_usize] = ACTIONS(1586), + [anon_sym_f32] = ACTIONS(1586), + [anon_sym_f64] = ACTIONS(1586), + [anon_sym_bool] = ACTIONS(1586), + [anon_sym_str] = ACTIONS(1586), + [anon_sym_char] = ACTIONS(1586), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(1586), + [anon_sym_break] = ACTIONS(1586), + [anon_sym_const] = ACTIONS(1586), + [anon_sym_continue] = ACTIONS(1586), + [anon_sym_default] = ACTIONS(1586), + [anon_sym_enum] = ACTIONS(1586), + [anon_sym_fn] = ACTIONS(1586), + [anon_sym_for] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1586), + [anon_sym_impl] = ACTIONS(1586), + [anon_sym_let] = ACTIONS(1586), + [anon_sym_loop] = ACTIONS(1586), + [anon_sym_match] = ACTIONS(1586), + [anon_sym_mod] = ACTIONS(1586), + [anon_sym_pub] = ACTIONS(1586), + [anon_sym_return] = ACTIONS(1586), + [anon_sym_static] = ACTIONS(1586), + [anon_sym_struct] = ACTIONS(1586), + [anon_sym_trait] = ACTIONS(1586), + [anon_sym_type] = ACTIONS(1586), + [anon_sym_union] = ACTIONS(1586), + [anon_sym_unsafe] = ACTIONS(1586), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_while] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_move] = ACTIONS(1586), + [sym_integer_literal] = ACTIONS(1584), + [aux_sym_string_literal_token1] = ACTIONS(1584), + [sym_char_literal] = ACTIONS(1584), + [anon_sym_true] = ACTIONS(1586), + [anon_sym_false] = ACTIONS(1586), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1586), + [sym_super] = ACTIONS(1586), + [sym_crate] = ACTIONS(1586), + [sym_metavariable] = ACTIONS(1584), + [sym_raw_string_literal] = ACTIONS(1584), + [sym_float_literal] = ACTIONS(1584), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1585), - [sym_identifier] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_macro_rules_BANG] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1585), - [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_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_enum] = ACTIONS(1587), - [anon_sym_fn] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_impl] = ACTIONS(1587), - [anon_sym_let] = ACTIONS(1587), - [anon_sym_loop] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_pub] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_struct] = ACTIONS(1587), - [anon_sym_trait] = ACTIONS(1587), - [anon_sym_type] = ACTIONS(1587), - [anon_sym_union] = ACTIONS(1587), - [anon_sym_unsafe] = ACTIONS(1587), - [anon_sym_use] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_COLON_COLON] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_move] = ACTIONS(1587), - [sym_integer_literal] = ACTIONS(1585), - [aux_sym_string_literal_token1] = ACTIONS(1585), - [sym_char_literal] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1587), - [sym_super] = ACTIONS(1587), - [sym_crate] = ACTIONS(1587), - [sym_metavariable] = ACTIONS(1585), - [sym_raw_string_literal] = ACTIONS(1585), - [sym_float_literal] = ACTIONS(1585), + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_macro_rules_BANG] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_u8] = ACTIONS(1590), + [anon_sym_i8] = ACTIONS(1590), + [anon_sym_u16] = ACTIONS(1590), + [anon_sym_i16] = ACTIONS(1590), + [anon_sym_u32] = ACTIONS(1590), + [anon_sym_i32] = ACTIONS(1590), + [anon_sym_u64] = ACTIONS(1590), + [anon_sym_i64] = ACTIONS(1590), + [anon_sym_u128] = ACTIONS(1590), + [anon_sym_i128] = ACTIONS(1590), + [anon_sym_isize] = ACTIONS(1590), + [anon_sym_usize] = ACTIONS(1590), + [anon_sym_f32] = ACTIONS(1590), + [anon_sym_f64] = ACTIONS(1590), + [anon_sym_bool] = ACTIONS(1590), + [anon_sym_str] = ACTIONS(1590), + [anon_sym_char] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_async] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_const] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_enum] = ACTIONS(1590), + [anon_sym_fn] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_impl] = ACTIONS(1590), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_loop] = ACTIONS(1590), + [anon_sym_match] = ACTIONS(1590), + [anon_sym_mod] = ACTIONS(1590), + [anon_sym_pub] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_struct] = ACTIONS(1590), + [anon_sym_trait] = ACTIONS(1590), + [anon_sym_type] = ACTIONS(1590), + [anon_sym_union] = ACTIONS(1590), + [anon_sym_unsafe] = ACTIONS(1590), + [anon_sym_use] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_extern] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_move] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(1588), + [aux_sym_string_literal_token1] = ACTIONS(1588), + [sym_char_literal] = ACTIONS(1588), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1590), + [sym_super] = ACTIONS(1590), + [sym_crate] = ACTIONS(1590), + [sym_metavariable] = ACTIONS(1588), + [sym_raw_string_literal] = ACTIONS(1588), + [sym_float_literal] = ACTIONS(1588), [sym_block_comment] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1589), - [sym_identifier] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_macro_rules_BANG] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1589), - [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_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_enum] = ACTIONS(1591), - [anon_sym_fn] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_impl] = ACTIONS(1591), - [anon_sym_let] = ACTIONS(1591), - [anon_sym_loop] = ACTIONS(1591), - [anon_sym_match] = ACTIONS(1591), - [anon_sym_mod] = ACTIONS(1591), - [anon_sym_pub] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1591), - [anon_sym_static] = ACTIONS(1591), - [anon_sym_struct] = ACTIONS(1591), - [anon_sym_trait] = ACTIONS(1591), - [anon_sym_type] = ACTIONS(1591), - [anon_sym_union] = ACTIONS(1591), - [anon_sym_unsafe] = ACTIONS(1591), - [anon_sym_use] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1591), - [anon_sym_POUND] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_move] = ACTIONS(1591), - [sym_integer_literal] = ACTIONS(1589), - [aux_sym_string_literal_token1] = ACTIONS(1589), - [sym_char_literal] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1591), - [sym_super] = ACTIONS(1591), - [sym_crate] = ACTIONS(1591), - [sym_metavariable] = ACTIONS(1589), - [sym_raw_string_literal] = ACTIONS(1589), - [sym_float_literal] = ACTIONS(1589), + [ts_builtin_sym_end] = ACTIONS(1592), + [sym_identifier] = ACTIONS(1594), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_macro_rules_BANG] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_u8] = ACTIONS(1594), + [anon_sym_i8] = ACTIONS(1594), + [anon_sym_u16] = ACTIONS(1594), + [anon_sym_i16] = ACTIONS(1594), + [anon_sym_u32] = ACTIONS(1594), + [anon_sym_i32] = ACTIONS(1594), + [anon_sym_u64] = ACTIONS(1594), + [anon_sym_i64] = ACTIONS(1594), + [anon_sym_u128] = ACTIONS(1594), + [anon_sym_i128] = ACTIONS(1594), + [anon_sym_isize] = ACTIONS(1594), + [anon_sym_usize] = ACTIONS(1594), + [anon_sym_f32] = ACTIONS(1594), + [anon_sym_f64] = ACTIONS(1594), + [anon_sym_bool] = ACTIONS(1594), + [anon_sym_str] = ACTIONS(1594), + [anon_sym_char] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1594), + [anon_sym_break] = ACTIONS(1594), + [anon_sym_const] = ACTIONS(1594), + [anon_sym_continue] = ACTIONS(1594), + [anon_sym_default] = ACTIONS(1594), + [anon_sym_enum] = ACTIONS(1594), + [anon_sym_fn] = ACTIONS(1594), + [anon_sym_for] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1594), + [anon_sym_impl] = ACTIONS(1594), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_loop] = ACTIONS(1594), + [anon_sym_match] = ACTIONS(1594), + [anon_sym_mod] = ACTIONS(1594), + [anon_sym_pub] = ACTIONS(1594), + [anon_sym_return] = ACTIONS(1594), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_struct] = ACTIONS(1594), + [anon_sym_trait] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_union] = ACTIONS(1594), + [anon_sym_unsafe] = ACTIONS(1594), + [anon_sym_use] = ACTIONS(1594), + [anon_sym_while] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_extern] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_DOT_DOT] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_move] = ACTIONS(1594), + [sym_integer_literal] = ACTIONS(1592), + [aux_sym_string_literal_token1] = ACTIONS(1592), + [sym_char_literal] = ACTIONS(1592), + [anon_sym_true] = ACTIONS(1594), + [anon_sym_false] = ACTIONS(1594), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1594), + [sym_super] = ACTIONS(1594), + [sym_crate] = ACTIONS(1594), + [sym_metavariable] = ACTIONS(1592), + [sym_raw_string_literal] = ACTIONS(1592), + [sym_float_literal] = ACTIONS(1592), [sym_block_comment] = ACTIONS(3), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(1593), - [sym_identifier] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1593), - [anon_sym_macro_rules_BANG] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1593), - [anon_sym_RBRACE] = ACTIONS(1593), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_u8] = ACTIONS(1595), - [anon_sym_i8] = ACTIONS(1595), - [anon_sym_u16] = ACTIONS(1595), - [anon_sym_i16] = ACTIONS(1595), - [anon_sym_u32] = ACTIONS(1595), - [anon_sym_i32] = ACTIONS(1595), - [anon_sym_u64] = ACTIONS(1595), - [anon_sym_i64] = ACTIONS(1595), - [anon_sym_u128] = ACTIONS(1595), - [anon_sym_i128] = ACTIONS(1595), - [anon_sym_isize] = ACTIONS(1595), - [anon_sym_usize] = ACTIONS(1595), - [anon_sym_f32] = ACTIONS(1595), - [anon_sym_f64] = ACTIONS(1595), - [anon_sym_bool] = ACTIONS(1595), - [anon_sym_str] = ACTIONS(1595), - [anon_sym_char] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_async] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1595), - [anon_sym_const] = ACTIONS(1595), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_default] = ACTIONS(1595), - [anon_sym_enum] = ACTIONS(1595), - [anon_sym_fn] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1595), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_impl] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_loop] = ACTIONS(1595), - [anon_sym_match] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1595), - [anon_sym_pub] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_struct] = ACTIONS(1595), - [anon_sym_trait] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_union] = ACTIONS(1595), - [anon_sym_unsafe] = ACTIONS(1595), - [anon_sym_use] = ACTIONS(1595), - [anon_sym_while] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1595), - [anon_sym_LT] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PIPE] = ACTIONS(1593), - [anon_sym_move] = ACTIONS(1595), - [sym_integer_literal] = ACTIONS(1593), - [aux_sym_string_literal_token1] = ACTIONS(1593), - [sym_char_literal] = ACTIONS(1593), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1595), - [sym_super] = ACTIONS(1595), - [sym_crate] = ACTIONS(1595), - [sym_metavariable] = ACTIONS(1593), - [sym_raw_string_literal] = ACTIONS(1593), - [sym_float_literal] = ACTIONS(1593), + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_macro_rules_BANG] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_u8] = ACTIONS(1598), + [anon_sym_i8] = ACTIONS(1598), + [anon_sym_u16] = ACTIONS(1598), + [anon_sym_i16] = ACTIONS(1598), + [anon_sym_u32] = ACTIONS(1598), + [anon_sym_i32] = ACTIONS(1598), + [anon_sym_u64] = ACTIONS(1598), + [anon_sym_i64] = ACTIONS(1598), + [anon_sym_u128] = ACTIONS(1598), + [anon_sym_i128] = ACTIONS(1598), + [anon_sym_isize] = ACTIONS(1598), + [anon_sym_usize] = ACTIONS(1598), + [anon_sym_f32] = ACTIONS(1598), + [anon_sym_f64] = ACTIONS(1598), + [anon_sym_bool] = ACTIONS(1598), + [anon_sym_str] = ACTIONS(1598), + [anon_sym_char] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1598), + [anon_sym_async] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_const] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_enum] = ACTIONS(1598), + [anon_sym_fn] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_impl] = ACTIONS(1598), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_loop] = ACTIONS(1598), + [anon_sym_match] = ACTIONS(1598), + [anon_sym_mod] = ACTIONS(1598), + [anon_sym_pub] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_struct] = ACTIONS(1598), + [anon_sym_trait] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_union] = ACTIONS(1598), + [anon_sym_unsafe] = ACTIONS(1598), + [anon_sym_use] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_extern] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_COLON_COLON] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_move] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(1596), + [aux_sym_string_literal_token1] = ACTIONS(1596), + [sym_char_literal] = ACTIONS(1596), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1598), + [sym_super] = ACTIONS(1598), + [sym_crate] = ACTIONS(1598), + [sym_metavariable] = ACTIONS(1596), + [sym_raw_string_literal] = ACTIONS(1596), + [sym_float_literal] = ACTIONS(1596), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1597), - [sym_identifier] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_macro_rules_BANG] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_u8] = ACTIONS(1599), - [anon_sym_i8] = ACTIONS(1599), - [anon_sym_u16] = ACTIONS(1599), - [anon_sym_i16] = ACTIONS(1599), - [anon_sym_u32] = ACTIONS(1599), - [anon_sym_i32] = ACTIONS(1599), - [anon_sym_u64] = ACTIONS(1599), - [anon_sym_i64] = ACTIONS(1599), - [anon_sym_u128] = ACTIONS(1599), - [anon_sym_i128] = ACTIONS(1599), - [anon_sym_isize] = ACTIONS(1599), - [anon_sym_usize] = ACTIONS(1599), - [anon_sym_f32] = ACTIONS(1599), - [anon_sym_f64] = ACTIONS(1599), - [anon_sym_bool] = ACTIONS(1599), - [anon_sym_str] = ACTIONS(1599), - [anon_sym_char] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_default] = ACTIONS(1599), - [anon_sym_enum] = ACTIONS(1599), - [anon_sym_fn] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_impl] = ACTIONS(1599), - [anon_sym_let] = ACTIONS(1599), - [anon_sym_loop] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_mod] = ACTIONS(1599), - [anon_sym_pub] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_struct] = ACTIONS(1599), - [anon_sym_trait] = ACTIONS(1599), - [anon_sym_type] = ACTIONS(1599), - [anon_sym_union] = ACTIONS(1599), - [anon_sym_unsafe] = ACTIONS(1599), - [anon_sym_use] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_POUND] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_extern] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1597), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_move] = ACTIONS(1599), - [sym_integer_literal] = ACTIONS(1597), - [aux_sym_string_literal_token1] = ACTIONS(1597), - [sym_char_literal] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(1599), - [anon_sym_false] = ACTIONS(1599), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1599), - [sym_super] = ACTIONS(1599), - [sym_crate] = ACTIONS(1599), - [sym_metavariable] = ACTIONS(1597), - [sym_raw_string_literal] = ACTIONS(1597), - [sym_float_literal] = ACTIONS(1597), + [ts_builtin_sym_end] = ACTIONS(1600), + [sym_identifier] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_macro_rules_BANG] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_u8] = ACTIONS(1602), + [anon_sym_i8] = ACTIONS(1602), + [anon_sym_u16] = ACTIONS(1602), + [anon_sym_i16] = ACTIONS(1602), + [anon_sym_u32] = ACTIONS(1602), + [anon_sym_i32] = ACTIONS(1602), + [anon_sym_u64] = ACTIONS(1602), + [anon_sym_i64] = ACTIONS(1602), + [anon_sym_u128] = ACTIONS(1602), + [anon_sym_i128] = ACTIONS(1602), + [anon_sym_isize] = ACTIONS(1602), + [anon_sym_usize] = ACTIONS(1602), + [anon_sym_f32] = ACTIONS(1602), + [anon_sym_f64] = ACTIONS(1602), + [anon_sym_bool] = ACTIONS(1602), + [anon_sym_str] = ACTIONS(1602), + [anon_sym_char] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1602), + [anon_sym_async] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1602), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1602), + [anon_sym_enum] = ACTIONS(1602), + [anon_sym_fn] = ACTIONS(1602), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_impl] = ACTIONS(1602), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_loop] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1602), + [anon_sym_mod] = ACTIONS(1602), + [anon_sym_pub] = ACTIONS(1602), + [anon_sym_return] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_struct] = ACTIONS(1602), + [anon_sym_trait] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_union] = ACTIONS(1602), + [anon_sym_unsafe] = ACTIONS(1602), + [anon_sym_use] = ACTIONS(1602), + [anon_sym_while] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_extern] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_COLON_COLON] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_DOT_DOT] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_move] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(1600), + [aux_sym_string_literal_token1] = ACTIONS(1600), + [sym_char_literal] = ACTIONS(1600), + [anon_sym_true] = ACTIONS(1602), + [anon_sym_false] = ACTIONS(1602), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1602), + [sym_super] = ACTIONS(1602), + [sym_crate] = ACTIONS(1602), + [sym_metavariable] = ACTIONS(1600), + [sym_raw_string_literal] = ACTIONS(1600), + [sym_float_literal] = ACTIONS(1600), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1601), - [sym_identifier] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_macro_rules_BANG] = ACTIONS(1601), - [anon_sym_LPAREN] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_RBRACE] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1601), - [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_SQUOTE] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(1603), - [anon_sym_continue] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1603), - [anon_sym_enum] = ACTIONS(1603), - [anon_sym_fn] = ACTIONS(1603), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1603), - [anon_sym_impl] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_loop] = ACTIONS(1603), - [anon_sym_match] = ACTIONS(1603), - [anon_sym_mod] = ACTIONS(1603), - [anon_sym_pub] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1603), - [anon_sym_struct] = ACTIONS(1603), - [anon_sym_trait] = ACTIONS(1603), - [anon_sym_type] = ACTIONS(1603), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1603), - [anon_sym_use] = ACTIONS(1603), - [anon_sym_while] = ACTIONS(1603), - [anon_sym_POUND] = ACTIONS(1601), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_extern] = ACTIONS(1603), - [anon_sym_LT] = ACTIONS(1601), - [anon_sym_COLON_COLON] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1601), - [anon_sym_DOT_DOT] = ACTIONS(1601), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_PIPE] = ACTIONS(1601), - [anon_sym_move] = ACTIONS(1603), - [sym_integer_literal] = ACTIONS(1601), - [aux_sym_string_literal_token1] = ACTIONS(1601), - [sym_char_literal] = ACTIONS(1601), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1603), - [sym_super] = ACTIONS(1603), - [sym_crate] = ACTIONS(1603), - [sym_metavariable] = ACTIONS(1601), - [sym_raw_string_literal] = ACTIONS(1601), - [sym_float_literal] = ACTIONS(1601), + [sym__token_pattern] = STATE(345), + [sym_token_tree_pattern] = STATE(345), + [sym_token_binding_pattern] = STATE(345), + [sym_token_repetition_pattern] = STATE(345), + [sym__literal] = STATE(345), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(345), + [sym_identifier] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1604), + [anon_sym_i8] = ACTIONS(1604), + [anon_sym_u16] = ACTIONS(1604), + [anon_sym_i16] = ACTIONS(1604), + [anon_sym_u32] = ACTIONS(1604), + [anon_sym_i32] = ACTIONS(1604), + [anon_sym_u64] = ACTIONS(1604), + [anon_sym_i64] = ACTIONS(1604), + [anon_sym_u128] = ACTIONS(1604), + [anon_sym_i128] = ACTIONS(1604), + [anon_sym_isize] = ACTIONS(1604), + [anon_sym_usize] = ACTIONS(1604), + [anon_sym_f32] = ACTIONS(1604), + [anon_sym_f64] = ACTIONS(1604), + [anon_sym_bool] = ACTIONS(1604), + [anon_sym_str] = ACTIONS(1604), + [anon_sym_char] = ACTIONS(1604), + [aux_sym__non_special_token_token1] = ACTIONS(1604), + [anon_sym_SQUOTE] = ACTIONS(1604), + [anon_sym_as] = ACTIONS(1604), + [anon_sym_async] = ACTIONS(1604), + [anon_sym_await] = ACTIONS(1604), + [anon_sym_break] = ACTIONS(1604), + [anon_sym_const] = ACTIONS(1604), + [anon_sym_continue] = ACTIONS(1604), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_enum] = ACTIONS(1604), + [anon_sym_fn] = ACTIONS(1604), + [anon_sym_for] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1604), + [anon_sym_impl] = ACTIONS(1604), + [anon_sym_let] = ACTIONS(1604), + [anon_sym_loop] = ACTIONS(1604), + [anon_sym_match] = ACTIONS(1604), + [anon_sym_mod] = ACTIONS(1604), + [anon_sym_pub] = ACTIONS(1604), + [anon_sym_return] = ACTIONS(1604), + [anon_sym_static] = ACTIONS(1604), + [anon_sym_struct] = ACTIONS(1604), + [anon_sym_trait] = ACTIONS(1604), + [anon_sym_type] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_unsafe] = ACTIONS(1604), + [anon_sym_use] = ACTIONS(1604), + [anon_sym_where] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1604), + [sym_mutable_specifier] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1604), + [sym_super] = ACTIONS(1604), + [sym_crate] = ACTIONS(1604), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_macro_rules_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_RBRACE] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_u8] = ACTIONS(1607), - [anon_sym_i8] = ACTIONS(1607), - [anon_sym_u16] = ACTIONS(1607), - [anon_sym_i16] = ACTIONS(1607), - [anon_sym_u32] = ACTIONS(1607), - [anon_sym_i32] = ACTIONS(1607), - [anon_sym_u64] = ACTIONS(1607), - [anon_sym_i64] = ACTIONS(1607), - [anon_sym_u128] = ACTIONS(1607), - [anon_sym_i128] = ACTIONS(1607), - [anon_sym_isize] = ACTIONS(1607), - [anon_sym_usize] = ACTIONS(1607), - [anon_sym_f32] = ACTIONS(1607), - [anon_sym_f64] = ACTIONS(1607), - [anon_sym_bool] = ACTIONS(1607), - [anon_sym_str] = ACTIONS(1607), - [anon_sym_char] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_async] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_default] = ACTIONS(1607), - [anon_sym_enum] = ACTIONS(1607), - [anon_sym_fn] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_impl] = ACTIONS(1607), - [anon_sym_let] = ACTIONS(1607), - [anon_sym_loop] = ACTIONS(1607), - [anon_sym_match] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1607), - [anon_sym_pub] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_struct] = ACTIONS(1607), - [anon_sym_trait] = ACTIONS(1607), - [anon_sym_type] = ACTIONS(1607), - [anon_sym_union] = ACTIONS(1607), - [anon_sym_unsafe] = ACTIONS(1607), - [anon_sym_use] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(1605), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1607), - [anon_sym_LT] = ACTIONS(1605), - [anon_sym_COLON_COLON] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1605), - [anon_sym_move] = ACTIONS(1607), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1605), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1605), - [sym_raw_string_literal] = ACTIONS(1605), - [sym_float_literal] = ACTIONS(1605), + [ts_builtin_sym_end] = ACTIONS(1608), + [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_macro_rules_BANG] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1610), + [anon_sym_i8] = ACTIONS(1610), + [anon_sym_u16] = ACTIONS(1610), + [anon_sym_i16] = ACTIONS(1610), + [anon_sym_u32] = ACTIONS(1610), + [anon_sym_i32] = ACTIONS(1610), + [anon_sym_u64] = ACTIONS(1610), + [anon_sym_i64] = ACTIONS(1610), + [anon_sym_u128] = ACTIONS(1610), + [anon_sym_i128] = ACTIONS(1610), + [anon_sym_isize] = ACTIONS(1610), + [anon_sym_usize] = ACTIONS(1610), + [anon_sym_f32] = ACTIONS(1610), + [anon_sym_f64] = ACTIONS(1610), + [anon_sym_bool] = ACTIONS(1610), + [anon_sym_str] = ACTIONS(1610), + [anon_sym_char] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_break] = ACTIONS(1610), + [anon_sym_const] = ACTIONS(1610), + [anon_sym_continue] = ACTIONS(1610), + [anon_sym_default] = ACTIONS(1610), + [anon_sym_enum] = ACTIONS(1610), + [anon_sym_fn] = ACTIONS(1610), + [anon_sym_for] = ACTIONS(1610), + [anon_sym_if] = ACTIONS(1610), + [anon_sym_impl] = ACTIONS(1610), + [anon_sym_let] = ACTIONS(1610), + [anon_sym_loop] = ACTIONS(1610), + [anon_sym_match] = ACTIONS(1610), + [anon_sym_mod] = ACTIONS(1610), + [anon_sym_pub] = ACTIONS(1610), + [anon_sym_return] = ACTIONS(1610), + [anon_sym_static] = ACTIONS(1610), + [anon_sym_struct] = ACTIONS(1610), + [anon_sym_trait] = ACTIONS(1610), + [anon_sym_type] = ACTIONS(1610), + [anon_sym_union] = ACTIONS(1610), + [anon_sym_unsafe] = ACTIONS(1610), + [anon_sym_use] = ACTIONS(1610), + [anon_sym_while] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_extern] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_COLON_COLON] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_move] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1608), + [aux_sym_string_literal_token1] = ACTIONS(1608), + [sym_char_literal] = ACTIONS(1608), + [anon_sym_true] = ACTIONS(1610), + [anon_sym_false] = ACTIONS(1610), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1610), + [sym_super] = ACTIONS(1610), + [sym_crate] = ACTIONS(1610), + [sym_metavariable] = ACTIONS(1608), + [sym_raw_string_literal] = ACTIONS(1608), + [sym_float_literal] = ACTIONS(1608), [sym_block_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1609), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_macro_rules_BANG] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_u8] = ACTIONS(1611), - [anon_sym_i8] = ACTIONS(1611), - [anon_sym_u16] = ACTIONS(1611), - [anon_sym_i16] = ACTIONS(1611), - [anon_sym_u32] = ACTIONS(1611), - [anon_sym_i32] = ACTIONS(1611), - [anon_sym_u64] = ACTIONS(1611), - [anon_sym_i64] = ACTIONS(1611), - [anon_sym_u128] = ACTIONS(1611), - [anon_sym_i128] = ACTIONS(1611), - [anon_sym_isize] = ACTIONS(1611), - [anon_sym_usize] = ACTIONS(1611), - [anon_sym_f32] = ACTIONS(1611), - [anon_sym_f64] = ACTIONS(1611), - [anon_sym_bool] = ACTIONS(1611), - [anon_sym_str] = ACTIONS(1611), - [anon_sym_char] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_break] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1611), - [anon_sym_continue] = ACTIONS(1611), - [anon_sym_default] = ACTIONS(1611), - [anon_sym_enum] = ACTIONS(1611), - [anon_sym_fn] = ACTIONS(1611), - [anon_sym_for] = ACTIONS(1611), - [anon_sym_if] = ACTIONS(1611), - [anon_sym_impl] = ACTIONS(1611), - [anon_sym_let] = ACTIONS(1611), - [anon_sym_loop] = ACTIONS(1611), - [anon_sym_match] = ACTIONS(1611), - [anon_sym_mod] = ACTIONS(1611), - [anon_sym_pub] = ACTIONS(1611), - [anon_sym_return] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(1611), - [anon_sym_struct] = ACTIONS(1611), - [anon_sym_trait] = ACTIONS(1611), - [anon_sym_type] = ACTIONS(1611), - [anon_sym_union] = ACTIONS(1611), - [anon_sym_unsafe] = ACTIONS(1611), - [anon_sym_use] = ACTIONS(1611), - [anon_sym_while] = ACTIONS(1611), - [anon_sym_POUND] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_extern] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(1609), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_move] = ACTIONS(1611), - [sym_integer_literal] = ACTIONS(1609), - [aux_sym_string_literal_token1] = ACTIONS(1609), - [sym_char_literal] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1611), - [anon_sym_false] = ACTIONS(1611), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1611), - [sym_super] = ACTIONS(1611), - [sym_crate] = ACTIONS(1611), - [sym_metavariable] = ACTIONS(1609), - [sym_raw_string_literal] = ACTIONS(1609), - [sym_float_literal] = ACTIONS(1609), + [ts_builtin_sym_end] = ACTIONS(1612), + [sym_identifier] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_macro_rules_BANG] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1612), + [anon_sym_u8] = ACTIONS(1614), + [anon_sym_i8] = ACTIONS(1614), + [anon_sym_u16] = ACTIONS(1614), + [anon_sym_i16] = ACTIONS(1614), + [anon_sym_u32] = ACTIONS(1614), + [anon_sym_i32] = ACTIONS(1614), + [anon_sym_u64] = ACTIONS(1614), + [anon_sym_i64] = ACTIONS(1614), + [anon_sym_u128] = ACTIONS(1614), + [anon_sym_i128] = ACTIONS(1614), + [anon_sym_isize] = ACTIONS(1614), + [anon_sym_usize] = ACTIONS(1614), + [anon_sym_f32] = ACTIONS(1614), + [anon_sym_f64] = ACTIONS(1614), + [anon_sym_bool] = ACTIONS(1614), + [anon_sym_str] = ACTIONS(1614), + [anon_sym_char] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1614), + [anon_sym_async] = ACTIONS(1614), + [anon_sym_break] = ACTIONS(1614), + [anon_sym_const] = ACTIONS(1614), + [anon_sym_continue] = ACTIONS(1614), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_enum] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1614), + [anon_sym_for] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1614), + [anon_sym_impl] = ACTIONS(1614), + [anon_sym_let] = ACTIONS(1614), + [anon_sym_loop] = ACTIONS(1614), + [anon_sym_match] = ACTIONS(1614), + [anon_sym_mod] = ACTIONS(1614), + [anon_sym_pub] = ACTIONS(1614), + [anon_sym_return] = ACTIONS(1614), + [anon_sym_static] = ACTIONS(1614), + [anon_sym_struct] = ACTIONS(1614), + [anon_sym_trait] = ACTIONS(1614), + [anon_sym_type] = ACTIONS(1614), + [anon_sym_union] = ACTIONS(1614), + [anon_sym_unsafe] = ACTIONS(1614), + [anon_sym_use] = ACTIONS(1614), + [anon_sym_while] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_extern] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_COLON_COLON] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_DOT_DOT] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_move] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1612), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1614), + [sym_super] = ACTIONS(1614), + [sym_crate] = ACTIONS(1614), + [sym_metavariable] = ACTIONS(1612), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), [sym_block_comment] = ACTIONS(3), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1613), - [sym_identifier] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_macro_rules_BANG] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_RBRACE] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1613), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_u8] = ACTIONS(1615), - [anon_sym_i8] = ACTIONS(1615), - [anon_sym_u16] = ACTIONS(1615), - [anon_sym_i16] = ACTIONS(1615), - [anon_sym_u32] = ACTIONS(1615), - [anon_sym_i32] = ACTIONS(1615), - [anon_sym_u64] = ACTIONS(1615), - [anon_sym_i64] = ACTIONS(1615), - [anon_sym_u128] = ACTIONS(1615), - [anon_sym_i128] = ACTIONS(1615), - [anon_sym_isize] = ACTIONS(1615), - [anon_sym_usize] = ACTIONS(1615), - [anon_sym_f32] = ACTIONS(1615), - [anon_sym_f64] = ACTIONS(1615), - [anon_sym_bool] = ACTIONS(1615), - [anon_sym_str] = ACTIONS(1615), - [anon_sym_char] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1615), - [anon_sym_async] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_default] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1615), - [anon_sym_fn] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1615), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_loop] = ACTIONS(1615), - [anon_sym_match] = ACTIONS(1615), - [anon_sym_mod] = ACTIONS(1615), - [anon_sym_pub] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_struct] = ACTIONS(1615), - [anon_sym_trait] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1615), - [anon_sym_use] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(1613), - [anon_sym_extern] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(1613), - [anon_sym_COLON_COLON] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(1613), - [anon_sym_DOT_DOT] = ACTIONS(1613), - [anon_sym_DASH] = ACTIONS(1613), - [anon_sym_PIPE] = ACTIONS(1613), - [anon_sym_move] = ACTIONS(1615), - [sym_integer_literal] = ACTIONS(1613), - [aux_sym_string_literal_token1] = ACTIONS(1613), - [sym_char_literal] = ACTIONS(1613), - [anon_sym_true] = ACTIONS(1615), - [anon_sym_false] = ACTIONS(1615), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1615), - [sym_super] = ACTIONS(1615), - [sym_crate] = ACTIONS(1615), - [sym_metavariable] = ACTIONS(1613), - [sym_raw_string_literal] = ACTIONS(1613), - [sym_float_literal] = ACTIONS(1613), + [sym__token_pattern] = STATE(349), + [sym_token_tree_pattern] = STATE(349), + [sym_token_binding_pattern] = STATE(349), + [sym_token_repetition_pattern] = STATE(349), + [sym__literal] = STATE(349), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1616), + [anon_sym_i8] = ACTIONS(1616), + [anon_sym_u16] = ACTIONS(1616), + [anon_sym_i16] = ACTIONS(1616), + [anon_sym_u32] = ACTIONS(1616), + [anon_sym_i32] = ACTIONS(1616), + [anon_sym_u64] = ACTIONS(1616), + [anon_sym_i64] = ACTIONS(1616), + [anon_sym_u128] = ACTIONS(1616), + [anon_sym_i128] = ACTIONS(1616), + [anon_sym_isize] = ACTIONS(1616), + [anon_sym_usize] = ACTIONS(1616), + [anon_sym_f32] = ACTIONS(1616), + [anon_sym_f64] = ACTIONS(1616), + [anon_sym_bool] = ACTIONS(1616), + [anon_sym_str] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1616), + [aux_sym__non_special_token_token1] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1616), + [anon_sym_await] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_const] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_default] = ACTIONS(1616), + [anon_sym_enum] = ACTIONS(1616), + [anon_sym_fn] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_impl] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1616), + [anon_sym_loop] = ACTIONS(1616), + [anon_sym_match] = ACTIONS(1616), + [anon_sym_mod] = ACTIONS(1616), + [anon_sym_pub] = ACTIONS(1616), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_static] = ACTIONS(1616), + [anon_sym_struct] = ACTIONS(1616), + [anon_sym_trait] = ACTIONS(1616), + [anon_sym_type] = ACTIONS(1616), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1616), + [anon_sym_use] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [sym_mutable_specifier] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1616), + [sym_super] = ACTIONS(1616), + [sym_crate] = ACTIONS(1616), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1617), - [sym_identifier] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_macro_rules_BANG] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_RBRACE] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_u8] = ACTIONS(1619), - [anon_sym_i8] = ACTIONS(1619), - [anon_sym_u16] = ACTIONS(1619), - [anon_sym_i16] = ACTIONS(1619), - [anon_sym_u32] = ACTIONS(1619), - [anon_sym_i32] = ACTIONS(1619), - [anon_sym_u64] = ACTIONS(1619), - [anon_sym_i64] = ACTIONS(1619), - [anon_sym_u128] = ACTIONS(1619), - [anon_sym_i128] = ACTIONS(1619), - [anon_sym_isize] = ACTIONS(1619), - [anon_sym_usize] = ACTIONS(1619), - [anon_sym_f32] = ACTIONS(1619), - [anon_sym_f64] = ACTIONS(1619), - [anon_sym_bool] = ACTIONS(1619), - [anon_sym_str] = ACTIONS(1619), - [anon_sym_char] = ACTIONS(1619), - [anon_sym_SQUOTE] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(1619), - [anon_sym_break] = ACTIONS(1619), - [anon_sym_const] = ACTIONS(1619), - [anon_sym_continue] = ACTIONS(1619), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_enum] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1619), - [anon_sym_for] = ACTIONS(1619), - [anon_sym_if] = ACTIONS(1619), - [anon_sym_impl] = ACTIONS(1619), - [anon_sym_let] = ACTIONS(1619), - [anon_sym_loop] = ACTIONS(1619), - [anon_sym_match] = ACTIONS(1619), - [anon_sym_mod] = ACTIONS(1619), - [anon_sym_pub] = ACTIONS(1619), - [anon_sym_return] = ACTIONS(1619), - [anon_sym_static] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1619), - [anon_sym_trait] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(1619), - [anon_sym_union] = ACTIONS(1619), - [anon_sym_unsafe] = ACTIONS(1619), - [anon_sym_use] = ACTIONS(1619), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_POUND] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_extern] = ACTIONS(1619), - [anon_sym_LT] = ACTIONS(1617), - [anon_sym_COLON_COLON] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_DOT_DOT] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_move] = ACTIONS(1619), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1617), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1619), - [anon_sym_false] = ACTIONS(1619), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1617), - [sym_raw_string_literal] = ACTIONS(1617), - [sym_float_literal] = ACTIONS(1617), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(351), + [sym_token_binding_pattern] = STATE(351), + [sym_token_repetition_pattern] = STATE(351), + [sym__literal] = STATE(351), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(351), + [sym_identifier] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1606), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1618), + [anon_sym_i8] = ACTIONS(1618), + [anon_sym_u16] = ACTIONS(1618), + [anon_sym_i16] = ACTIONS(1618), + [anon_sym_u32] = ACTIONS(1618), + [anon_sym_i32] = ACTIONS(1618), + [anon_sym_u64] = ACTIONS(1618), + [anon_sym_i64] = ACTIONS(1618), + [anon_sym_u128] = ACTIONS(1618), + [anon_sym_i128] = ACTIONS(1618), + [anon_sym_isize] = ACTIONS(1618), + [anon_sym_usize] = ACTIONS(1618), + [anon_sym_f32] = ACTIONS(1618), + [anon_sym_f64] = ACTIONS(1618), + [anon_sym_bool] = ACTIONS(1618), + [anon_sym_str] = ACTIONS(1618), + [anon_sym_char] = ACTIONS(1618), + [aux_sym__non_special_token_token1] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_as] = ACTIONS(1618), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_await] = ACTIONS(1618), + [anon_sym_break] = ACTIONS(1618), + [anon_sym_const] = ACTIONS(1618), + [anon_sym_continue] = ACTIONS(1618), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_enum] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1618), + [anon_sym_for] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1618), + [anon_sym_impl] = ACTIONS(1618), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_loop] = ACTIONS(1618), + [anon_sym_match] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1618), + [anon_sym_pub] = ACTIONS(1618), + [anon_sym_return] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1618), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_trait] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1618), + [anon_sym_unsafe] = ACTIONS(1618), + [anon_sym_use] = ACTIONS(1618), + [anon_sym_where] = ACTIONS(1618), + [anon_sym_while] = ACTIONS(1618), + [sym_mutable_specifier] = ACTIONS(1618), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1621), - [sym_identifier] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_macro_rules_BANG] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_LBRACK] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(1623), - [anon_sym_break] = ACTIONS(1623), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_continue] = ACTIONS(1623), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_enum] = ACTIONS(1623), - [anon_sym_fn] = ACTIONS(1623), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1623), - [anon_sym_let] = ACTIONS(1623), - [anon_sym_loop] = ACTIONS(1623), - [anon_sym_match] = ACTIONS(1623), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_pub] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1623), - [anon_sym_static] = ACTIONS(1623), - [anon_sym_struct] = ACTIONS(1623), - [anon_sym_trait] = ACTIONS(1623), - [anon_sym_type] = ACTIONS(1623), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1623), - [anon_sym_use] = ACTIONS(1623), - [anon_sym_while] = ACTIONS(1623), - [anon_sym_POUND] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_extern] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_COLON_COLON] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_move] = ACTIONS(1623), - [sym_integer_literal] = ACTIONS(1621), - [aux_sym_string_literal_token1] = ACTIONS(1621), - [sym_char_literal] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1623), - [sym_super] = ACTIONS(1623), - [sym_crate] = ACTIONS(1623), - [sym_metavariable] = ACTIONS(1621), - [sym_raw_string_literal] = ACTIONS(1621), - [sym_float_literal] = ACTIONS(1621), + [ts_builtin_sym_end] = ACTIONS(1620), + [sym_identifier] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_macro_rules_BANG] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_u8] = ACTIONS(1622), + [anon_sym_i8] = ACTIONS(1622), + [anon_sym_u16] = ACTIONS(1622), + [anon_sym_i16] = ACTIONS(1622), + [anon_sym_u32] = ACTIONS(1622), + [anon_sym_i32] = ACTIONS(1622), + [anon_sym_u64] = ACTIONS(1622), + [anon_sym_i64] = ACTIONS(1622), + [anon_sym_u128] = ACTIONS(1622), + [anon_sym_i128] = ACTIONS(1622), + [anon_sym_isize] = ACTIONS(1622), + [anon_sym_usize] = ACTIONS(1622), + [anon_sym_f32] = ACTIONS(1622), + [anon_sym_f64] = ACTIONS(1622), + [anon_sym_bool] = ACTIONS(1622), + [anon_sym_str] = ACTIONS(1622), + [anon_sym_char] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_async] = ACTIONS(1622), + [anon_sym_break] = ACTIONS(1622), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_continue] = ACTIONS(1622), + [anon_sym_default] = ACTIONS(1622), + [anon_sym_enum] = ACTIONS(1622), + [anon_sym_fn] = ACTIONS(1622), + [anon_sym_for] = ACTIONS(1622), + [anon_sym_if] = ACTIONS(1622), + [anon_sym_impl] = ACTIONS(1622), + [anon_sym_let] = ACTIONS(1622), + [anon_sym_loop] = ACTIONS(1622), + [anon_sym_match] = ACTIONS(1622), + [anon_sym_mod] = ACTIONS(1622), + [anon_sym_pub] = ACTIONS(1622), + [anon_sym_return] = ACTIONS(1622), + [anon_sym_static] = ACTIONS(1622), + [anon_sym_struct] = ACTIONS(1622), + [anon_sym_trait] = ACTIONS(1622), + [anon_sym_type] = ACTIONS(1622), + [anon_sym_union] = ACTIONS(1622), + [anon_sym_unsafe] = ACTIONS(1622), + [anon_sym_use] = ACTIONS(1622), + [anon_sym_while] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_extern] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_COLON_COLON] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_move] = ACTIONS(1622), + [sym_integer_literal] = ACTIONS(1620), + [aux_sym_string_literal_token1] = ACTIONS(1620), + [sym_char_literal] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1622), + [anon_sym_false] = ACTIONS(1622), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1622), + [sym_super] = ACTIONS(1622), + [sym_crate] = ACTIONS(1622), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1620), + [sym_float_literal] = ACTIONS(1620), [sym_block_comment] = ACTIONS(3), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(1625), - [sym_identifier] = ACTIONS(1627), - [anon_sym_SEMI] = ACTIONS(1625), - [anon_sym_macro_rules_BANG] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1625), - [anon_sym_RBRACE] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_u8] = ACTIONS(1627), - [anon_sym_i8] = ACTIONS(1627), - [anon_sym_u16] = ACTIONS(1627), - [anon_sym_i16] = ACTIONS(1627), - [anon_sym_u32] = ACTIONS(1627), - [anon_sym_i32] = ACTIONS(1627), - [anon_sym_u64] = ACTIONS(1627), - [anon_sym_i64] = ACTIONS(1627), - [anon_sym_u128] = ACTIONS(1627), - [anon_sym_i128] = ACTIONS(1627), - [anon_sym_isize] = ACTIONS(1627), - [anon_sym_usize] = ACTIONS(1627), - [anon_sym_f32] = ACTIONS(1627), - [anon_sym_f64] = ACTIONS(1627), - [anon_sym_bool] = ACTIONS(1627), - [anon_sym_str] = ACTIONS(1627), - [anon_sym_char] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_async] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1627), - [anon_sym_const] = ACTIONS(1627), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_default] = ACTIONS(1627), - [anon_sym_enum] = ACTIONS(1627), - [anon_sym_fn] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1627), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_impl] = ACTIONS(1627), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_loop] = ACTIONS(1627), - [anon_sym_match] = ACTIONS(1627), - [anon_sym_mod] = ACTIONS(1627), - [anon_sym_pub] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_struct] = ACTIONS(1627), - [anon_sym_trait] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_union] = ACTIONS(1627), - [anon_sym_unsafe] = ACTIONS(1627), - [anon_sym_use] = ACTIONS(1627), - [anon_sym_while] = ACTIONS(1627), - [anon_sym_POUND] = ACTIONS(1625), - [anon_sym_BANG] = ACTIONS(1625), - [anon_sym_extern] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_COLON_COLON] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_DOT_DOT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_move] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1625), - [aux_sym_string_literal_token1] = ACTIONS(1625), - [sym_char_literal] = ACTIONS(1625), - [anon_sym_true] = ACTIONS(1627), - [anon_sym_false] = ACTIONS(1627), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1627), - [sym_super] = ACTIONS(1627), - [sym_crate] = ACTIONS(1627), - [sym_metavariable] = ACTIONS(1625), - [sym_raw_string_literal] = ACTIONS(1625), - [sym_float_literal] = ACTIONS(1625), + [ts_builtin_sym_end] = ACTIONS(1624), + [sym_identifier] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_macro_rules_BANG] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_u8] = ACTIONS(1626), + [anon_sym_i8] = ACTIONS(1626), + [anon_sym_u16] = ACTIONS(1626), + [anon_sym_i16] = ACTIONS(1626), + [anon_sym_u32] = ACTIONS(1626), + [anon_sym_i32] = ACTIONS(1626), + [anon_sym_u64] = ACTIONS(1626), + [anon_sym_i64] = ACTIONS(1626), + [anon_sym_u128] = ACTIONS(1626), + [anon_sym_i128] = ACTIONS(1626), + [anon_sym_isize] = ACTIONS(1626), + [anon_sym_usize] = ACTIONS(1626), + [anon_sym_f32] = ACTIONS(1626), + [anon_sym_f64] = ACTIONS(1626), + [anon_sym_bool] = ACTIONS(1626), + [anon_sym_str] = ACTIONS(1626), + [anon_sym_char] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_const] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [anon_sym_default] = ACTIONS(1626), + [anon_sym_enum] = ACTIONS(1626), + [anon_sym_fn] = ACTIONS(1626), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_impl] = ACTIONS(1626), + [anon_sym_let] = ACTIONS(1626), + [anon_sym_loop] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_mod] = ACTIONS(1626), + [anon_sym_pub] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1626), + [anon_sym_static] = ACTIONS(1626), + [anon_sym_struct] = ACTIONS(1626), + [anon_sym_trait] = ACTIONS(1626), + [anon_sym_type] = ACTIONS(1626), + [anon_sym_union] = ACTIONS(1626), + [anon_sym_unsafe] = ACTIONS(1626), + [anon_sym_use] = ACTIONS(1626), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1624), + [anon_sym_extern] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1624), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1624), + [anon_sym_DOT_DOT] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_PIPE] = ACTIONS(1624), + [anon_sym_move] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(1624), + [aux_sym_string_literal_token1] = ACTIONS(1624), + [sym_char_literal] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1626), + [sym_super] = ACTIONS(1626), + [sym_crate] = ACTIONS(1626), + [sym_metavariable] = ACTIONS(1624), + [sym_raw_string_literal] = ACTIONS(1624), + [sym_float_literal] = ACTIONS(1624), [sym_block_comment] = ACTIONS(3), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1629), - [sym_identifier] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_macro_rules_BANG] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1629), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1629), - [anon_sym_u8] = ACTIONS(1631), - [anon_sym_i8] = ACTIONS(1631), - [anon_sym_u16] = ACTIONS(1631), - [anon_sym_i16] = ACTIONS(1631), - [anon_sym_u32] = ACTIONS(1631), - [anon_sym_i32] = ACTIONS(1631), - [anon_sym_u64] = ACTIONS(1631), - [anon_sym_i64] = ACTIONS(1631), - [anon_sym_u128] = ACTIONS(1631), - [anon_sym_i128] = ACTIONS(1631), - [anon_sym_isize] = ACTIONS(1631), - [anon_sym_usize] = ACTIONS(1631), - [anon_sym_f32] = ACTIONS(1631), - [anon_sym_f64] = ACTIONS(1631), - [anon_sym_bool] = ACTIONS(1631), - [anon_sym_str] = ACTIONS(1631), - [anon_sym_char] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_default] = ACTIONS(1631), - [anon_sym_enum] = ACTIONS(1631), - [anon_sym_fn] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_impl] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_mod] = ACTIONS(1631), - [anon_sym_pub] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_static] = ACTIONS(1631), - [anon_sym_struct] = ACTIONS(1631), - [anon_sym_trait] = ACTIONS(1631), - [anon_sym_type] = ACTIONS(1631), - [anon_sym_union] = ACTIONS(1631), - [anon_sym_unsafe] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(1629), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_LT] = ACTIONS(1629), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_AMP] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_move] = ACTIONS(1631), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1629), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1629), - [sym_raw_string_literal] = ACTIONS(1629), - [sym_float_literal] = ACTIONS(1629), + [sym__token_pattern] = STATE(242), + [sym_token_tree_pattern] = STATE(242), + [sym_token_binding_pattern] = STATE(242), + [sym_token_repetition_pattern] = STATE(242), + [sym__literal] = STATE(242), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1534), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1486), + [anon_sym_i8] = ACTIONS(1486), + [anon_sym_u16] = ACTIONS(1486), + [anon_sym_i16] = ACTIONS(1486), + [anon_sym_u32] = ACTIONS(1486), + [anon_sym_i32] = ACTIONS(1486), + [anon_sym_u64] = ACTIONS(1486), + [anon_sym_i64] = ACTIONS(1486), + [anon_sym_u128] = ACTIONS(1486), + [anon_sym_i128] = ACTIONS(1486), + [anon_sym_isize] = ACTIONS(1486), + [anon_sym_usize] = ACTIONS(1486), + [anon_sym_f32] = ACTIONS(1486), + [anon_sym_f64] = ACTIONS(1486), + [anon_sym_bool] = ACTIONS(1486), + [anon_sym_str] = ACTIONS(1486), + [anon_sym_char] = ACTIONS(1486), + [aux_sym__non_special_token_token1] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_as] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_await] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_fn] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_impl] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_loop] = ACTIONS(1486), + [anon_sym_match] = ACTIONS(1486), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_trait] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_unsafe] = ACTIONS(1486), + [anon_sym_use] = ACTIONS(1486), + [anon_sym_where] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [sym_mutable_specifier] = ACTIONS(1486), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_crate] = ACTIONS(1486), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1633), - [sym_identifier] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_macro_rules_BANG] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_u8] = ACTIONS(1635), - [anon_sym_i8] = ACTIONS(1635), - [anon_sym_u16] = ACTIONS(1635), - [anon_sym_i16] = ACTIONS(1635), - [anon_sym_u32] = ACTIONS(1635), - [anon_sym_i32] = ACTIONS(1635), - [anon_sym_u64] = ACTIONS(1635), - [anon_sym_i64] = ACTIONS(1635), - [anon_sym_u128] = ACTIONS(1635), - [anon_sym_i128] = ACTIONS(1635), - [anon_sym_isize] = ACTIONS(1635), - [anon_sym_usize] = ACTIONS(1635), - [anon_sym_f32] = ACTIONS(1635), - [anon_sym_f64] = ACTIONS(1635), - [anon_sym_bool] = ACTIONS(1635), - [anon_sym_str] = ACTIONS(1635), - [anon_sym_char] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1635), - [anon_sym_break] = ACTIONS(1635), - [anon_sym_const] = ACTIONS(1635), - [anon_sym_continue] = ACTIONS(1635), - [anon_sym_default] = ACTIONS(1635), - [anon_sym_enum] = ACTIONS(1635), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1635), - [anon_sym_if] = ACTIONS(1635), - [anon_sym_impl] = ACTIONS(1635), - [anon_sym_let] = ACTIONS(1635), - [anon_sym_loop] = ACTIONS(1635), - [anon_sym_match] = ACTIONS(1635), - [anon_sym_mod] = ACTIONS(1635), - [anon_sym_pub] = ACTIONS(1635), - [anon_sym_return] = ACTIONS(1635), - [anon_sym_static] = ACTIONS(1635), - [anon_sym_struct] = ACTIONS(1635), - [anon_sym_trait] = ACTIONS(1635), - [anon_sym_type] = ACTIONS(1635), - [anon_sym_union] = ACTIONS(1635), - [anon_sym_unsafe] = ACTIONS(1635), - [anon_sym_use] = ACTIONS(1635), - [anon_sym_while] = ACTIONS(1635), - [anon_sym_POUND] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1635), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_COLON_COLON] = ACTIONS(1633), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_move] = ACTIONS(1635), - [sym_integer_literal] = ACTIONS(1633), - [aux_sym_string_literal_token1] = ACTIONS(1633), - [sym_char_literal] = ACTIONS(1633), - [anon_sym_true] = ACTIONS(1635), - [anon_sym_false] = ACTIONS(1635), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1635), - [sym_super] = ACTIONS(1635), - [sym_crate] = ACTIONS(1635), - [sym_metavariable] = ACTIONS(1633), - [sym_raw_string_literal] = ACTIONS(1633), - [sym_float_literal] = ACTIONS(1633), + [ts_builtin_sym_end] = ACTIONS(1628), + [sym_identifier] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_macro_rules_BANG] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_u8] = ACTIONS(1630), + [anon_sym_i8] = ACTIONS(1630), + [anon_sym_u16] = ACTIONS(1630), + [anon_sym_i16] = ACTIONS(1630), + [anon_sym_u32] = ACTIONS(1630), + [anon_sym_i32] = ACTIONS(1630), + [anon_sym_u64] = ACTIONS(1630), + [anon_sym_i64] = ACTIONS(1630), + [anon_sym_u128] = ACTIONS(1630), + [anon_sym_i128] = ACTIONS(1630), + [anon_sym_isize] = ACTIONS(1630), + [anon_sym_usize] = ACTIONS(1630), + [anon_sym_f32] = ACTIONS(1630), + [anon_sym_f64] = ACTIONS(1630), + [anon_sym_bool] = ACTIONS(1630), + [anon_sym_str] = ACTIONS(1630), + [anon_sym_char] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_const] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(1630), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_enum] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1630), + [anon_sym_for] = ACTIONS(1630), + [anon_sym_if] = ACTIONS(1630), + [anon_sym_impl] = ACTIONS(1630), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_loop] = ACTIONS(1630), + [anon_sym_match] = ACTIONS(1630), + [anon_sym_mod] = ACTIONS(1630), + [anon_sym_pub] = ACTIONS(1630), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_struct] = ACTIONS(1630), + [anon_sym_trait] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_unsafe] = ACTIONS(1630), + [anon_sym_use] = ACTIONS(1630), + [anon_sym_while] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_move] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(1628), + [aux_sym_string_literal_token1] = ACTIONS(1628), + [sym_char_literal] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1630), + [anon_sym_false] = ACTIONS(1630), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1630), + [sym_super] = ACTIONS(1630), + [sym_crate] = ACTIONS(1630), + [sym_metavariable] = ACTIONS(1628), + [sym_raw_string_literal] = ACTIONS(1628), + [sym_float_literal] = ACTIONS(1628), [sym_block_comment] = ACTIONS(3), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1637), - [sym_identifier] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_macro_rules_BANG] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1637), - [anon_sym_LBRACK] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_u8] = ACTIONS(1639), - [anon_sym_i8] = ACTIONS(1639), - [anon_sym_u16] = ACTIONS(1639), - [anon_sym_i16] = ACTIONS(1639), - [anon_sym_u32] = ACTIONS(1639), - [anon_sym_i32] = ACTIONS(1639), - [anon_sym_u64] = ACTIONS(1639), - [anon_sym_i64] = ACTIONS(1639), - [anon_sym_u128] = ACTIONS(1639), - [anon_sym_i128] = ACTIONS(1639), - [anon_sym_isize] = ACTIONS(1639), - [anon_sym_usize] = ACTIONS(1639), - [anon_sym_f32] = ACTIONS(1639), - [anon_sym_f64] = ACTIONS(1639), - [anon_sym_bool] = ACTIONS(1639), - [anon_sym_str] = ACTIONS(1639), - [anon_sym_char] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_async] = ACTIONS(1639), - [anon_sym_break] = ACTIONS(1639), - [anon_sym_const] = ACTIONS(1639), - [anon_sym_continue] = ACTIONS(1639), - [anon_sym_default] = ACTIONS(1639), - [anon_sym_enum] = ACTIONS(1639), - [anon_sym_fn] = ACTIONS(1639), - [anon_sym_for] = ACTIONS(1639), - [anon_sym_if] = ACTIONS(1639), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_loop] = ACTIONS(1639), - [anon_sym_match] = ACTIONS(1639), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_pub] = ACTIONS(1639), - [anon_sym_return] = ACTIONS(1639), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_struct] = ACTIONS(1639), - [anon_sym_trait] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1639), - [anon_sym_unsafe] = ACTIONS(1639), - [anon_sym_use] = ACTIONS(1639), - [anon_sym_while] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_COLON_COLON] = ACTIONS(1637), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_DOT_DOT] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_move] = ACTIONS(1639), - [sym_integer_literal] = ACTIONS(1637), - [aux_sym_string_literal_token1] = ACTIONS(1637), - [sym_char_literal] = ACTIONS(1637), - [anon_sym_true] = ACTIONS(1639), - [anon_sym_false] = ACTIONS(1639), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1639), - [sym_super] = ACTIONS(1639), - [sym_crate] = ACTIONS(1639), - [sym_metavariable] = ACTIONS(1637), - [sym_raw_string_literal] = ACTIONS(1637), - [sym_float_literal] = ACTIONS(1637), + [ts_builtin_sym_end] = ACTIONS(1632), + [sym_identifier] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1632), + [anon_sym_macro_rules_BANG] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_RBRACE] = ACTIONS(1632), + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_STAR] = ACTIONS(1632), + [anon_sym_u8] = ACTIONS(1634), + [anon_sym_i8] = ACTIONS(1634), + [anon_sym_u16] = ACTIONS(1634), + [anon_sym_i16] = ACTIONS(1634), + [anon_sym_u32] = ACTIONS(1634), + [anon_sym_i32] = ACTIONS(1634), + [anon_sym_u64] = ACTIONS(1634), + [anon_sym_i64] = ACTIONS(1634), + [anon_sym_u128] = ACTIONS(1634), + [anon_sym_i128] = ACTIONS(1634), + [anon_sym_isize] = ACTIONS(1634), + [anon_sym_usize] = ACTIONS(1634), + [anon_sym_f32] = ACTIONS(1634), + [anon_sym_f64] = ACTIONS(1634), + [anon_sym_bool] = ACTIONS(1634), + [anon_sym_str] = ACTIONS(1634), + [anon_sym_char] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_async] = ACTIONS(1634), + [anon_sym_break] = ACTIONS(1634), + [anon_sym_const] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1634), + [anon_sym_enum] = ACTIONS(1634), + [anon_sym_fn] = ACTIONS(1634), + [anon_sym_for] = ACTIONS(1634), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1634), + [anon_sym_let] = ACTIONS(1634), + [anon_sym_loop] = ACTIONS(1634), + [anon_sym_match] = ACTIONS(1634), + [anon_sym_mod] = ACTIONS(1634), + [anon_sym_pub] = ACTIONS(1634), + [anon_sym_return] = ACTIONS(1634), + [anon_sym_static] = ACTIONS(1634), + [anon_sym_struct] = ACTIONS(1634), + [anon_sym_trait] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(1634), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1634), + [anon_sym_use] = ACTIONS(1634), + [anon_sym_while] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1632), + [anon_sym_extern] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1632), + [anon_sym_COLON_COLON] = ACTIONS(1632), + [anon_sym_AMP] = ACTIONS(1632), + [anon_sym_DOT_DOT] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1632), + [anon_sym_PIPE] = ACTIONS(1632), + [anon_sym_move] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1632), + [aux_sym_string_literal_token1] = ACTIONS(1632), + [sym_char_literal] = ACTIONS(1632), + [anon_sym_true] = ACTIONS(1634), + [anon_sym_false] = ACTIONS(1634), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1634), + [sym_super] = ACTIONS(1634), + [sym_crate] = ACTIONS(1634), + [sym_metavariable] = ACTIONS(1632), + [sym_raw_string_literal] = ACTIONS(1632), + [sym_float_literal] = ACTIONS(1632), [sym_block_comment] = ACTIONS(3), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(1641), - [sym_identifier] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_macro_rules_BANG] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_u8] = ACTIONS(1643), - [anon_sym_i8] = ACTIONS(1643), - [anon_sym_u16] = ACTIONS(1643), - [anon_sym_i16] = ACTIONS(1643), - [anon_sym_u32] = ACTIONS(1643), - [anon_sym_i32] = ACTIONS(1643), - [anon_sym_u64] = ACTIONS(1643), - [anon_sym_i64] = ACTIONS(1643), - [anon_sym_u128] = ACTIONS(1643), - [anon_sym_i128] = ACTIONS(1643), - [anon_sym_isize] = ACTIONS(1643), - [anon_sym_usize] = ACTIONS(1643), - [anon_sym_f32] = ACTIONS(1643), - [anon_sym_f64] = ACTIONS(1643), - [anon_sym_bool] = ACTIONS(1643), - [anon_sym_str] = ACTIONS(1643), - [anon_sym_char] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_default] = ACTIONS(1643), - [anon_sym_enum] = ACTIONS(1643), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_impl] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_mod] = ACTIONS(1643), - [anon_sym_pub] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_static] = ACTIONS(1643), - [anon_sym_struct] = ACTIONS(1643), - [anon_sym_trait] = ACTIONS(1643), - [anon_sym_type] = ACTIONS(1643), - [anon_sym_union] = ACTIONS(1643), - [anon_sym_unsafe] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1641), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(1641), - [anon_sym_COLON_COLON] = ACTIONS(1641), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_move] = ACTIONS(1643), - [sym_integer_literal] = ACTIONS(1641), - [aux_sym_string_literal_token1] = ACTIONS(1641), - [sym_char_literal] = ACTIONS(1641), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1643), - [sym_super] = ACTIONS(1643), - [sym_crate] = ACTIONS(1643), - [sym_metavariable] = ACTIONS(1641), - [sym_raw_string_literal] = ACTIONS(1641), - [sym_float_literal] = ACTIONS(1641), + [ts_builtin_sym_end] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_macro_rules_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_u8] = ACTIONS(1638), + [anon_sym_i8] = ACTIONS(1638), + [anon_sym_u16] = ACTIONS(1638), + [anon_sym_i16] = ACTIONS(1638), + [anon_sym_u32] = ACTIONS(1638), + [anon_sym_i32] = ACTIONS(1638), + [anon_sym_u64] = ACTIONS(1638), + [anon_sym_i64] = ACTIONS(1638), + [anon_sym_u128] = ACTIONS(1638), + [anon_sym_i128] = ACTIONS(1638), + [anon_sym_isize] = ACTIONS(1638), + [anon_sym_usize] = ACTIONS(1638), + [anon_sym_f32] = ACTIONS(1638), + [anon_sym_f64] = ACTIONS(1638), + [anon_sym_bool] = ACTIONS(1638), + [anon_sym_str] = ACTIONS(1638), + [anon_sym_char] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [anon_sym_async] = ACTIONS(1638), + [anon_sym_break] = ACTIONS(1638), + [anon_sym_const] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(1638), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_enum] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1638), + [anon_sym_for] = ACTIONS(1638), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_impl] = ACTIONS(1638), + [anon_sym_let] = ACTIONS(1638), + [anon_sym_loop] = ACTIONS(1638), + [anon_sym_match] = ACTIONS(1638), + [anon_sym_mod] = ACTIONS(1638), + [anon_sym_pub] = ACTIONS(1638), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1638), + [anon_sym_struct] = ACTIONS(1638), + [anon_sym_trait] = ACTIONS(1638), + [anon_sym_type] = ACTIONS(1638), + [anon_sym_union] = ACTIONS(1638), + [anon_sym_unsafe] = ACTIONS(1638), + [anon_sym_use] = ACTIONS(1638), + [anon_sym_while] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_extern] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_COLON_COLON] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_DOT_DOT] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_move] = ACTIONS(1638), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1636), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1638), + [anon_sym_false] = ACTIONS(1638), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1638), + [sym_super] = ACTIONS(1638), + [sym_crate] = ACTIONS(1638), + [sym_metavariable] = ACTIONS(1636), + [sym_raw_string_literal] = ACTIONS(1636), + [sym_float_literal] = ACTIONS(1636), [sym_block_comment] = ACTIONS(3), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1645), - [sym_identifier] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_macro_rules_BANG] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_u8] = ACTIONS(1647), - [anon_sym_i8] = ACTIONS(1647), - [anon_sym_u16] = ACTIONS(1647), - [anon_sym_i16] = ACTIONS(1647), - [anon_sym_u32] = ACTIONS(1647), - [anon_sym_i32] = ACTIONS(1647), - [anon_sym_u64] = ACTIONS(1647), - [anon_sym_i64] = ACTIONS(1647), - [anon_sym_u128] = ACTIONS(1647), - [anon_sym_i128] = ACTIONS(1647), - [anon_sym_isize] = ACTIONS(1647), - [anon_sym_usize] = ACTIONS(1647), - [anon_sym_f32] = ACTIONS(1647), - [anon_sym_f64] = ACTIONS(1647), - [anon_sym_bool] = ACTIONS(1647), - [anon_sym_str] = ACTIONS(1647), - [anon_sym_char] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_async] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1647), - [anon_sym_const] = ACTIONS(1647), - [anon_sym_continue] = ACTIONS(1647), - [anon_sym_default] = ACTIONS(1647), - [anon_sym_enum] = ACTIONS(1647), - [anon_sym_fn] = ACTIONS(1647), - [anon_sym_for] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1647), - [anon_sym_impl] = ACTIONS(1647), - [anon_sym_let] = ACTIONS(1647), - [anon_sym_loop] = ACTIONS(1647), - [anon_sym_match] = ACTIONS(1647), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_pub] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1647), - [anon_sym_static] = ACTIONS(1647), - [anon_sym_struct] = ACTIONS(1647), - [anon_sym_trait] = ACTIONS(1647), - [anon_sym_type] = ACTIONS(1647), - [anon_sym_union] = ACTIONS(1647), - [anon_sym_unsafe] = ACTIONS(1647), - [anon_sym_use] = ACTIONS(1647), - [anon_sym_while] = ACTIONS(1647), - [anon_sym_POUND] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_COLON_COLON] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_move] = ACTIONS(1647), - [sym_integer_literal] = ACTIONS(1645), - [aux_sym_string_literal_token1] = ACTIONS(1645), - [sym_char_literal] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = ACTIONS(1647), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1647), - [sym_super] = ACTIONS(1647), - [sym_crate] = ACTIONS(1647), - [sym_metavariable] = ACTIONS(1645), - [sym_raw_string_literal] = ACTIONS(1645), - [sym_float_literal] = ACTIONS(1645), + [ts_builtin_sym_end] = ACTIONS(1640), + [sym_identifier] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_macro_rules_BANG] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_u8] = ACTIONS(1642), + [anon_sym_i8] = ACTIONS(1642), + [anon_sym_u16] = ACTIONS(1642), + [anon_sym_i16] = ACTIONS(1642), + [anon_sym_u32] = ACTIONS(1642), + [anon_sym_i32] = ACTIONS(1642), + [anon_sym_u64] = ACTIONS(1642), + [anon_sym_i64] = ACTIONS(1642), + [anon_sym_u128] = ACTIONS(1642), + [anon_sym_i128] = ACTIONS(1642), + [anon_sym_isize] = ACTIONS(1642), + [anon_sym_usize] = ACTIONS(1642), + [anon_sym_f32] = ACTIONS(1642), + [anon_sym_f64] = ACTIONS(1642), + [anon_sym_bool] = ACTIONS(1642), + [anon_sym_str] = ACTIONS(1642), + [anon_sym_char] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_break] = ACTIONS(1642), + [anon_sym_const] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(1642), + [anon_sym_default] = ACTIONS(1642), + [anon_sym_enum] = ACTIONS(1642), + [anon_sym_fn] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1642), + [anon_sym_let] = ACTIONS(1642), + [anon_sym_loop] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_mod] = ACTIONS(1642), + [anon_sym_pub] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_static] = ACTIONS(1642), + [anon_sym_struct] = ACTIONS(1642), + [anon_sym_trait] = ACTIONS(1642), + [anon_sym_type] = ACTIONS(1642), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_use] = ACTIONS(1642), + [anon_sym_while] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_extern] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_COLON_COLON] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_DOT_DOT] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_move] = ACTIONS(1642), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1640), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1642), + [anon_sym_false] = ACTIONS(1642), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1640), + [sym_raw_string_literal] = ACTIONS(1640), + [sym_float_literal] = ACTIONS(1640), [sym_block_comment] = ACTIONS(3), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(1649), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_macro_rules_BANG] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1649), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1651), - [anon_sym_i8] = ACTIONS(1651), - [anon_sym_u16] = ACTIONS(1651), - [anon_sym_i16] = ACTIONS(1651), - [anon_sym_u32] = ACTIONS(1651), - [anon_sym_i32] = ACTIONS(1651), - [anon_sym_u64] = ACTIONS(1651), - [anon_sym_i64] = ACTIONS(1651), - [anon_sym_u128] = ACTIONS(1651), - [anon_sym_i128] = ACTIONS(1651), - [anon_sym_isize] = ACTIONS(1651), - [anon_sym_usize] = ACTIONS(1651), - [anon_sym_f32] = ACTIONS(1651), - [anon_sym_f64] = ACTIONS(1651), - [anon_sym_bool] = ACTIONS(1651), - [anon_sym_str] = ACTIONS(1651), - [anon_sym_char] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_async] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_default] = ACTIONS(1651), - [anon_sym_enum] = ACTIONS(1651), - [anon_sym_fn] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_impl] = ACTIONS(1651), - [anon_sym_let] = ACTIONS(1651), - [anon_sym_loop] = ACTIONS(1651), - [anon_sym_match] = ACTIONS(1651), - [anon_sym_mod] = ACTIONS(1651), - [anon_sym_pub] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_static] = ACTIONS(1651), - [anon_sym_struct] = ACTIONS(1651), - [anon_sym_trait] = ACTIONS(1651), - [anon_sym_type] = ACTIONS(1651), - [anon_sym_union] = ACTIONS(1651), - [anon_sym_unsafe] = ACTIONS(1651), - [anon_sym_use] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_POUND] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1649), - [anon_sym_extern] = ACTIONS(1651), - [anon_sym_LT] = ACTIONS(1649), - [anon_sym_COLON_COLON] = ACTIONS(1649), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1649), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PIPE] = ACTIONS(1649), - [anon_sym_move] = ACTIONS(1651), - [sym_integer_literal] = ACTIONS(1649), - [aux_sym_string_literal_token1] = ACTIONS(1649), - [sym_char_literal] = ACTIONS(1649), - [anon_sym_true] = ACTIONS(1651), - [anon_sym_false] = ACTIONS(1651), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1651), - [sym_super] = ACTIONS(1651), - [sym_crate] = ACTIONS(1651), - [sym_metavariable] = ACTIONS(1649), - [sym_raw_string_literal] = ACTIONS(1649), - [sym_float_literal] = ACTIONS(1649), + [ts_builtin_sym_end] = ACTIONS(1644), + [sym_identifier] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_macro_rules_BANG] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_STAR] = ACTIONS(1644), + [anon_sym_u8] = ACTIONS(1646), + [anon_sym_i8] = ACTIONS(1646), + [anon_sym_u16] = ACTIONS(1646), + [anon_sym_i16] = ACTIONS(1646), + [anon_sym_u32] = ACTIONS(1646), + [anon_sym_i32] = ACTIONS(1646), + [anon_sym_u64] = ACTIONS(1646), + [anon_sym_i64] = ACTIONS(1646), + [anon_sym_u128] = ACTIONS(1646), + [anon_sym_i128] = ACTIONS(1646), + [anon_sym_isize] = ACTIONS(1646), + [anon_sym_usize] = ACTIONS(1646), + [anon_sym_f32] = ACTIONS(1646), + [anon_sym_f64] = ACTIONS(1646), + [anon_sym_bool] = ACTIONS(1646), + [anon_sym_str] = ACTIONS(1646), + [anon_sym_char] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1646), + [anon_sym_async] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(1646), + [anon_sym_default] = ACTIONS(1646), + [anon_sym_enum] = ACTIONS(1646), + [anon_sym_fn] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_impl] = ACTIONS(1646), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_loop] = ACTIONS(1646), + [anon_sym_match] = ACTIONS(1646), + [anon_sym_mod] = ACTIONS(1646), + [anon_sym_pub] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_struct] = ACTIONS(1646), + [anon_sym_trait] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_union] = ACTIONS(1646), + [anon_sym_unsafe] = ACTIONS(1646), + [anon_sym_use] = ACTIONS(1646), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_extern] = ACTIONS(1646), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_COLON_COLON] = ACTIONS(1644), + [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_DOT_DOT] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_move] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1644), + [aux_sym_string_literal_token1] = ACTIONS(1644), + [sym_char_literal] = ACTIONS(1644), + [anon_sym_true] = ACTIONS(1646), + [anon_sym_false] = ACTIONS(1646), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1646), + [sym_super] = ACTIONS(1646), + [sym_crate] = ACTIONS(1646), + [sym_metavariable] = ACTIONS(1644), + [sym_raw_string_literal] = ACTIONS(1644), + [sym_float_literal] = ACTIONS(1644), [sym_block_comment] = ACTIONS(3), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_identifier] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_macro_rules_BANG] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1653), - [anon_sym_u8] = ACTIONS(1655), - [anon_sym_i8] = ACTIONS(1655), - [anon_sym_u16] = ACTIONS(1655), - [anon_sym_i16] = ACTIONS(1655), - [anon_sym_u32] = ACTIONS(1655), - [anon_sym_i32] = ACTIONS(1655), - [anon_sym_u64] = ACTIONS(1655), - [anon_sym_i64] = ACTIONS(1655), - [anon_sym_u128] = ACTIONS(1655), - [anon_sym_i128] = ACTIONS(1655), - [anon_sym_isize] = ACTIONS(1655), - [anon_sym_usize] = ACTIONS(1655), - [anon_sym_f32] = ACTIONS(1655), - [anon_sym_f64] = ACTIONS(1655), - [anon_sym_bool] = ACTIONS(1655), - [anon_sym_str] = ACTIONS(1655), - [anon_sym_char] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1655), - [anon_sym_break] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1655), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_enum] = ACTIONS(1655), - [anon_sym_fn] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_impl] = ACTIONS(1655), - [anon_sym_let] = ACTIONS(1655), - [anon_sym_loop] = ACTIONS(1655), - [anon_sym_match] = ACTIONS(1655), - [anon_sym_mod] = ACTIONS(1655), - [anon_sym_pub] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1655), - [anon_sym_static] = ACTIONS(1655), - [anon_sym_struct] = ACTIONS(1655), - [anon_sym_trait] = ACTIONS(1655), - [anon_sym_type] = ACTIONS(1655), - [anon_sym_union] = ACTIONS(1655), - [anon_sym_unsafe] = ACTIONS(1655), - [anon_sym_use] = ACTIONS(1655), - [anon_sym_while] = ACTIONS(1655), - [anon_sym_POUND] = ACTIONS(1653), - [anon_sym_BANG] = ACTIONS(1653), - [anon_sym_extern] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_DOT_DOT] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_move] = ACTIONS(1655), - [sym_integer_literal] = ACTIONS(1653), - [aux_sym_string_literal_token1] = ACTIONS(1653), - [sym_char_literal] = ACTIONS(1653), - [anon_sym_true] = ACTIONS(1655), - [anon_sym_false] = ACTIONS(1655), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1655), - [sym_super] = ACTIONS(1655), - [sym_crate] = ACTIONS(1655), - [sym_metavariable] = ACTIONS(1653), - [sym_raw_string_literal] = ACTIONS(1653), - [sym_float_literal] = ACTIONS(1653), + [ts_builtin_sym_end] = ACTIONS(1648), + [sym_identifier] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_macro_rules_BANG] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_u8] = ACTIONS(1650), + [anon_sym_i8] = ACTIONS(1650), + [anon_sym_u16] = ACTIONS(1650), + [anon_sym_i16] = ACTIONS(1650), + [anon_sym_u32] = ACTIONS(1650), + [anon_sym_i32] = ACTIONS(1650), + [anon_sym_u64] = ACTIONS(1650), + [anon_sym_i64] = ACTIONS(1650), + [anon_sym_u128] = ACTIONS(1650), + [anon_sym_i128] = ACTIONS(1650), + [anon_sym_isize] = ACTIONS(1650), + [anon_sym_usize] = ACTIONS(1650), + [anon_sym_f32] = ACTIONS(1650), + [anon_sym_f64] = ACTIONS(1650), + [anon_sym_bool] = ACTIONS(1650), + [anon_sym_str] = ACTIONS(1650), + [anon_sym_char] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1650), + [anon_sym_async] = ACTIONS(1650), + [anon_sym_break] = ACTIONS(1650), + [anon_sym_const] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(1650), + [anon_sym_default] = ACTIONS(1650), + [anon_sym_enum] = ACTIONS(1650), + [anon_sym_fn] = ACTIONS(1650), + [anon_sym_for] = ACTIONS(1650), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_impl] = ACTIONS(1650), + [anon_sym_let] = ACTIONS(1650), + [anon_sym_loop] = ACTIONS(1650), + [anon_sym_match] = ACTIONS(1650), + [anon_sym_mod] = ACTIONS(1650), + [anon_sym_pub] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_static] = ACTIONS(1650), + [anon_sym_struct] = ACTIONS(1650), + [anon_sym_trait] = ACTIONS(1650), + [anon_sym_type] = ACTIONS(1650), + [anon_sym_union] = ACTIONS(1650), + [anon_sym_unsafe] = ACTIONS(1650), + [anon_sym_use] = ACTIONS(1650), + [anon_sym_while] = ACTIONS(1650), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_BANG] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_COLON_COLON] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_move] = ACTIONS(1650), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1648), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1648), + [sym_raw_string_literal] = ACTIONS(1648), + [sym_float_literal] = ACTIONS(1648), [sym_block_comment] = ACTIONS(3), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(1657), - [sym_identifier] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_macro_rules_BANG] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_u8] = ACTIONS(1659), - [anon_sym_i8] = ACTIONS(1659), - [anon_sym_u16] = ACTIONS(1659), - [anon_sym_i16] = ACTIONS(1659), - [anon_sym_u32] = ACTIONS(1659), - [anon_sym_i32] = ACTIONS(1659), - [anon_sym_u64] = ACTIONS(1659), - [anon_sym_i64] = ACTIONS(1659), - [anon_sym_u128] = ACTIONS(1659), - [anon_sym_i128] = ACTIONS(1659), - [anon_sym_isize] = ACTIONS(1659), - [anon_sym_usize] = ACTIONS(1659), - [anon_sym_f32] = ACTIONS(1659), - [anon_sym_f64] = ACTIONS(1659), - [anon_sym_bool] = ACTIONS(1659), - [anon_sym_str] = ACTIONS(1659), - [anon_sym_char] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_async] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_enum] = ACTIONS(1659), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_impl] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_mod] = ACTIONS(1659), - [anon_sym_pub] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1659), - [anon_sym_trait] = ACTIONS(1659), - [anon_sym_type] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_unsafe] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_COLON_COLON] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_DOT_DOT] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_move] = ACTIONS(1659), - [sym_integer_literal] = ACTIONS(1657), - [aux_sym_string_literal_token1] = ACTIONS(1657), - [sym_char_literal] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1659), - [anon_sym_false] = ACTIONS(1659), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1659), - [sym_super] = ACTIONS(1659), - [sym_crate] = ACTIONS(1659), - [sym_metavariable] = ACTIONS(1657), - [sym_raw_string_literal] = ACTIONS(1657), - [sym_float_literal] = ACTIONS(1657), + [ts_builtin_sym_end] = ACTIONS(1652), + [sym_identifier] = ACTIONS(1654), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_macro_rules_BANG] = ACTIONS(1652), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_u8] = ACTIONS(1654), + [anon_sym_i8] = ACTIONS(1654), + [anon_sym_u16] = ACTIONS(1654), + [anon_sym_i16] = ACTIONS(1654), + [anon_sym_u32] = ACTIONS(1654), + [anon_sym_i32] = ACTIONS(1654), + [anon_sym_u64] = ACTIONS(1654), + [anon_sym_i64] = ACTIONS(1654), + [anon_sym_u128] = ACTIONS(1654), + [anon_sym_i128] = ACTIONS(1654), + [anon_sym_isize] = ACTIONS(1654), + [anon_sym_usize] = ACTIONS(1654), + [anon_sym_f32] = ACTIONS(1654), + [anon_sym_f64] = ACTIONS(1654), + [anon_sym_bool] = ACTIONS(1654), + [anon_sym_str] = ACTIONS(1654), + [anon_sym_char] = ACTIONS(1654), + [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_async] = ACTIONS(1654), + [anon_sym_break] = ACTIONS(1654), + [anon_sym_const] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(1654), + [anon_sym_default] = ACTIONS(1654), + [anon_sym_enum] = ACTIONS(1654), + [anon_sym_fn] = ACTIONS(1654), + [anon_sym_for] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_impl] = ACTIONS(1654), + [anon_sym_let] = ACTIONS(1654), + [anon_sym_loop] = ACTIONS(1654), + [anon_sym_match] = ACTIONS(1654), + [anon_sym_mod] = ACTIONS(1654), + [anon_sym_pub] = ACTIONS(1654), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_static] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1654), + [anon_sym_trait] = ACTIONS(1654), + [anon_sym_type] = ACTIONS(1654), + [anon_sym_union] = ACTIONS(1654), + [anon_sym_unsafe] = ACTIONS(1654), + [anon_sym_use] = ACTIONS(1654), + [anon_sym_while] = ACTIONS(1654), + [anon_sym_POUND] = ACTIONS(1652), + [anon_sym_BANG] = ACTIONS(1652), + [anon_sym_extern] = ACTIONS(1654), + [anon_sym_LT] = ACTIONS(1652), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1652), + [anon_sym_DOT_DOT] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1652), + [anon_sym_move] = ACTIONS(1654), + [sym_integer_literal] = ACTIONS(1652), + [aux_sym_string_literal_token1] = ACTIONS(1652), + [sym_char_literal] = ACTIONS(1652), + [anon_sym_true] = ACTIONS(1654), + [anon_sym_false] = ACTIONS(1654), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1654), + [sym_super] = ACTIONS(1654), + [sym_crate] = ACTIONS(1654), + [sym_metavariable] = ACTIONS(1652), + [sym_raw_string_literal] = ACTIONS(1652), + [sym_float_literal] = ACTIONS(1652), [sym_block_comment] = ACTIONS(3), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(1661), - [sym_identifier] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_macro_rules_BANG] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1663), - [anon_sym_i8] = ACTIONS(1663), - [anon_sym_u16] = ACTIONS(1663), - [anon_sym_i16] = ACTIONS(1663), - [anon_sym_u32] = ACTIONS(1663), - [anon_sym_i32] = ACTIONS(1663), - [anon_sym_u64] = ACTIONS(1663), - [anon_sym_i64] = ACTIONS(1663), - [anon_sym_u128] = ACTIONS(1663), - [anon_sym_i128] = ACTIONS(1663), - [anon_sym_isize] = ACTIONS(1663), - [anon_sym_usize] = ACTIONS(1663), - [anon_sym_f32] = ACTIONS(1663), - [anon_sym_f64] = ACTIONS(1663), - [anon_sym_bool] = ACTIONS(1663), - [anon_sym_str] = ACTIONS(1663), - [anon_sym_char] = ACTIONS(1663), - [anon_sym_SQUOTE] = ACTIONS(1663), - [anon_sym_async] = ACTIONS(1663), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_const] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1663), - [anon_sym_enum] = ACTIONS(1663), - [anon_sym_fn] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1663), - [anon_sym_impl] = ACTIONS(1663), - [anon_sym_let] = ACTIONS(1663), - [anon_sym_loop] = ACTIONS(1663), - [anon_sym_match] = ACTIONS(1663), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_pub] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1663), - [anon_sym_struct] = ACTIONS(1663), - [anon_sym_trait] = ACTIONS(1663), - [anon_sym_type] = ACTIONS(1663), - [anon_sym_union] = ACTIONS(1663), - [anon_sym_unsafe] = ACTIONS(1663), - [anon_sym_use] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_move] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1661), - [aux_sym_string_literal_token1] = ACTIONS(1661), - [sym_char_literal] = ACTIONS(1661), - [anon_sym_true] = ACTIONS(1663), - [anon_sym_false] = ACTIONS(1663), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1663), - [sym_super] = ACTIONS(1663), - [sym_crate] = ACTIONS(1663), - [sym_metavariable] = ACTIONS(1661), - [sym_raw_string_literal] = ACTIONS(1661), - [sym_float_literal] = ACTIONS(1661), + [ts_builtin_sym_end] = ACTIONS(1656), + [sym_identifier] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_macro_rules_BANG] = ACTIONS(1656), + [anon_sym_LPAREN] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_SQUOTE] = ACTIONS(1658), + [anon_sym_async] = ACTIONS(1658), + [anon_sym_break] = ACTIONS(1658), + [anon_sym_const] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(1658), + [anon_sym_default] = ACTIONS(1658), + [anon_sym_enum] = ACTIONS(1658), + [anon_sym_fn] = ACTIONS(1658), + [anon_sym_for] = ACTIONS(1658), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_impl] = ACTIONS(1658), + [anon_sym_let] = ACTIONS(1658), + [anon_sym_loop] = ACTIONS(1658), + [anon_sym_match] = ACTIONS(1658), + [anon_sym_mod] = ACTIONS(1658), + [anon_sym_pub] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_static] = ACTIONS(1658), + [anon_sym_struct] = ACTIONS(1658), + [anon_sym_trait] = ACTIONS(1658), + [anon_sym_type] = ACTIONS(1658), + [anon_sym_union] = ACTIONS(1658), + [anon_sym_unsafe] = ACTIONS(1658), + [anon_sym_use] = ACTIONS(1658), + [anon_sym_while] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_extern] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(1656), + [anon_sym_COLON_COLON] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_DOT_DOT] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1656), + [anon_sym_move] = ACTIONS(1658), + [sym_integer_literal] = ACTIONS(1656), + [aux_sym_string_literal_token1] = ACTIONS(1656), + [sym_char_literal] = ACTIONS(1656), + [anon_sym_true] = ACTIONS(1658), + [anon_sym_false] = ACTIONS(1658), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1658), + [sym_super] = ACTIONS(1658), + [sym_crate] = ACTIONS(1658), + [sym_metavariable] = ACTIONS(1656), + [sym_raw_string_literal] = ACTIONS(1656), + [sym_float_literal] = ACTIONS(1656), [sym_block_comment] = ACTIONS(3), }, [391] = { - [ts_builtin_sym_end] = ACTIONS(1665), - [sym_identifier] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_macro_rules_BANG] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1665), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_RBRACE] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_u8] = ACTIONS(1667), - [anon_sym_i8] = ACTIONS(1667), - [anon_sym_u16] = ACTIONS(1667), - [anon_sym_i16] = ACTIONS(1667), - [anon_sym_u32] = ACTIONS(1667), - [anon_sym_i32] = ACTIONS(1667), - [anon_sym_u64] = ACTIONS(1667), - [anon_sym_i64] = ACTIONS(1667), - [anon_sym_u128] = ACTIONS(1667), - [anon_sym_i128] = ACTIONS(1667), - [anon_sym_isize] = ACTIONS(1667), - [anon_sym_usize] = ACTIONS(1667), - [anon_sym_f32] = ACTIONS(1667), - [anon_sym_f64] = ACTIONS(1667), - [anon_sym_bool] = ACTIONS(1667), - [anon_sym_str] = ACTIONS(1667), - [anon_sym_char] = ACTIONS(1667), - [anon_sym_SQUOTE] = ACTIONS(1667), - [anon_sym_async] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_default] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_fn] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_impl] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1667), - [anon_sym_pub] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_trait] = ACTIONS(1667), - [anon_sym_type] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [anon_sym_unsafe] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_LT] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_DOT_DOT] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(1665), - [anon_sym_move] = ACTIONS(1667), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1665), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1667), - [sym_super] = ACTIONS(1667), - [sym_crate] = ACTIONS(1667), - [sym_metavariable] = ACTIONS(1665), - [sym_raw_string_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(1665), + [sym__token_pattern] = STATE(382), + [sym_token_tree_pattern] = STATE(382), + [sym_token_binding_pattern] = STATE(382), + [sym_token_repetition_pattern] = STATE(382), + [sym__literal] = STATE(382), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(1660), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1662), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1660), + [anon_sym_i8] = ACTIONS(1660), + [anon_sym_u16] = ACTIONS(1660), + [anon_sym_i16] = ACTIONS(1660), + [anon_sym_u32] = ACTIONS(1660), + [anon_sym_i32] = ACTIONS(1660), + [anon_sym_u64] = ACTIONS(1660), + [anon_sym_i64] = ACTIONS(1660), + [anon_sym_u128] = ACTIONS(1660), + [anon_sym_i128] = ACTIONS(1660), + [anon_sym_isize] = ACTIONS(1660), + [anon_sym_usize] = ACTIONS(1660), + [anon_sym_f32] = ACTIONS(1660), + [anon_sym_f64] = ACTIONS(1660), + [anon_sym_bool] = ACTIONS(1660), + [anon_sym_str] = ACTIONS(1660), + [anon_sym_char] = ACTIONS(1660), + [aux_sym__non_special_token_token1] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_as] = ACTIONS(1660), + [anon_sym_async] = ACTIONS(1660), + [anon_sym_await] = ACTIONS(1660), + [anon_sym_break] = ACTIONS(1660), + [anon_sym_const] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(1660), + [anon_sym_default] = ACTIONS(1660), + [anon_sym_enum] = ACTIONS(1660), + [anon_sym_fn] = ACTIONS(1660), + [anon_sym_for] = ACTIONS(1660), + [anon_sym_if] = ACTIONS(1660), + [anon_sym_impl] = ACTIONS(1660), + [anon_sym_let] = ACTIONS(1660), + [anon_sym_loop] = ACTIONS(1660), + [anon_sym_match] = ACTIONS(1660), + [anon_sym_mod] = ACTIONS(1660), + [anon_sym_pub] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_static] = ACTIONS(1660), + [anon_sym_struct] = ACTIONS(1660), + [anon_sym_trait] = ACTIONS(1660), + [anon_sym_type] = ACTIONS(1660), + [anon_sym_union] = ACTIONS(1660), + [anon_sym_unsafe] = ACTIONS(1660), + [anon_sym_use] = ACTIONS(1660), + [anon_sym_where] = ACTIONS(1660), + [anon_sym_while] = ACTIONS(1660), + [sym_mutable_specifier] = ACTIONS(1660), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1660), + [sym_super] = ACTIONS(1660), + [sym_crate] = ACTIONS(1660), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [392] = { - [ts_builtin_sym_end] = ACTIONS(1669), - [sym_identifier] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_macro_rules_BANG] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_u8] = ACTIONS(1671), - [anon_sym_i8] = ACTIONS(1671), - [anon_sym_u16] = ACTIONS(1671), - [anon_sym_i16] = ACTIONS(1671), - [anon_sym_u32] = ACTIONS(1671), - [anon_sym_i32] = ACTIONS(1671), - [anon_sym_u64] = ACTIONS(1671), - [anon_sym_i64] = ACTIONS(1671), - [anon_sym_u128] = ACTIONS(1671), - [anon_sym_i128] = ACTIONS(1671), - [anon_sym_isize] = ACTIONS(1671), - [anon_sym_usize] = ACTIONS(1671), - [anon_sym_f32] = ACTIONS(1671), - [anon_sym_f64] = ACTIONS(1671), - [anon_sym_bool] = ACTIONS(1671), - [anon_sym_str] = ACTIONS(1671), - [anon_sym_char] = ACTIONS(1671), - [anon_sym_SQUOTE] = ACTIONS(1671), - [anon_sym_async] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1671), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_continue] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_enum] = ACTIONS(1671), - [anon_sym_fn] = ACTIONS(1671), - [anon_sym_for] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(1671), - [anon_sym_impl] = ACTIONS(1671), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_loop] = ACTIONS(1671), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_pub] = ACTIONS(1671), - [anon_sym_return] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_struct] = ACTIONS(1671), - [anon_sym_trait] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_unsafe] = ACTIONS(1671), - [anon_sym_use] = ACTIONS(1671), - [anon_sym_while] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_move] = ACTIONS(1671), - [sym_integer_literal] = ACTIONS(1669), - [aux_sym_string_literal_token1] = ACTIONS(1669), - [sym_char_literal] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1669), - [sym_raw_string_literal] = ACTIONS(1669), - [sym_float_literal] = ACTIONS(1669), + [sym__token_pattern] = STATE(368), + [sym_token_tree_pattern] = STATE(368), + [sym_token_binding_pattern] = STATE(368), + [sym_token_repetition_pattern] = STATE(368), + [sym__literal] = STATE(368), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(368), + [sym_identifier] = ACTIONS(1664), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1664), + [anon_sym_i8] = ACTIONS(1664), + [anon_sym_u16] = ACTIONS(1664), + [anon_sym_i16] = ACTIONS(1664), + [anon_sym_u32] = ACTIONS(1664), + [anon_sym_i32] = ACTIONS(1664), + [anon_sym_u64] = ACTIONS(1664), + [anon_sym_i64] = ACTIONS(1664), + [anon_sym_u128] = ACTIONS(1664), + [anon_sym_i128] = ACTIONS(1664), + [anon_sym_isize] = ACTIONS(1664), + [anon_sym_usize] = ACTIONS(1664), + [anon_sym_f32] = ACTIONS(1664), + [anon_sym_f64] = ACTIONS(1664), + [anon_sym_bool] = ACTIONS(1664), + [anon_sym_str] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1664), + [aux_sym__non_special_token_token1] = ACTIONS(1664), + [anon_sym_SQUOTE] = ACTIONS(1664), + [anon_sym_as] = ACTIONS(1664), + [anon_sym_async] = ACTIONS(1664), + [anon_sym_await] = ACTIONS(1664), + [anon_sym_break] = ACTIONS(1664), + [anon_sym_const] = ACTIONS(1664), + [anon_sym_continue] = ACTIONS(1664), + [anon_sym_default] = ACTIONS(1664), + [anon_sym_enum] = ACTIONS(1664), + [anon_sym_fn] = ACTIONS(1664), + [anon_sym_for] = ACTIONS(1664), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_impl] = ACTIONS(1664), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_loop] = ACTIONS(1664), + [anon_sym_match] = ACTIONS(1664), + [anon_sym_mod] = ACTIONS(1664), + [anon_sym_pub] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1664), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_struct] = ACTIONS(1664), + [anon_sym_trait] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_union] = ACTIONS(1664), + [anon_sym_unsafe] = ACTIONS(1664), + [anon_sym_use] = ACTIONS(1664), + [anon_sym_where] = ACTIONS(1664), + [anon_sym_while] = ACTIONS(1664), + [sym_mutable_specifier] = ACTIONS(1664), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1664), + [sym_super] = ACTIONS(1664), + [sym_crate] = ACTIONS(1664), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_macro_rules_BANG] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1673), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_u8] = ACTIONS(1675), - [anon_sym_i8] = ACTIONS(1675), - [anon_sym_u16] = ACTIONS(1675), - [anon_sym_i16] = ACTIONS(1675), - [anon_sym_u32] = ACTIONS(1675), - [anon_sym_i32] = ACTIONS(1675), - [anon_sym_u64] = ACTIONS(1675), - [anon_sym_i64] = ACTIONS(1675), - [anon_sym_u128] = ACTIONS(1675), - [anon_sym_i128] = ACTIONS(1675), - [anon_sym_isize] = ACTIONS(1675), - [anon_sym_usize] = ACTIONS(1675), - [anon_sym_f32] = ACTIONS(1675), - [anon_sym_f64] = ACTIONS(1675), - [anon_sym_bool] = ACTIONS(1675), - [anon_sym_str] = ACTIONS(1675), - [anon_sym_char] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1675), - [anon_sym_async] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_default] = ACTIONS(1675), - [anon_sym_enum] = ACTIONS(1675), - [anon_sym_fn] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_impl] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_loop] = ACTIONS(1675), - [anon_sym_match] = ACTIONS(1675), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_pub] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_struct] = ACTIONS(1675), - [anon_sym_trait] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_union] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1675), - [anon_sym_use] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(1673), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_COLON_COLON] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_move] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1673), - [aux_sym_string_literal_token1] = ACTIONS(1673), - [sym_char_literal] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1675), - [sym_super] = ACTIONS(1675), - [sym_crate] = ACTIONS(1675), - [sym_metavariable] = ACTIONS(1673), - [sym_raw_string_literal] = ACTIONS(1673), - [sym_float_literal] = ACTIONS(1673), + [ts_builtin_sym_end] = ACTIONS(1666), + [sym_identifier] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_macro_rules_BANG] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1666), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_u8] = ACTIONS(1668), + [anon_sym_i8] = ACTIONS(1668), + [anon_sym_u16] = ACTIONS(1668), + [anon_sym_i16] = ACTIONS(1668), + [anon_sym_u32] = ACTIONS(1668), + [anon_sym_i32] = ACTIONS(1668), + [anon_sym_u64] = ACTIONS(1668), + [anon_sym_i64] = ACTIONS(1668), + [anon_sym_u128] = ACTIONS(1668), + [anon_sym_i128] = ACTIONS(1668), + [anon_sym_isize] = ACTIONS(1668), + [anon_sym_usize] = ACTIONS(1668), + [anon_sym_f32] = ACTIONS(1668), + [anon_sym_f64] = ACTIONS(1668), + [anon_sym_bool] = ACTIONS(1668), + [anon_sym_str] = ACTIONS(1668), + [anon_sym_char] = ACTIONS(1668), + [anon_sym_SQUOTE] = ACTIONS(1668), + [anon_sym_async] = ACTIONS(1668), + [anon_sym_break] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(1668), + [anon_sym_default] = ACTIONS(1668), + [anon_sym_enum] = ACTIONS(1668), + [anon_sym_fn] = ACTIONS(1668), + [anon_sym_for] = ACTIONS(1668), + [anon_sym_if] = ACTIONS(1668), + [anon_sym_impl] = ACTIONS(1668), + [anon_sym_let] = ACTIONS(1668), + [anon_sym_loop] = ACTIONS(1668), + [anon_sym_match] = ACTIONS(1668), + [anon_sym_mod] = ACTIONS(1668), + [anon_sym_pub] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(1668), + [anon_sym_struct] = ACTIONS(1668), + [anon_sym_trait] = ACTIONS(1668), + [anon_sym_type] = ACTIONS(1668), + [anon_sym_union] = ACTIONS(1668), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_use] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_COLON_COLON] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_move] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(1666), + [aux_sym_string_literal_token1] = ACTIONS(1666), + [sym_char_literal] = ACTIONS(1666), + [anon_sym_true] = ACTIONS(1668), + [anon_sym_false] = ACTIONS(1668), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1668), + [sym_super] = ACTIONS(1668), + [sym_crate] = ACTIONS(1668), + [sym_metavariable] = ACTIONS(1666), + [sym_raw_string_literal] = ACTIONS(1666), + [sym_float_literal] = ACTIONS(1666), [sym_block_comment] = ACTIONS(3), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(1677), - [sym_identifier] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_macro_rules_BANG] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1677), - [anon_sym_STAR] = ACTIONS(1677), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_async] = ACTIONS(1679), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1679), - [anon_sym_default] = ACTIONS(1679), - [anon_sym_enum] = ACTIONS(1679), - [anon_sym_fn] = ACTIONS(1679), - [anon_sym_for] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1679), - [anon_sym_impl] = ACTIONS(1679), - [anon_sym_let] = ACTIONS(1679), - [anon_sym_loop] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1679), - [anon_sym_mod] = ACTIONS(1679), - [anon_sym_pub] = ACTIONS(1679), - [anon_sym_return] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1679), - [anon_sym_struct] = ACTIONS(1679), - [anon_sym_trait] = ACTIONS(1679), - [anon_sym_type] = ACTIONS(1679), - [anon_sym_union] = ACTIONS(1679), - [anon_sym_unsafe] = ACTIONS(1679), - [anon_sym_use] = ACTIONS(1679), - [anon_sym_while] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1677), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_extern] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1677), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_move] = ACTIONS(1679), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1677), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1679), - [anon_sym_false] = ACTIONS(1679), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1679), - [sym_super] = ACTIONS(1679), - [sym_crate] = ACTIONS(1679), - [sym_metavariable] = ACTIONS(1677), - [sym_raw_string_literal] = ACTIONS(1677), - [sym_float_literal] = ACTIONS(1677), + [ts_builtin_sym_end] = ACTIONS(1670), + [sym_identifier] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_macro_rules_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_STAR] = ACTIONS(1670), + [anon_sym_u8] = ACTIONS(1672), + [anon_sym_i8] = ACTIONS(1672), + [anon_sym_u16] = ACTIONS(1672), + [anon_sym_i16] = ACTIONS(1672), + [anon_sym_u32] = ACTIONS(1672), + [anon_sym_i32] = ACTIONS(1672), + [anon_sym_u64] = ACTIONS(1672), + [anon_sym_i64] = ACTIONS(1672), + [anon_sym_u128] = ACTIONS(1672), + [anon_sym_i128] = ACTIONS(1672), + [anon_sym_isize] = ACTIONS(1672), + [anon_sym_usize] = ACTIONS(1672), + [anon_sym_f32] = ACTIONS(1672), + [anon_sym_f64] = ACTIONS(1672), + [anon_sym_bool] = ACTIONS(1672), + [anon_sym_str] = ACTIONS(1672), + [anon_sym_char] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_fn] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_impl] = ACTIONS(1672), + [anon_sym_let] = ACTIONS(1672), + [anon_sym_loop] = ACTIONS(1672), + [anon_sym_match] = ACTIONS(1672), + [anon_sym_mod] = ACTIONS(1672), + [anon_sym_pub] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_trait] = ACTIONS(1672), + [anon_sym_type] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_unsafe] = ACTIONS(1672), + [anon_sym_use] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1670), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(1670), + [anon_sym_DOT_DOT] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_move] = ACTIONS(1672), + [sym_integer_literal] = ACTIONS(1670), + [aux_sym_string_literal_token1] = ACTIONS(1670), + [sym_char_literal] = ACTIONS(1670), + [anon_sym_true] = ACTIONS(1672), + [anon_sym_false] = ACTIONS(1672), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_crate] = ACTIONS(1672), + [sym_metavariable] = ACTIONS(1670), + [sym_raw_string_literal] = ACTIONS(1670), + [sym_float_literal] = ACTIONS(1670), [sym_block_comment] = ACTIONS(3), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(1681), - [sym_identifier] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_macro_rules_BANG] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_u8] = ACTIONS(1683), - [anon_sym_i8] = ACTIONS(1683), - [anon_sym_u16] = ACTIONS(1683), - [anon_sym_i16] = ACTIONS(1683), - [anon_sym_u32] = ACTIONS(1683), - [anon_sym_i32] = ACTIONS(1683), - [anon_sym_u64] = ACTIONS(1683), - [anon_sym_i64] = ACTIONS(1683), - [anon_sym_u128] = ACTIONS(1683), - [anon_sym_i128] = ACTIONS(1683), - [anon_sym_isize] = ACTIONS(1683), - [anon_sym_usize] = ACTIONS(1683), - [anon_sym_f32] = ACTIONS(1683), - [anon_sym_f64] = ACTIONS(1683), - [anon_sym_bool] = ACTIONS(1683), - [anon_sym_str] = ACTIONS(1683), - [anon_sym_char] = ACTIONS(1683), - [anon_sym_SQUOTE] = ACTIONS(1683), - [anon_sym_async] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1683), - [anon_sym_enum] = ACTIONS(1683), - [anon_sym_fn] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1683), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_impl] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1683), - [anon_sym_loop] = ACTIONS(1683), - [anon_sym_match] = ACTIONS(1683), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_pub] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1683), - [anon_sym_static] = ACTIONS(1683), - [anon_sym_struct] = ACTIONS(1683), - [anon_sym_trait] = ACTIONS(1683), - [anon_sym_type] = ACTIONS(1683), - [anon_sym_union] = ACTIONS(1683), - [anon_sym_unsafe] = ACTIONS(1683), - [anon_sym_use] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1683), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_COLON_COLON] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_move] = ACTIONS(1683), - [sym_integer_literal] = ACTIONS(1681), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1681), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1681), - [sym_raw_string_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(1681), + [sym__token_pattern] = STATE(356), + [sym_token_tree_pattern] = STATE(356), + [sym_token_binding_pattern] = STATE(356), + [sym_token_repetition_pattern] = STATE(356), + [sym__literal] = STATE(356), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(356), + [sym_identifier] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1674), + [anon_sym_i8] = ACTIONS(1674), + [anon_sym_u16] = ACTIONS(1674), + [anon_sym_i16] = ACTIONS(1674), + [anon_sym_u32] = ACTIONS(1674), + [anon_sym_i32] = ACTIONS(1674), + [anon_sym_u64] = ACTIONS(1674), + [anon_sym_i64] = ACTIONS(1674), + [anon_sym_u128] = ACTIONS(1674), + [anon_sym_i128] = ACTIONS(1674), + [anon_sym_isize] = ACTIONS(1674), + [anon_sym_usize] = ACTIONS(1674), + [anon_sym_f32] = ACTIONS(1674), + [anon_sym_f64] = ACTIONS(1674), + [anon_sym_bool] = ACTIONS(1674), + [anon_sym_str] = ACTIONS(1674), + [anon_sym_char] = ACTIONS(1674), + [aux_sym__non_special_token_token1] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_as] = ACTIONS(1674), + [anon_sym_async] = ACTIONS(1674), + [anon_sym_await] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_enum] = ACTIONS(1674), + [anon_sym_fn] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_impl] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_loop] = ACTIONS(1674), + [anon_sym_match] = ACTIONS(1674), + [anon_sym_mod] = ACTIONS(1674), + [anon_sym_pub] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1674), + [anon_sym_struct] = ACTIONS(1674), + [anon_sym_trait] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1674), + [anon_sym_union] = ACTIONS(1674), + [anon_sym_unsafe] = ACTIONS(1674), + [anon_sym_use] = ACTIONS(1674), + [anon_sym_where] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [sym_mutable_specifier] = ACTIONS(1674), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1674), + [sym_super] = ACTIONS(1674), + [sym_crate] = ACTIONS(1674), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [396] = { - [ts_builtin_sym_end] = ACTIONS(1685), - [sym_identifier] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_macro_rules_BANG] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1685), - [anon_sym_RBRACE] = ACTIONS(1685), - [anon_sym_LBRACK] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_u8] = ACTIONS(1687), - [anon_sym_i8] = ACTIONS(1687), - [anon_sym_u16] = ACTIONS(1687), - [anon_sym_i16] = ACTIONS(1687), - [anon_sym_u32] = ACTIONS(1687), - [anon_sym_i32] = ACTIONS(1687), - [anon_sym_u64] = ACTIONS(1687), - [anon_sym_i64] = ACTIONS(1687), - [anon_sym_u128] = ACTIONS(1687), - [anon_sym_i128] = ACTIONS(1687), - [anon_sym_isize] = ACTIONS(1687), - [anon_sym_usize] = ACTIONS(1687), - [anon_sym_f32] = ACTIONS(1687), - [anon_sym_f64] = ACTIONS(1687), - [anon_sym_bool] = ACTIONS(1687), - [anon_sym_str] = ACTIONS(1687), - [anon_sym_char] = ACTIONS(1687), - [anon_sym_SQUOTE] = ACTIONS(1687), - [anon_sym_async] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_default] = ACTIONS(1687), - [anon_sym_enum] = ACTIONS(1687), - [anon_sym_fn] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_impl] = ACTIONS(1687), - [anon_sym_let] = ACTIONS(1687), - [anon_sym_loop] = ACTIONS(1687), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_mod] = ACTIONS(1687), - [anon_sym_pub] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1687), - [anon_sym_struct] = ACTIONS(1687), - [anon_sym_trait] = ACTIONS(1687), - [anon_sym_type] = ACTIONS(1687), - [anon_sym_union] = ACTIONS(1687), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_use] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_POUND] = ACTIONS(1685), - [anon_sym_BANG] = ACTIONS(1685), - [anon_sym_extern] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_COLON_COLON] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_DOT_DOT] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_move] = ACTIONS(1687), - [sym_integer_literal] = ACTIONS(1685), - [aux_sym_string_literal_token1] = ACTIONS(1685), - [sym_char_literal] = ACTIONS(1685), - [anon_sym_true] = ACTIONS(1687), - [anon_sym_false] = ACTIONS(1687), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1687), - [sym_super] = ACTIONS(1687), - [sym_crate] = ACTIONS(1687), - [sym_metavariable] = ACTIONS(1685), - [sym_raw_string_literal] = ACTIONS(1685), - [sym_float_literal] = ACTIONS(1685), + [ts_builtin_sym_end] = ACTIONS(1676), + [sym_identifier] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_macro_rules_BANG] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_u8] = ACTIONS(1678), + [anon_sym_i8] = ACTIONS(1678), + [anon_sym_u16] = ACTIONS(1678), + [anon_sym_i16] = ACTIONS(1678), + [anon_sym_u32] = ACTIONS(1678), + [anon_sym_i32] = ACTIONS(1678), + [anon_sym_u64] = ACTIONS(1678), + [anon_sym_i64] = ACTIONS(1678), + [anon_sym_u128] = ACTIONS(1678), + [anon_sym_i128] = ACTIONS(1678), + [anon_sym_isize] = ACTIONS(1678), + [anon_sym_usize] = ACTIONS(1678), + [anon_sym_f32] = ACTIONS(1678), + [anon_sym_f64] = ACTIONS(1678), + [anon_sym_bool] = ACTIONS(1678), + [anon_sym_str] = ACTIONS(1678), + [anon_sym_char] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_async] = ACTIONS(1678), + [anon_sym_break] = ACTIONS(1678), + [anon_sym_const] = ACTIONS(1678), + [anon_sym_continue] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_enum] = ACTIONS(1678), + [anon_sym_fn] = ACTIONS(1678), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_impl] = ACTIONS(1678), + [anon_sym_let] = ACTIONS(1678), + [anon_sym_loop] = ACTIONS(1678), + [anon_sym_match] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1678), + [anon_sym_pub] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1678), + [anon_sym_struct] = ACTIONS(1678), + [anon_sym_trait] = ACTIONS(1678), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_unsafe] = ACTIONS(1678), + [anon_sym_use] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_COLON_COLON] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_DOT_DOT] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_move] = ACTIONS(1678), + [sym_integer_literal] = ACTIONS(1676), + [aux_sym_string_literal_token1] = ACTIONS(1676), + [sym_char_literal] = ACTIONS(1676), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1678), + [sym_super] = ACTIONS(1678), + [sym_crate] = ACTIONS(1678), + [sym_metavariable] = ACTIONS(1676), + [sym_raw_string_literal] = ACTIONS(1676), + [sym_float_literal] = ACTIONS(1676), [sym_block_comment] = ACTIONS(3), }, [397] = { - [ts_builtin_sym_end] = ACTIONS(1689), - [sym_identifier] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_macro_rules_BANG] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_u8] = ACTIONS(1691), - [anon_sym_i8] = ACTIONS(1691), - [anon_sym_u16] = ACTIONS(1691), - [anon_sym_i16] = ACTIONS(1691), - [anon_sym_u32] = ACTIONS(1691), - [anon_sym_i32] = ACTIONS(1691), - [anon_sym_u64] = ACTIONS(1691), - [anon_sym_i64] = ACTIONS(1691), - [anon_sym_u128] = ACTIONS(1691), - [anon_sym_i128] = ACTIONS(1691), - [anon_sym_isize] = ACTIONS(1691), - [anon_sym_usize] = ACTIONS(1691), - [anon_sym_f32] = ACTIONS(1691), - [anon_sym_f64] = ACTIONS(1691), - [anon_sym_bool] = ACTIONS(1691), - [anon_sym_str] = ACTIONS(1691), - [anon_sym_char] = ACTIONS(1691), - [anon_sym_SQUOTE] = ACTIONS(1691), - [anon_sym_async] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_default] = ACTIONS(1691), - [anon_sym_enum] = ACTIONS(1691), - [anon_sym_fn] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_impl] = ACTIONS(1691), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_loop] = ACTIONS(1691), - [anon_sym_match] = ACTIONS(1691), - [anon_sym_mod] = ACTIONS(1691), - [anon_sym_pub] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_struct] = ACTIONS(1691), - [anon_sym_trait] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_union] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1691), - [anon_sym_use] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_POUND] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_COLON_COLON] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_move] = ACTIONS(1691), - [sym_integer_literal] = ACTIONS(1689), - [aux_sym_string_literal_token1] = ACTIONS(1689), - [sym_char_literal] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(1691), - [anon_sym_false] = ACTIONS(1691), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1691), - [sym_super] = ACTIONS(1691), - [sym_crate] = ACTIONS(1691), - [sym_metavariable] = ACTIONS(1689), - [sym_raw_string_literal] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1689), + [ts_builtin_sym_end] = ACTIONS(1680), + [sym_identifier] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_macro_rules_BANG] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_u8] = ACTIONS(1682), + [anon_sym_i8] = ACTIONS(1682), + [anon_sym_u16] = ACTIONS(1682), + [anon_sym_i16] = ACTIONS(1682), + [anon_sym_u32] = ACTIONS(1682), + [anon_sym_i32] = ACTIONS(1682), + [anon_sym_u64] = ACTIONS(1682), + [anon_sym_i64] = ACTIONS(1682), + [anon_sym_u128] = ACTIONS(1682), + [anon_sym_i128] = ACTIONS(1682), + [anon_sym_isize] = ACTIONS(1682), + [anon_sym_usize] = ACTIONS(1682), + [anon_sym_f32] = ACTIONS(1682), + [anon_sym_f64] = ACTIONS(1682), + [anon_sym_bool] = ACTIONS(1682), + [anon_sym_str] = ACTIONS(1682), + [anon_sym_char] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_async] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_const] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_default] = ACTIONS(1682), + [anon_sym_enum] = ACTIONS(1682), + [anon_sym_fn] = ACTIONS(1682), + [anon_sym_for] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_impl] = ACTIONS(1682), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_loop] = ACTIONS(1682), + [anon_sym_match] = ACTIONS(1682), + [anon_sym_mod] = ACTIONS(1682), + [anon_sym_pub] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_static] = ACTIONS(1682), + [anon_sym_struct] = ACTIONS(1682), + [anon_sym_trait] = ACTIONS(1682), + [anon_sym_type] = ACTIONS(1682), + [anon_sym_union] = ACTIONS(1682), + [anon_sym_unsafe] = ACTIONS(1682), + [anon_sym_use] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_extern] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(1680), + [anon_sym_COLON_COLON] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_DOT_DOT] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_move] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1680), + [aux_sym_string_literal_token1] = ACTIONS(1680), + [sym_char_literal] = ACTIONS(1680), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1682), + [sym_super] = ACTIONS(1682), + [sym_crate] = ACTIONS(1682), + [sym_metavariable] = ACTIONS(1680), + [sym_raw_string_literal] = ACTIONS(1680), + [sym_float_literal] = ACTIONS(1680), [sym_block_comment] = ACTIONS(3), }, [398] = { - [ts_builtin_sym_end] = ACTIONS(1693), - [sym_identifier] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_macro_rules_BANG] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_STAR] = ACTIONS(1693), - [anon_sym_u8] = ACTIONS(1695), - [anon_sym_i8] = ACTIONS(1695), - [anon_sym_u16] = ACTIONS(1695), - [anon_sym_i16] = ACTIONS(1695), - [anon_sym_u32] = ACTIONS(1695), - [anon_sym_i32] = ACTIONS(1695), - [anon_sym_u64] = ACTIONS(1695), - [anon_sym_i64] = ACTIONS(1695), - [anon_sym_u128] = ACTIONS(1695), - [anon_sym_i128] = ACTIONS(1695), - [anon_sym_isize] = ACTIONS(1695), - [anon_sym_usize] = ACTIONS(1695), - [anon_sym_f32] = ACTIONS(1695), - [anon_sym_f64] = ACTIONS(1695), - [anon_sym_bool] = ACTIONS(1695), - [anon_sym_str] = ACTIONS(1695), - [anon_sym_char] = ACTIONS(1695), - [anon_sym_SQUOTE] = ACTIONS(1695), - [anon_sym_async] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_default] = ACTIONS(1695), - [anon_sym_enum] = ACTIONS(1695), - [anon_sym_fn] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_impl] = ACTIONS(1695), - [anon_sym_let] = ACTIONS(1695), - [anon_sym_loop] = ACTIONS(1695), - [anon_sym_match] = ACTIONS(1695), - [anon_sym_mod] = ACTIONS(1695), - [anon_sym_pub] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1695), - [anon_sym_struct] = ACTIONS(1695), - [anon_sym_trait] = ACTIONS(1695), - [anon_sym_type] = ACTIONS(1695), - [anon_sym_union] = ACTIONS(1695), - [anon_sym_unsafe] = ACTIONS(1695), - [anon_sym_use] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_POUND] = ACTIONS(1693), - [anon_sym_BANG] = ACTIONS(1693), - [anon_sym_extern] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1693), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_AMP] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_move] = ACTIONS(1695), - [sym_integer_literal] = ACTIONS(1693), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1693), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1695), - [sym_super] = ACTIONS(1695), - [sym_crate] = ACTIONS(1695), - [sym_metavariable] = ACTIONS(1693), - [sym_raw_string_literal] = ACTIONS(1693), - [sym_float_literal] = ACTIONS(1693), + [ts_builtin_sym_end] = ACTIONS(1684), + [sym_identifier] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_macro_rules_BANG] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_SQUOTE] = ACTIONS(1686), + [anon_sym_async] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_default] = ACTIONS(1686), + [anon_sym_enum] = ACTIONS(1686), + [anon_sym_fn] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_impl] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_mod] = ACTIONS(1686), + [anon_sym_pub] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_static] = ACTIONS(1686), + [anon_sym_struct] = ACTIONS(1686), + [anon_sym_trait] = ACTIONS(1686), + [anon_sym_type] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(1686), + [anon_sym_unsafe] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1684), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PIPE] = ACTIONS(1684), + [anon_sym_move] = ACTIONS(1686), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1684), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1686), + [anon_sym_false] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1686), + [sym_super] = ACTIONS(1686), + [sym_crate] = ACTIONS(1686), + [sym_metavariable] = ACTIONS(1684), + [sym_raw_string_literal] = ACTIONS(1684), + [sym_float_literal] = ACTIONS(1684), [sym_block_comment] = ACTIONS(3), }, [399] = { - [ts_builtin_sym_end] = ACTIONS(1697), - [sym_identifier] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_macro_rules_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(1697), - [anon_sym_RBRACE] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1697), - [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_SQUOTE] = ACTIONS(1699), - [anon_sym_async] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_impl] = ACTIONS(1699), - [anon_sym_let] = ACTIONS(1699), - [anon_sym_loop] = ACTIONS(1699), - [anon_sym_match] = ACTIONS(1699), - [anon_sym_mod] = ACTIONS(1699), - [anon_sym_pub] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1699), - [anon_sym_trait] = ACTIONS(1699), - [anon_sym_type] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_unsafe] = ACTIONS(1699), - [anon_sym_use] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(1697), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_COLON_COLON] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_DOT_DOT] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_PIPE] = ACTIONS(1697), - [anon_sym_move] = ACTIONS(1699), - [sym_integer_literal] = ACTIONS(1697), - [aux_sym_string_literal_token1] = ACTIONS(1697), - [sym_char_literal] = ACTIONS(1697), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1699), - [sym_super] = ACTIONS(1699), - [sym_crate] = ACTIONS(1699), - [sym_metavariable] = ACTIONS(1697), - [sym_raw_string_literal] = ACTIONS(1697), - [sym_float_literal] = ACTIONS(1697), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_macro_rules_BANG] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_u8] = ACTIONS(1690), + [anon_sym_i8] = ACTIONS(1690), + [anon_sym_u16] = ACTIONS(1690), + [anon_sym_i16] = ACTIONS(1690), + [anon_sym_u32] = ACTIONS(1690), + [anon_sym_i32] = ACTIONS(1690), + [anon_sym_u64] = ACTIONS(1690), + [anon_sym_i64] = ACTIONS(1690), + [anon_sym_u128] = ACTIONS(1690), + [anon_sym_i128] = ACTIONS(1690), + [anon_sym_isize] = ACTIONS(1690), + [anon_sym_usize] = ACTIONS(1690), + [anon_sym_f32] = ACTIONS(1690), + [anon_sym_f64] = ACTIONS(1690), + [anon_sym_bool] = ACTIONS(1690), + [anon_sym_str] = ACTIONS(1690), + [anon_sym_char] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_break] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(1690), + [anon_sym_default] = ACTIONS(1690), + [anon_sym_enum] = ACTIONS(1690), + [anon_sym_fn] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(1690), + [anon_sym_impl] = ACTIONS(1690), + [anon_sym_let] = ACTIONS(1690), + [anon_sym_loop] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_mod] = ACTIONS(1690), + [anon_sym_pub] = ACTIONS(1690), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1690), + [anon_sym_struct] = ACTIONS(1690), + [anon_sym_trait] = ACTIONS(1690), + [anon_sym_type] = ACTIONS(1690), + [anon_sym_union] = ACTIONS(1690), + [anon_sym_unsafe] = ACTIONS(1690), + [anon_sym_use] = ACTIONS(1690), + [anon_sym_while] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1688), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_extern] = ACTIONS(1690), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_move] = ACTIONS(1690), + [sym_integer_literal] = ACTIONS(1688), + [aux_sym_string_literal_token1] = ACTIONS(1688), + [sym_char_literal] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1690), + [anon_sym_false] = ACTIONS(1690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1688), + [sym_raw_string_literal] = ACTIONS(1688), + [sym_float_literal] = ACTIONS(1688), [sym_block_comment] = ACTIONS(3), }, [400] = { - [ts_builtin_sym_end] = ACTIONS(1701), - [sym_identifier] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_macro_rules_BANG] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1701), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_u8] = ACTIONS(1703), - [anon_sym_i8] = ACTIONS(1703), - [anon_sym_u16] = ACTIONS(1703), - [anon_sym_i16] = ACTIONS(1703), - [anon_sym_u32] = ACTIONS(1703), - [anon_sym_i32] = ACTIONS(1703), - [anon_sym_u64] = ACTIONS(1703), - [anon_sym_i64] = ACTIONS(1703), - [anon_sym_u128] = ACTIONS(1703), - [anon_sym_i128] = ACTIONS(1703), - [anon_sym_isize] = ACTIONS(1703), - [anon_sym_usize] = ACTIONS(1703), - [anon_sym_f32] = ACTIONS(1703), - [anon_sym_f64] = ACTIONS(1703), - [anon_sym_bool] = ACTIONS(1703), - [anon_sym_str] = ACTIONS(1703), - [anon_sym_char] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_default] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_impl] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_mod] = ACTIONS(1703), - [anon_sym_pub] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_trait] = ACTIONS(1703), - [anon_sym_type] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_unsafe] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(1701), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_COLON_COLON] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_DOT_DOT] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1701), - [anon_sym_move] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1701), - [aux_sym_string_literal_token1] = ACTIONS(1701), - [sym_char_literal] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(1703), - [anon_sym_false] = ACTIONS(1703), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1703), - [sym_super] = ACTIONS(1703), - [sym_crate] = ACTIONS(1703), - [sym_metavariable] = ACTIONS(1701), - [sym_raw_string_literal] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1701), + [ts_builtin_sym_end] = ACTIONS(1692), + [sym_identifier] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_macro_rules_BANG] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_u8] = ACTIONS(1694), + [anon_sym_i8] = ACTIONS(1694), + [anon_sym_u16] = ACTIONS(1694), + [anon_sym_i16] = ACTIONS(1694), + [anon_sym_u32] = ACTIONS(1694), + [anon_sym_i32] = ACTIONS(1694), + [anon_sym_u64] = ACTIONS(1694), + [anon_sym_i64] = ACTIONS(1694), + [anon_sym_u128] = ACTIONS(1694), + [anon_sym_i128] = ACTIONS(1694), + [anon_sym_isize] = ACTIONS(1694), + [anon_sym_usize] = ACTIONS(1694), + [anon_sym_f32] = ACTIONS(1694), + [anon_sym_f64] = ACTIONS(1694), + [anon_sym_bool] = ACTIONS(1694), + [anon_sym_str] = ACTIONS(1694), + [anon_sym_char] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1694), + [anon_sym_async] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1694), + [anon_sym_enum] = ACTIONS(1694), + [anon_sym_fn] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_impl] = ACTIONS(1694), + [anon_sym_let] = ACTIONS(1694), + [anon_sym_loop] = ACTIONS(1694), + [anon_sym_match] = ACTIONS(1694), + [anon_sym_mod] = ACTIONS(1694), + [anon_sym_pub] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_static] = ACTIONS(1694), + [anon_sym_struct] = ACTIONS(1694), + [anon_sym_trait] = ACTIONS(1694), + [anon_sym_type] = ACTIONS(1694), + [anon_sym_union] = ACTIONS(1694), + [anon_sym_unsafe] = ACTIONS(1694), + [anon_sym_use] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_extern] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_COLON_COLON] = ACTIONS(1692), + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_DOT_DOT] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_move] = ACTIONS(1694), + [sym_integer_literal] = ACTIONS(1692), + [aux_sym_string_literal_token1] = ACTIONS(1692), + [sym_char_literal] = ACTIONS(1692), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1694), + [sym_super] = ACTIONS(1694), + [sym_crate] = ACTIONS(1694), + [sym_metavariable] = ACTIONS(1692), + [sym_raw_string_literal] = ACTIONS(1692), + [sym_float_literal] = ACTIONS(1692), [sym_block_comment] = ACTIONS(3), }, [401] = { - [ts_builtin_sym_end] = ACTIONS(1705), - [sym_identifier] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_macro_rules_BANG] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_u8] = ACTIONS(1707), - [anon_sym_i8] = ACTIONS(1707), - [anon_sym_u16] = ACTIONS(1707), - [anon_sym_i16] = ACTIONS(1707), - [anon_sym_u32] = ACTIONS(1707), - [anon_sym_i32] = ACTIONS(1707), - [anon_sym_u64] = ACTIONS(1707), - [anon_sym_i64] = ACTIONS(1707), - [anon_sym_u128] = ACTIONS(1707), - [anon_sym_i128] = ACTIONS(1707), - [anon_sym_isize] = ACTIONS(1707), - [anon_sym_usize] = ACTIONS(1707), - [anon_sym_f32] = ACTIONS(1707), - [anon_sym_f64] = ACTIONS(1707), - [anon_sym_bool] = ACTIONS(1707), - [anon_sym_str] = ACTIONS(1707), - [anon_sym_char] = ACTIONS(1707), - [anon_sym_SQUOTE] = ACTIONS(1707), - [anon_sym_async] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_fn] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_impl] = ACTIONS(1707), - [anon_sym_let] = ACTIONS(1707), - [anon_sym_loop] = ACTIONS(1707), - [anon_sym_match] = ACTIONS(1707), - [anon_sym_mod] = ACTIONS(1707), - [anon_sym_pub] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_trait] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_unsafe] = ACTIONS(1707), - [anon_sym_use] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_COLON_COLON] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_move] = ACTIONS(1707), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1705), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1707), - [sym_super] = ACTIONS(1707), - [sym_crate] = ACTIONS(1707), - [sym_metavariable] = ACTIONS(1705), - [sym_raw_string_literal] = ACTIONS(1705), - [sym_float_literal] = ACTIONS(1705), + [ts_builtin_sym_end] = ACTIONS(1696), + [sym_identifier] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_macro_rules_BANG] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_u8] = ACTIONS(1698), + [anon_sym_i8] = ACTIONS(1698), + [anon_sym_u16] = ACTIONS(1698), + [anon_sym_i16] = ACTIONS(1698), + [anon_sym_u32] = ACTIONS(1698), + [anon_sym_i32] = ACTIONS(1698), + [anon_sym_u64] = ACTIONS(1698), + [anon_sym_i64] = ACTIONS(1698), + [anon_sym_u128] = ACTIONS(1698), + [anon_sym_i128] = ACTIONS(1698), + [anon_sym_isize] = ACTIONS(1698), + [anon_sym_usize] = ACTIONS(1698), + [anon_sym_f32] = ACTIONS(1698), + [anon_sym_f64] = ACTIONS(1698), + [anon_sym_bool] = ACTIONS(1698), + [anon_sym_str] = ACTIONS(1698), + [anon_sym_char] = ACTIONS(1698), + [anon_sym_SQUOTE] = ACTIONS(1698), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), + [anon_sym_enum] = ACTIONS(1698), + [anon_sym_fn] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_impl] = ACTIONS(1698), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_loop] = ACTIONS(1698), + [anon_sym_match] = ACTIONS(1698), + [anon_sym_mod] = ACTIONS(1698), + [anon_sym_pub] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_struct] = ACTIONS(1698), + [anon_sym_trait] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_union] = ACTIONS(1698), + [anon_sym_unsafe] = ACTIONS(1698), + [anon_sym_use] = ACTIONS(1698), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_POUND] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_extern] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1696), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_move] = ACTIONS(1698), + [sym_integer_literal] = ACTIONS(1696), + [aux_sym_string_literal_token1] = ACTIONS(1696), + [sym_char_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1698), + [anon_sym_false] = ACTIONS(1698), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1698), + [sym_super] = ACTIONS(1698), + [sym_crate] = ACTIONS(1698), + [sym_metavariable] = ACTIONS(1696), + [sym_raw_string_literal] = ACTIONS(1696), + [sym_float_literal] = ACTIONS(1696), [sym_block_comment] = ACTIONS(3), }, [402] = { - [ts_builtin_sym_end] = ACTIONS(1709), - [sym_identifier] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_macro_rules_BANG] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1709), - [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_SQUOTE] = ACTIONS(1711), - [anon_sym_async] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_enum] = ACTIONS(1711), - [anon_sym_fn] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_impl] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1711), - [anon_sym_pub] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_static] = ACTIONS(1711), - [anon_sym_struct] = ACTIONS(1711), - [anon_sym_trait] = ACTIONS(1711), - [anon_sym_type] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [anon_sym_unsafe] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(1709), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1709), - [anon_sym_COLON_COLON] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1709), - [anon_sym_DOT_DOT] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_move] = ACTIONS(1711), - [sym_integer_literal] = ACTIONS(1709), - [aux_sym_string_literal_token1] = ACTIONS(1709), - [sym_char_literal] = ACTIONS(1709), - [anon_sym_true] = ACTIONS(1711), - [anon_sym_false] = ACTIONS(1711), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1709), - [sym_raw_string_literal] = ACTIONS(1709), - [sym_float_literal] = ACTIONS(1709), + [ts_builtin_sym_end] = ACTIONS(1700), + [sym_identifier] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_macro_rules_BANG] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_STAR] = ACTIONS(1700), + [anon_sym_u8] = ACTIONS(1702), + [anon_sym_i8] = ACTIONS(1702), + [anon_sym_u16] = ACTIONS(1702), + [anon_sym_i16] = ACTIONS(1702), + [anon_sym_u32] = ACTIONS(1702), + [anon_sym_i32] = ACTIONS(1702), + [anon_sym_u64] = ACTIONS(1702), + [anon_sym_i64] = ACTIONS(1702), + [anon_sym_u128] = ACTIONS(1702), + [anon_sym_i128] = ACTIONS(1702), + [anon_sym_isize] = ACTIONS(1702), + [anon_sym_usize] = ACTIONS(1702), + [anon_sym_f32] = ACTIONS(1702), + [anon_sym_f64] = ACTIONS(1702), + [anon_sym_bool] = ACTIONS(1702), + [anon_sym_str] = ACTIONS(1702), + [anon_sym_char] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_async] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_continue] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_enum] = ACTIONS(1702), + [anon_sym_fn] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_impl] = ACTIONS(1702), + [anon_sym_let] = ACTIONS(1702), + [anon_sym_loop] = ACTIONS(1702), + [anon_sym_match] = ACTIONS(1702), + [anon_sym_mod] = ACTIONS(1702), + [anon_sym_pub] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1702), + [anon_sym_struct] = ACTIONS(1702), + [anon_sym_trait] = ACTIONS(1702), + [anon_sym_type] = ACTIONS(1702), + [anon_sym_union] = ACTIONS(1702), + [anon_sym_unsafe] = ACTIONS(1702), + [anon_sym_use] = ACTIONS(1702), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1700), + [anon_sym_DOT_DOT] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_move] = ACTIONS(1702), + [sym_integer_literal] = ACTIONS(1700), + [aux_sym_string_literal_token1] = ACTIONS(1700), + [sym_char_literal] = ACTIONS(1700), + [anon_sym_true] = ACTIONS(1702), + [anon_sym_false] = ACTIONS(1702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1702), + [sym_super] = ACTIONS(1702), + [sym_crate] = ACTIONS(1702), + [sym_metavariable] = ACTIONS(1700), + [sym_raw_string_literal] = ACTIONS(1700), + [sym_float_literal] = ACTIONS(1700), [sym_block_comment] = ACTIONS(3), }, [403] = { - [ts_builtin_sym_end] = ACTIONS(1713), - [sym_identifier] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_macro_rules_BANG] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1713), - [anon_sym_u8] = ACTIONS(1715), - [anon_sym_i8] = ACTIONS(1715), - [anon_sym_u16] = ACTIONS(1715), - [anon_sym_i16] = ACTIONS(1715), - [anon_sym_u32] = ACTIONS(1715), - [anon_sym_i32] = ACTIONS(1715), - [anon_sym_u64] = ACTIONS(1715), - [anon_sym_i64] = ACTIONS(1715), - [anon_sym_u128] = ACTIONS(1715), - [anon_sym_i128] = ACTIONS(1715), - [anon_sym_isize] = ACTIONS(1715), - [anon_sym_usize] = ACTIONS(1715), - [anon_sym_f32] = ACTIONS(1715), - [anon_sym_f64] = ACTIONS(1715), - [anon_sym_bool] = ACTIONS(1715), - [anon_sym_str] = ACTIONS(1715), - [anon_sym_char] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [anon_sym_async] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_default] = ACTIONS(1715), - [anon_sym_enum] = ACTIONS(1715), - [anon_sym_fn] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_impl] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_mod] = ACTIONS(1715), - [anon_sym_pub] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1715), - [anon_sym_struct] = ACTIONS(1715), - [anon_sym_trait] = ACTIONS(1715), - [anon_sym_type] = ACTIONS(1715), - [anon_sym_union] = ACTIONS(1715), - [anon_sym_unsafe] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_BANG] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_move] = ACTIONS(1715), - [sym_integer_literal] = ACTIONS(1713), - [aux_sym_string_literal_token1] = ACTIONS(1713), - [sym_char_literal] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1715), - [sym_super] = ACTIONS(1715), - [sym_crate] = ACTIONS(1715), - [sym_metavariable] = ACTIONS(1713), - [sym_raw_string_literal] = ACTIONS(1713), - [sym_float_literal] = ACTIONS(1713), + [ts_builtin_sym_end] = ACTIONS(1704), + [sym_identifier] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_macro_rules_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_u8] = ACTIONS(1706), + [anon_sym_i8] = ACTIONS(1706), + [anon_sym_u16] = ACTIONS(1706), + [anon_sym_i16] = ACTIONS(1706), + [anon_sym_u32] = ACTIONS(1706), + [anon_sym_i32] = ACTIONS(1706), + [anon_sym_u64] = ACTIONS(1706), + [anon_sym_i64] = ACTIONS(1706), + [anon_sym_u128] = ACTIONS(1706), + [anon_sym_i128] = ACTIONS(1706), + [anon_sym_isize] = ACTIONS(1706), + [anon_sym_usize] = ACTIONS(1706), + [anon_sym_f32] = ACTIONS(1706), + [anon_sym_f64] = ACTIONS(1706), + [anon_sym_bool] = ACTIONS(1706), + [anon_sym_str] = ACTIONS(1706), + [anon_sym_char] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_enum] = ACTIONS(1706), + [anon_sym_fn] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_impl] = ACTIONS(1706), + [anon_sym_let] = ACTIONS(1706), + [anon_sym_loop] = ACTIONS(1706), + [anon_sym_match] = ACTIONS(1706), + [anon_sym_mod] = ACTIONS(1706), + [anon_sym_pub] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_struct] = ACTIONS(1706), + [anon_sym_trait] = ACTIONS(1706), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_unsafe] = ACTIONS(1706), + [anon_sym_use] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_extern] = ACTIONS(1706), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_COLON_COLON] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_move] = ACTIONS(1706), + [sym_integer_literal] = ACTIONS(1704), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1704), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1706), + [sym_super] = ACTIONS(1706), + [sym_crate] = ACTIONS(1706), + [sym_metavariable] = ACTIONS(1704), + [sym_raw_string_literal] = ACTIONS(1704), + [sym_float_literal] = ACTIONS(1704), [sym_block_comment] = ACTIONS(3), }, [404] = { - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_macro_rules_BANG] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_u8] = ACTIONS(1719), - [anon_sym_i8] = ACTIONS(1719), - [anon_sym_u16] = ACTIONS(1719), - [anon_sym_i16] = ACTIONS(1719), - [anon_sym_u32] = ACTIONS(1719), - [anon_sym_i32] = ACTIONS(1719), - [anon_sym_u64] = ACTIONS(1719), - [anon_sym_i64] = ACTIONS(1719), - [anon_sym_u128] = ACTIONS(1719), - [anon_sym_i128] = ACTIONS(1719), - [anon_sym_isize] = ACTIONS(1719), - [anon_sym_usize] = ACTIONS(1719), - [anon_sym_f32] = ACTIONS(1719), - [anon_sym_f64] = ACTIONS(1719), - [anon_sym_bool] = ACTIONS(1719), - [anon_sym_str] = ACTIONS(1719), - [anon_sym_char] = ACTIONS(1719), - [anon_sym_SQUOTE] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [anon_sym_fn] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_impl] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_mod] = ACTIONS(1719), - [anon_sym_pub] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_struct] = ACTIONS(1719), - [anon_sym_trait] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_union] = ACTIONS(1719), - [anon_sym_unsafe] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1717), - [anon_sym_COLON_COLON] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_move] = ACTIONS(1719), - [sym_integer_literal] = ACTIONS(1717), - [aux_sym_string_literal_token1] = ACTIONS(1717), - [sym_char_literal] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1719), - [anon_sym_false] = ACTIONS(1719), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_crate] = ACTIONS(1719), - [sym_metavariable] = ACTIONS(1717), - [sym_raw_string_literal] = ACTIONS(1717), - [sym_float_literal] = ACTIONS(1717), + [ts_builtin_sym_end] = ACTIONS(1708), + [sym_identifier] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_macro_rules_BANG] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_RBRACE] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_u8] = ACTIONS(1710), + [anon_sym_i8] = ACTIONS(1710), + [anon_sym_u16] = ACTIONS(1710), + [anon_sym_i16] = ACTIONS(1710), + [anon_sym_u32] = ACTIONS(1710), + [anon_sym_i32] = ACTIONS(1710), + [anon_sym_u64] = ACTIONS(1710), + [anon_sym_i64] = ACTIONS(1710), + [anon_sym_u128] = ACTIONS(1710), + [anon_sym_i128] = ACTIONS(1710), + [anon_sym_isize] = ACTIONS(1710), + [anon_sym_usize] = ACTIONS(1710), + [anon_sym_f32] = ACTIONS(1710), + [anon_sym_f64] = ACTIONS(1710), + [anon_sym_bool] = ACTIONS(1710), + [anon_sym_str] = ACTIONS(1710), + [anon_sym_char] = ACTIONS(1710), + [anon_sym_SQUOTE] = ACTIONS(1710), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_break] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1710), + [anon_sym_continue] = ACTIONS(1710), + [anon_sym_default] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1710), + [anon_sym_fn] = ACTIONS(1710), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_impl] = ACTIONS(1710), + [anon_sym_let] = ACTIONS(1710), + [anon_sym_loop] = ACTIONS(1710), + [anon_sym_match] = ACTIONS(1710), + [anon_sym_mod] = ACTIONS(1710), + [anon_sym_pub] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(1710), + [anon_sym_static] = ACTIONS(1710), + [anon_sym_struct] = ACTIONS(1710), + [anon_sym_trait] = ACTIONS(1710), + [anon_sym_type] = ACTIONS(1710), + [anon_sym_union] = ACTIONS(1710), + [anon_sym_unsafe] = ACTIONS(1710), + [anon_sym_use] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1710), + [anon_sym_POUND] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1710), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_COLON_COLON] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_DOT_DOT] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_move] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1708), + [aux_sym_string_literal_token1] = ACTIONS(1708), + [sym_char_literal] = ACTIONS(1708), + [anon_sym_true] = ACTIONS(1710), + [anon_sym_false] = ACTIONS(1710), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1710), + [sym_super] = ACTIONS(1710), + [sym_crate] = ACTIONS(1710), + [sym_metavariable] = ACTIONS(1708), + [sym_raw_string_literal] = ACTIONS(1708), + [sym_float_literal] = ACTIONS(1708), [sym_block_comment] = ACTIONS(3), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(1721), - [sym_identifier] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_macro_rules_BANG] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_u8] = ACTIONS(1723), - [anon_sym_i8] = ACTIONS(1723), - [anon_sym_u16] = ACTIONS(1723), - [anon_sym_i16] = ACTIONS(1723), - [anon_sym_u32] = ACTIONS(1723), - [anon_sym_i32] = ACTIONS(1723), - [anon_sym_u64] = ACTIONS(1723), - [anon_sym_i64] = ACTIONS(1723), - [anon_sym_u128] = ACTIONS(1723), - [anon_sym_i128] = ACTIONS(1723), - [anon_sym_isize] = ACTIONS(1723), - [anon_sym_usize] = ACTIONS(1723), - [anon_sym_f32] = ACTIONS(1723), - [anon_sym_f64] = ACTIONS(1723), - [anon_sym_bool] = ACTIONS(1723), - [anon_sym_str] = ACTIONS(1723), - [anon_sym_char] = ACTIONS(1723), - [anon_sym_SQUOTE] = ACTIONS(1723), - [anon_sym_async] = ACTIONS(1723), - [anon_sym_break] = ACTIONS(1723), - [anon_sym_const] = ACTIONS(1723), - [anon_sym_continue] = ACTIONS(1723), - [anon_sym_default] = ACTIONS(1723), - [anon_sym_enum] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1723), - [anon_sym_for] = ACTIONS(1723), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_impl] = ACTIONS(1723), - [anon_sym_let] = ACTIONS(1723), - [anon_sym_loop] = ACTIONS(1723), - [anon_sym_match] = ACTIONS(1723), - [anon_sym_mod] = ACTIONS(1723), - [anon_sym_pub] = ACTIONS(1723), - [anon_sym_return] = ACTIONS(1723), - [anon_sym_static] = ACTIONS(1723), - [anon_sym_struct] = ACTIONS(1723), - [anon_sym_trait] = ACTIONS(1723), - [anon_sym_type] = ACTIONS(1723), - [anon_sym_union] = ACTIONS(1723), - [anon_sym_unsafe] = ACTIONS(1723), - [anon_sym_use] = ACTIONS(1723), - [anon_sym_while] = ACTIONS(1723), - [anon_sym_POUND] = ACTIONS(1721), - [anon_sym_BANG] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1721), - [anon_sym_COLON_COLON] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_move] = ACTIONS(1723), - [sym_integer_literal] = ACTIONS(1721), - [aux_sym_string_literal_token1] = ACTIONS(1721), - [sym_char_literal] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1723), - [sym_super] = ACTIONS(1723), - [sym_crate] = ACTIONS(1723), - [sym_metavariable] = ACTIONS(1721), - [sym_raw_string_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(1721), + [ts_builtin_sym_end] = ACTIONS(1712), + [sym_identifier] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_macro_rules_BANG] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(1712), + [anon_sym_u8] = ACTIONS(1714), + [anon_sym_i8] = ACTIONS(1714), + [anon_sym_u16] = ACTIONS(1714), + [anon_sym_i16] = ACTIONS(1714), + [anon_sym_u32] = ACTIONS(1714), + [anon_sym_i32] = ACTIONS(1714), + [anon_sym_u64] = ACTIONS(1714), + [anon_sym_i64] = ACTIONS(1714), + [anon_sym_u128] = ACTIONS(1714), + [anon_sym_i128] = ACTIONS(1714), + [anon_sym_isize] = ACTIONS(1714), + [anon_sym_usize] = ACTIONS(1714), + [anon_sym_f32] = ACTIONS(1714), + [anon_sym_f64] = ACTIONS(1714), + [anon_sym_bool] = ACTIONS(1714), + [anon_sym_str] = ACTIONS(1714), + [anon_sym_char] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_async] = ACTIONS(1714), + [anon_sym_break] = ACTIONS(1714), + [anon_sym_const] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(1714), + [anon_sym_default] = ACTIONS(1714), + [anon_sym_enum] = ACTIONS(1714), + [anon_sym_fn] = ACTIONS(1714), + [anon_sym_for] = ACTIONS(1714), + [anon_sym_if] = ACTIONS(1714), + [anon_sym_impl] = ACTIONS(1714), + [anon_sym_let] = ACTIONS(1714), + [anon_sym_loop] = ACTIONS(1714), + [anon_sym_match] = ACTIONS(1714), + [anon_sym_mod] = ACTIONS(1714), + [anon_sym_pub] = ACTIONS(1714), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_static] = ACTIONS(1714), + [anon_sym_struct] = ACTIONS(1714), + [anon_sym_trait] = ACTIONS(1714), + [anon_sym_type] = ACTIONS(1714), + [anon_sym_union] = ACTIONS(1714), + [anon_sym_unsafe] = ACTIONS(1714), + [anon_sym_use] = ACTIONS(1714), + [anon_sym_while] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(1712), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_extern] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1712), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1712), + [anon_sym_DOT_DOT] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_move] = ACTIONS(1714), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1712), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1714), + [anon_sym_false] = ACTIONS(1714), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1714), + [sym_super] = ACTIONS(1714), + [sym_crate] = ACTIONS(1714), + [sym_metavariable] = ACTIONS(1712), + [sym_raw_string_literal] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1712), [sym_block_comment] = ACTIONS(3), }, [406] = { - [ts_builtin_sym_end] = ACTIONS(1725), - [sym_identifier] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_macro_rules_BANG] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_u8] = ACTIONS(1727), - [anon_sym_i8] = ACTIONS(1727), - [anon_sym_u16] = ACTIONS(1727), - [anon_sym_i16] = ACTIONS(1727), - [anon_sym_u32] = ACTIONS(1727), - [anon_sym_i32] = ACTIONS(1727), - [anon_sym_u64] = ACTIONS(1727), - [anon_sym_i64] = ACTIONS(1727), - [anon_sym_u128] = ACTIONS(1727), - [anon_sym_i128] = ACTIONS(1727), - [anon_sym_isize] = ACTIONS(1727), - [anon_sym_usize] = ACTIONS(1727), - [anon_sym_f32] = ACTIONS(1727), - [anon_sym_f64] = ACTIONS(1727), - [anon_sym_bool] = ACTIONS(1727), - [anon_sym_str] = ACTIONS(1727), - [anon_sym_char] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1727), - [anon_sym_async] = ACTIONS(1727), - [anon_sym_break] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(1727), - [anon_sym_continue] = ACTIONS(1727), - [anon_sym_default] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1727), - [anon_sym_fn] = ACTIONS(1727), - [anon_sym_for] = ACTIONS(1727), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_impl] = ACTIONS(1727), - [anon_sym_let] = ACTIONS(1727), - [anon_sym_loop] = ACTIONS(1727), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_mod] = ACTIONS(1727), - [anon_sym_pub] = ACTIONS(1727), - [anon_sym_return] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1727), - [anon_sym_trait] = ACTIONS(1727), - [anon_sym_type] = ACTIONS(1727), - [anon_sym_union] = ACTIONS(1727), - [anon_sym_unsafe] = ACTIONS(1727), - [anon_sym_use] = ACTIONS(1727), - [anon_sym_while] = ACTIONS(1727), - [anon_sym_POUND] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1727), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_COLON_COLON] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_move] = ACTIONS(1727), - [sym_integer_literal] = ACTIONS(1725), - [aux_sym_string_literal_token1] = ACTIONS(1725), - [sym_char_literal] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1727), - [sym_super] = ACTIONS(1727), - [sym_crate] = ACTIONS(1727), - [sym_metavariable] = ACTIONS(1725), - [sym_raw_string_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(1725), + [ts_builtin_sym_end] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_macro_rules_BANG] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_u8] = ACTIONS(1718), + [anon_sym_i8] = ACTIONS(1718), + [anon_sym_u16] = ACTIONS(1718), + [anon_sym_i16] = ACTIONS(1718), + [anon_sym_u32] = ACTIONS(1718), + [anon_sym_i32] = ACTIONS(1718), + [anon_sym_u64] = ACTIONS(1718), + [anon_sym_i64] = ACTIONS(1718), + [anon_sym_u128] = ACTIONS(1718), + [anon_sym_i128] = ACTIONS(1718), + [anon_sym_isize] = ACTIONS(1718), + [anon_sym_usize] = ACTIONS(1718), + [anon_sym_f32] = ACTIONS(1718), + [anon_sym_f64] = ACTIONS(1718), + [anon_sym_bool] = ACTIONS(1718), + [anon_sym_str] = ACTIONS(1718), + [anon_sym_char] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_async] = ACTIONS(1718), + [anon_sym_break] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1718), + [anon_sym_continue] = ACTIONS(1718), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_enum] = ACTIONS(1718), + [anon_sym_fn] = ACTIONS(1718), + [anon_sym_for] = ACTIONS(1718), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_impl] = ACTIONS(1718), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_loop] = ACTIONS(1718), + [anon_sym_match] = ACTIONS(1718), + [anon_sym_mod] = ACTIONS(1718), + [anon_sym_pub] = ACTIONS(1718), + [anon_sym_return] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_struct] = ACTIONS(1718), + [anon_sym_trait] = ACTIONS(1718), + [anon_sym_type] = ACTIONS(1718), + [anon_sym_union] = ACTIONS(1718), + [anon_sym_unsafe] = ACTIONS(1718), + [anon_sym_use] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1716), + [anon_sym_COLON_COLON] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1716), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_move] = ACTIONS(1718), + [sym_integer_literal] = ACTIONS(1716), + [aux_sym_string_literal_token1] = ACTIONS(1716), + [sym_char_literal] = ACTIONS(1716), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1716), + [sym_raw_string_literal] = ACTIONS(1716), + [sym_float_literal] = ACTIONS(1716), [sym_block_comment] = ACTIONS(3), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(1729), - [sym_identifier] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_macro_rules_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_u8] = ACTIONS(1731), - [anon_sym_i8] = ACTIONS(1731), - [anon_sym_u16] = ACTIONS(1731), - [anon_sym_i16] = ACTIONS(1731), - [anon_sym_u32] = ACTIONS(1731), - [anon_sym_i32] = ACTIONS(1731), - [anon_sym_u64] = ACTIONS(1731), - [anon_sym_i64] = ACTIONS(1731), - [anon_sym_u128] = ACTIONS(1731), - [anon_sym_i128] = ACTIONS(1731), - [anon_sym_isize] = ACTIONS(1731), - [anon_sym_usize] = ACTIONS(1731), - [anon_sym_f32] = ACTIONS(1731), - [anon_sym_f64] = ACTIONS(1731), - [anon_sym_bool] = ACTIONS(1731), - [anon_sym_str] = ACTIONS(1731), - [anon_sym_char] = ACTIONS(1731), - [anon_sym_SQUOTE] = ACTIONS(1731), - [anon_sym_async] = ACTIONS(1731), - [anon_sym_break] = ACTIONS(1731), - [anon_sym_const] = ACTIONS(1731), - [anon_sym_continue] = ACTIONS(1731), - [anon_sym_default] = ACTIONS(1731), - [anon_sym_enum] = ACTIONS(1731), - [anon_sym_fn] = ACTIONS(1731), - [anon_sym_for] = ACTIONS(1731), - [anon_sym_if] = ACTIONS(1731), - [anon_sym_impl] = ACTIONS(1731), - [anon_sym_let] = ACTIONS(1731), - [anon_sym_loop] = ACTIONS(1731), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_mod] = ACTIONS(1731), - [anon_sym_pub] = ACTIONS(1731), - [anon_sym_return] = ACTIONS(1731), - [anon_sym_static] = ACTIONS(1731), - [anon_sym_struct] = ACTIONS(1731), - [anon_sym_trait] = ACTIONS(1731), - [anon_sym_type] = ACTIONS(1731), - [anon_sym_union] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1731), - [anon_sym_use] = ACTIONS(1731), - [anon_sym_while] = ACTIONS(1731), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_DOT_DOT] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_move] = ACTIONS(1731), - [sym_integer_literal] = ACTIONS(1729), - [aux_sym_string_literal_token1] = ACTIONS(1729), - [sym_char_literal] = ACTIONS(1729), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1731), - [sym_super] = ACTIONS(1731), - [sym_crate] = ACTIONS(1731), - [sym_metavariable] = ACTIONS(1729), - [sym_raw_string_literal] = ACTIONS(1729), - [sym_float_literal] = ACTIONS(1729), + [ts_builtin_sym_end] = ACTIONS(1720), + [sym_identifier] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_macro_rules_BANG] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1720), + [anon_sym_u8] = ACTIONS(1722), + [anon_sym_i8] = ACTIONS(1722), + [anon_sym_u16] = ACTIONS(1722), + [anon_sym_i16] = ACTIONS(1722), + [anon_sym_u32] = ACTIONS(1722), + [anon_sym_i32] = ACTIONS(1722), + [anon_sym_u64] = ACTIONS(1722), + [anon_sym_i64] = ACTIONS(1722), + [anon_sym_u128] = ACTIONS(1722), + [anon_sym_i128] = ACTIONS(1722), + [anon_sym_isize] = ACTIONS(1722), + [anon_sym_usize] = ACTIONS(1722), + [anon_sym_f32] = ACTIONS(1722), + [anon_sym_f64] = ACTIONS(1722), + [anon_sym_bool] = ACTIONS(1722), + [anon_sym_str] = ACTIONS(1722), + [anon_sym_char] = ACTIONS(1722), + [anon_sym_SQUOTE] = ACTIONS(1722), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_break] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(1722), + [anon_sym_default] = ACTIONS(1722), + [anon_sym_enum] = ACTIONS(1722), + [anon_sym_fn] = ACTIONS(1722), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1722), + [anon_sym_impl] = ACTIONS(1722), + [anon_sym_let] = ACTIONS(1722), + [anon_sym_loop] = ACTIONS(1722), + [anon_sym_match] = ACTIONS(1722), + [anon_sym_mod] = ACTIONS(1722), + [anon_sym_pub] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_struct] = ACTIONS(1722), + [anon_sym_trait] = ACTIONS(1722), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_union] = ACTIONS(1722), + [anon_sym_unsafe] = ACTIONS(1722), + [anon_sym_use] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1722), + [anon_sym_POUND] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1720), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1720), + [anon_sym_DOT_DOT] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_move] = ACTIONS(1722), + [sym_integer_literal] = ACTIONS(1720), + [aux_sym_string_literal_token1] = ACTIONS(1720), + [sym_char_literal] = ACTIONS(1720), + [anon_sym_true] = ACTIONS(1722), + [anon_sym_false] = ACTIONS(1722), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1722), + [sym_super] = ACTIONS(1722), + [sym_crate] = ACTIONS(1722), + [sym_metavariable] = ACTIONS(1720), + [sym_raw_string_literal] = ACTIONS(1720), + [sym_float_literal] = ACTIONS(1720), [sym_block_comment] = ACTIONS(3), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(1733), - [sym_identifier] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_macro_rules_BANG] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_u8] = ACTIONS(1735), - [anon_sym_i8] = ACTIONS(1735), - [anon_sym_u16] = ACTIONS(1735), - [anon_sym_i16] = ACTIONS(1735), - [anon_sym_u32] = ACTIONS(1735), - [anon_sym_i32] = ACTIONS(1735), - [anon_sym_u64] = ACTIONS(1735), - [anon_sym_i64] = ACTIONS(1735), - [anon_sym_u128] = ACTIONS(1735), - [anon_sym_i128] = ACTIONS(1735), - [anon_sym_isize] = ACTIONS(1735), - [anon_sym_usize] = ACTIONS(1735), - [anon_sym_f32] = ACTIONS(1735), - [anon_sym_f64] = ACTIONS(1735), - [anon_sym_bool] = ACTIONS(1735), - [anon_sym_str] = ACTIONS(1735), - [anon_sym_char] = ACTIONS(1735), - [anon_sym_SQUOTE] = ACTIONS(1735), - [anon_sym_async] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_fn] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_impl] = ACTIONS(1735), - [anon_sym_let] = ACTIONS(1735), - [anon_sym_loop] = ACTIONS(1735), - [anon_sym_match] = ACTIONS(1735), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_pub] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [anon_sym_trait] = ACTIONS(1735), - [anon_sym_type] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1735), - [anon_sym_use] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_move] = ACTIONS(1735), - [sym_integer_literal] = ACTIONS(1733), - [aux_sym_string_literal_token1] = ACTIONS(1733), - [sym_char_literal] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1735), - [anon_sym_false] = ACTIONS(1735), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1735), - [sym_super] = ACTIONS(1735), - [sym_crate] = ACTIONS(1735), - [sym_metavariable] = ACTIONS(1733), - [sym_raw_string_literal] = ACTIONS(1733), - [sym_float_literal] = ACTIONS(1733), + [sym_attribute_item] = STATE(523), + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_macro_invocation] = STATE(2313), + [sym_scoped_identifier] = STATE(1556), + [sym_scoped_type_identifier] = STATE(1971), + [sym_match_arm] = STATE(490), + [sym_last_match_arm] = STATE(2508), + [sym_match_pattern] = STATE(2318), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2065), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_enum_variant_list_repeat1] = STATE(523), + [aux_sym_match_block_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(680), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(1737), - [sym_identifier] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_macro_rules_BANG] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_u8] = ACTIONS(1739), - [anon_sym_i8] = ACTIONS(1739), - [anon_sym_u16] = ACTIONS(1739), - [anon_sym_i16] = ACTIONS(1739), - [anon_sym_u32] = ACTIONS(1739), - [anon_sym_i32] = ACTIONS(1739), - [anon_sym_u64] = ACTIONS(1739), - [anon_sym_i64] = ACTIONS(1739), - [anon_sym_u128] = ACTIONS(1739), - [anon_sym_i128] = ACTIONS(1739), - [anon_sym_isize] = ACTIONS(1739), - [anon_sym_usize] = ACTIONS(1739), - [anon_sym_f32] = ACTIONS(1739), - [anon_sym_f64] = ACTIONS(1739), - [anon_sym_bool] = ACTIONS(1739), - [anon_sym_str] = ACTIONS(1739), - [anon_sym_char] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_default] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), - [anon_sym_fn] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_impl] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_mod] = ACTIONS(1739), - [anon_sym_pub] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_struct] = ACTIONS(1739), - [anon_sym_trait] = ACTIONS(1739), - [anon_sym_type] = ACTIONS(1739), - [anon_sym_union] = ACTIONS(1739), - [anon_sym_unsafe] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_move] = ACTIONS(1739), - [sym_integer_literal] = ACTIONS(1737), - [aux_sym_string_literal_token1] = ACTIONS(1737), - [sym_char_literal] = ACTIONS(1737), - [anon_sym_true] = ACTIONS(1739), - [anon_sym_false] = ACTIONS(1739), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1739), - [sym_super] = ACTIONS(1739), - [sym_crate] = ACTIONS(1739), - [sym_metavariable] = ACTIONS(1737), - [sym_raw_string_literal] = ACTIONS(1737), - [sym_float_literal] = ACTIONS(1737), + [ts_builtin_sym_end] = ACTIONS(1724), + [sym_identifier] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1724), + [anon_sym_macro_rules_BANG] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_u8] = ACTIONS(1726), + [anon_sym_i8] = ACTIONS(1726), + [anon_sym_u16] = ACTIONS(1726), + [anon_sym_i16] = ACTIONS(1726), + [anon_sym_u32] = ACTIONS(1726), + [anon_sym_i32] = ACTIONS(1726), + [anon_sym_u64] = ACTIONS(1726), + [anon_sym_i64] = ACTIONS(1726), + [anon_sym_u128] = ACTIONS(1726), + [anon_sym_i128] = ACTIONS(1726), + [anon_sym_isize] = ACTIONS(1726), + [anon_sym_usize] = ACTIONS(1726), + [anon_sym_f32] = ACTIONS(1726), + [anon_sym_f64] = ACTIONS(1726), + [anon_sym_bool] = ACTIONS(1726), + [anon_sym_str] = ACTIONS(1726), + [anon_sym_char] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [anon_sym_async] = ACTIONS(1726), + [anon_sym_break] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1726), + [anon_sym_continue] = ACTIONS(1726), + [anon_sym_default] = ACTIONS(1726), + [anon_sym_enum] = ACTIONS(1726), + [anon_sym_fn] = ACTIONS(1726), + [anon_sym_for] = ACTIONS(1726), + [anon_sym_if] = ACTIONS(1726), + [anon_sym_impl] = ACTIONS(1726), + [anon_sym_let] = ACTIONS(1726), + [anon_sym_loop] = ACTIONS(1726), + [anon_sym_match] = ACTIONS(1726), + [anon_sym_mod] = ACTIONS(1726), + [anon_sym_pub] = ACTIONS(1726), + [anon_sym_return] = ACTIONS(1726), + [anon_sym_static] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(1726), + [anon_sym_trait] = ACTIONS(1726), + [anon_sym_type] = ACTIONS(1726), + [anon_sym_union] = ACTIONS(1726), + [anon_sym_unsafe] = ACTIONS(1726), + [anon_sym_use] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1726), + [anon_sym_POUND] = ACTIONS(1724), + [anon_sym_BANG] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_DOT_DOT] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_move] = ACTIONS(1726), + [sym_integer_literal] = ACTIONS(1724), + [aux_sym_string_literal_token1] = ACTIONS(1724), + [sym_char_literal] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1726), + [anon_sym_false] = ACTIONS(1726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1726), + [sym_super] = ACTIONS(1726), + [sym_crate] = ACTIONS(1726), + [sym_metavariable] = ACTIONS(1724), + [sym_raw_string_literal] = ACTIONS(1724), + [sym_float_literal] = ACTIONS(1724), [sym_block_comment] = ACTIONS(3), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(1741), - [sym_identifier] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_macro_rules_BANG] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_STAR] = ACTIONS(1741), - [anon_sym_u8] = ACTIONS(1743), - [anon_sym_i8] = ACTIONS(1743), - [anon_sym_u16] = ACTIONS(1743), - [anon_sym_i16] = ACTIONS(1743), - [anon_sym_u32] = ACTIONS(1743), - [anon_sym_i32] = ACTIONS(1743), - [anon_sym_u64] = ACTIONS(1743), - [anon_sym_i64] = ACTIONS(1743), - [anon_sym_u128] = ACTIONS(1743), - [anon_sym_i128] = ACTIONS(1743), - [anon_sym_isize] = ACTIONS(1743), - [anon_sym_usize] = ACTIONS(1743), - [anon_sym_f32] = ACTIONS(1743), - [anon_sym_f64] = ACTIONS(1743), - [anon_sym_bool] = ACTIONS(1743), - [anon_sym_str] = ACTIONS(1743), - [anon_sym_char] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1743), - [anon_sym_async] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [anon_sym_fn] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_impl] = ACTIONS(1743), - [anon_sym_let] = ACTIONS(1743), - [anon_sym_loop] = ACTIONS(1743), - [anon_sym_match] = ACTIONS(1743), - [anon_sym_mod] = ACTIONS(1743), - [anon_sym_pub] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1743), - [anon_sym_struct] = ACTIONS(1743), - [anon_sym_trait] = ACTIONS(1743), - [anon_sym_type] = ACTIONS(1743), - [anon_sym_union] = ACTIONS(1743), - [anon_sym_unsafe] = ACTIONS(1743), - [anon_sym_use] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_extern] = ACTIONS(1743), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_COLON_COLON] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_move] = ACTIONS(1743), - [sym_integer_literal] = ACTIONS(1741), - [aux_sym_string_literal_token1] = ACTIONS(1741), - [sym_char_literal] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1743), - [anon_sym_false] = ACTIONS(1743), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1743), - [sym_super] = ACTIONS(1743), - [sym_crate] = ACTIONS(1743), - [sym_metavariable] = ACTIONS(1741), - [sym_raw_string_literal] = ACTIONS(1741), - [sym_float_literal] = ACTIONS(1741), + [ts_builtin_sym_end] = ACTIONS(1728), + [sym_identifier] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_macro_rules_BANG] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(1730), + [anon_sym_break] = ACTIONS(1730), + [anon_sym_const] = ACTIONS(1730), + [anon_sym_continue] = ACTIONS(1730), + [anon_sym_default] = ACTIONS(1730), + [anon_sym_enum] = ACTIONS(1730), + [anon_sym_fn] = ACTIONS(1730), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_impl] = ACTIONS(1730), + [anon_sym_let] = ACTIONS(1730), + [anon_sym_loop] = ACTIONS(1730), + [anon_sym_match] = ACTIONS(1730), + [anon_sym_mod] = ACTIONS(1730), + [anon_sym_pub] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1730), + [anon_sym_struct] = ACTIONS(1730), + [anon_sym_trait] = ACTIONS(1730), + [anon_sym_type] = ACTIONS(1730), + [anon_sym_union] = ACTIONS(1730), + [anon_sym_unsafe] = ACTIONS(1730), + [anon_sym_use] = ACTIONS(1730), + [anon_sym_while] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_extern] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(1728), + [anon_sym_AMP] = ACTIONS(1728), + [anon_sym_DOT_DOT] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_move] = ACTIONS(1730), + [sym_integer_literal] = ACTIONS(1728), + [aux_sym_string_literal_token1] = ACTIONS(1728), + [sym_char_literal] = ACTIONS(1728), + [anon_sym_true] = ACTIONS(1730), + [anon_sym_false] = ACTIONS(1730), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1730), + [sym_super] = ACTIONS(1730), + [sym_crate] = ACTIONS(1730), + [sym_metavariable] = ACTIONS(1728), + [sym_raw_string_literal] = ACTIONS(1728), + [sym_float_literal] = ACTIONS(1728), [sym_block_comment] = ACTIONS(3), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(1745), - [sym_identifier] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_macro_rules_BANG] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_u8] = ACTIONS(1747), - [anon_sym_i8] = ACTIONS(1747), - [anon_sym_u16] = ACTIONS(1747), - [anon_sym_i16] = ACTIONS(1747), - [anon_sym_u32] = ACTIONS(1747), - [anon_sym_i32] = ACTIONS(1747), - [anon_sym_u64] = ACTIONS(1747), - [anon_sym_i64] = ACTIONS(1747), - [anon_sym_u128] = ACTIONS(1747), - [anon_sym_i128] = ACTIONS(1747), - [anon_sym_isize] = ACTIONS(1747), - [anon_sym_usize] = ACTIONS(1747), - [anon_sym_f32] = ACTIONS(1747), - [anon_sym_f64] = ACTIONS(1747), - [anon_sym_bool] = ACTIONS(1747), - [anon_sym_str] = ACTIONS(1747), - [anon_sym_char] = ACTIONS(1747), - [anon_sym_SQUOTE] = ACTIONS(1747), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_default] = ACTIONS(1747), - [anon_sym_enum] = ACTIONS(1747), - [anon_sym_fn] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_impl] = ACTIONS(1747), - [anon_sym_let] = ACTIONS(1747), - [anon_sym_loop] = ACTIONS(1747), - [anon_sym_match] = ACTIONS(1747), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_pub] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_static] = ACTIONS(1747), - [anon_sym_struct] = ACTIONS(1747), - [anon_sym_trait] = ACTIONS(1747), - [anon_sym_type] = ACTIONS(1747), - [anon_sym_union] = ACTIONS(1747), - [anon_sym_unsafe] = ACTIONS(1747), - [anon_sym_use] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(1745), - [anon_sym_BANG] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_COLON_COLON] = ACTIONS(1745), - [anon_sym_AMP] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_move] = ACTIONS(1747), - [sym_integer_literal] = ACTIONS(1745), - [aux_sym_string_literal_token1] = ACTIONS(1745), - [sym_char_literal] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(1747), - [anon_sym_false] = ACTIONS(1747), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1745), - [sym_raw_string_literal] = ACTIONS(1745), - [sym_float_literal] = ACTIONS(1745), + [ts_builtin_sym_end] = ACTIONS(1732), + [sym_identifier] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_macro_rules_BANG] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_u8] = ACTIONS(1734), + [anon_sym_i8] = ACTIONS(1734), + [anon_sym_u16] = ACTIONS(1734), + [anon_sym_i16] = ACTIONS(1734), + [anon_sym_u32] = ACTIONS(1734), + [anon_sym_i32] = ACTIONS(1734), + [anon_sym_u64] = ACTIONS(1734), + [anon_sym_i64] = ACTIONS(1734), + [anon_sym_u128] = ACTIONS(1734), + [anon_sym_i128] = ACTIONS(1734), + [anon_sym_isize] = ACTIONS(1734), + [anon_sym_usize] = ACTIONS(1734), + [anon_sym_f32] = ACTIONS(1734), + [anon_sym_f64] = ACTIONS(1734), + [anon_sym_bool] = ACTIONS(1734), + [anon_sym_str] = ACTIONS(1734), + [anon_sym_char] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_async] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_enum] = ACTIONS(1734), + [anon_sym_fn] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_impl] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1734), + [anon_sym_loop] = ACTIONS(1734), + [anon_sym_match] = ACTIONS(1734), + [anon_sym_mod] = ACTIONS(1734), + [anon_sym_pub] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1734), + [anon_sym_struct] = ACTIONS(1734), + [anon_sym_trait] = ACTIONS(1734), + [anon_sym_type] = ACTIONS(1734), + [anon_sym_union] = ACTIONS(1734), + [anon_sym_unsafe] = ACTIONS(1734), + [anon_sym_use] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_POUND] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_extern] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_move] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [aux_sym_string_literal_token1] = ACTIONS(1732), + [sym_char_literal] = ACTIONS(1732), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1734), + [sym_super] = ACTIONS(1734), + [sym_crate] = ACTIONS(1734), + [sym_metavariable] = ACTIONS(1732), + [sym_raw_string_literal] = ACTIONS(1732), + [sym_float_literal] = ACTIONS(1732), [sym_block_comment] = ACTIONS(3), }, [412] = { - [ts_builtin_sym_end] = ACTIONS(1749), - [sym_identifier] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_macro_rules_BANG] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_LBRACE] = ACTIONS(1749), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_u8] = ACTIONS(1751), - [anon_sym_i8] = ACTIONS(1751), - [anon_sym_u16] = ACTIONS(1751), - [anon_sym_i16] = ACTIONS(1751), - [anon_sym_u32] = ACTIONS(1751), - [anon_sym_i32] = ACTIONS(1751), - [anon_sym_u64] = ACTIONS(1751), - [anon_sym_i64] = ACTIONS(1751), - [anon_sym_u128] = ACTIONS(1751), - [anon_sym_i128] = ACTIONS(1751), - [anon_sym_isize] = ACTIONS(1751), - [anon_sym_usize] = ACTIONS(1751), - [anon_sym_f32] = ACTIONS(1751), - [anon_sym_f64] = ACTIONS(1751), - [anon_sym_bool] = ACTIONS(1751), - [anon_sym_str] = ACTIONS(1751), - [anon_sym_char] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1751), - [anon_sym_async] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1751), - [anon_sym_const] = ACTIONS(1751), - [anon_sym_continue] = ACTIONS(1751), - [anon_sym_default] = ACTIONS(1751), - [anon_sym_enum] = ACTIONS(1751), - [anon_sym_fn] = ACTIONS(1751), - [anon_sym_for] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(1751), - [anon_sym_impl] = ACTIONS(1751), - [anon_sym_let] = ACTIONS(1751), - [anon_sym_loop] = ACTIONS(1751), - [anon_sym_match] = ACTIONS(1751), - [anon_sym_mod] = ACTIONS(1751), - [anon_sym_pub] = ACTIONS(1751), - [anon_sym_return] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1751), - [anon_sym_struct] = ACTIONS(1751), - [anon_sym_trait] = ACTIONS(1751), - [anon_sym_type] = ACTIONS(1751), - [anon_sym_union] = ACTIONS(1751), - [anon_sym_unsafe] = ACTIONS(1751), - [anon_sym_use] = ACTIONS(1751), - [anon_sym_while] = ACTIONS(1751), - [anon_sym_POUND] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_extern] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1749), - [anon_sym_COLON_COLON] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_DOT_DOT] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_move] = ACTIONS(1751), - [sym_integer_literal] = ACTIONS(1749), - [aux_sym_string_literal_token1] = ACTIONS(1749), - [sym_char_literal] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(1751), - [anon_sym_false] = ACTIONS(1751), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1751), - [sym_super] = ACTIONS(1751), - [sym_crate] = ACTIONS(1751), - [sym_metavariable] = ACTIONS(1749), - [sym_raw_string_literal] = ACTIONS(1749), - [sym_float_literal] = ACTIONS(1749), + [ts_builtin_sym_end] = ACTIONS(1736), + [sym_identifier] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_macro_rules_BANG] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_STAR] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1738), + [anon_sym_async] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1738), + [anon_sym_enum] = ACTIONS(1738), + [anon_sym_fn] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_impl] = ACTIONS(1738), + [anon_sym_let] = ACTIONS(1738), + [anon_sym_loop] = ACTIONS(1738), + [anon_sym_match] = ACTIONS(1738), + [anon_sym_mod] = ACTIONS(1738), + [anon_sym_pub] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_static] = ACTIONS(1738), + [anon_sym_struct] = ACTIONS(1738), + [anon_sym_trait] = ACTIONS(1738), + [anon_sym_type] = ACTIONS(1738), + [anon_sym_union] = ACTIONS(1738), + [anon_sym_unsafe] = ACTIONS(1738), + [anon_sym_use] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1736), + [anon_sym_extern] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1736), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_AMP] = ACTIONS(1736), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_move] = ACTIONS(1738), + [sym_integer_literal] = ACTIONS(1736), + [aux_sym_string_literal_token1] = ACTIONS(1736), + [sym_char_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1738), + [sym_super] = ACTIONS(1738), + [sym_crate] = ACTIONS(1738), + [sym_metavariable] = ACTIONS(1736), + [sym_raw_string_literal] = ACTIONS(1736), + [sym_float_literal] = ACTIONS(1736), [sym_block_comment] = ACTIONS(3), }, [413] = { - [ts_builtin_sym_end] = ACTIONS(1753), - [sym_identifier] = ACTIONS(1755), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_macro_rules_BANG] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_RBRACE] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1753), - [anon_sym_STAR] = ACTIONS(1753), - [anon_sym_u8] = ACTIONS(1755), - [anon_sym_i8] = ACTIONS(1755), - [anon_sym_u16] = ACTIONS(1755), - [anon_sym_i16] = ACTIONS(1755), - [anon_sym_u32] = ACTIONS(1755), - [anon_sym_i32] = ACTIONS(1755), - [anon_sym_u64] = ACTIONS(1755), - [anon_sym_i64] = ACTIONS(1755), - [anon_sym_u128] = ACTIONS(1755), - [anon_sym_i128] = ACTIONS(1755), - [anon_sym_isize] = ACTIONS(1755), - [anon_sym_usize] = ACTIONS(1755), - [anon_sym_f32] = ACTIONS(1755), - [anon_sym_f64] = ACTIONS(1755), - [anon_sym_bool] = ACTIONS(1755), - [anon_sym_str] = ACTIONS(1755), - [anon_sym_char] = ACTIONS(1755), - [anon_sym_SQUOTE] = ACTIONS(1755), - [anon_sym_async] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_default] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [anon_sym_fn] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_impl] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_mod] = ACTIONS(1755), - [anon_sym_pub] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_struct] = ACTIONS(1755), - [anon_sym_trait] = ACTIONS(1755), - [anon_sym_type] = ACTIONS(1755), - [anon_sym_union] = ACTIONS(1755), - [anon_sym_unsafe] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_COLON_COLON] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1753), - [anon_sym_DOT_DOT] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1753), - [anon_sym_move] = ACTIONS(1755), - [sym_integer_literal] = ACTIONS(1753), - [aux_sym_string_literal_token1] = ACTIONS(1753), - [sym_char_literal] = ACTIONS(1753), - [anon_sym_true] = ACTIONS(1755), - [anon_sym_false] = ACTIONS(1755), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1755), - [sym_super] = ACTIONS(1755), - [sym_crate] = ACTIONS(1755), - [sym_metavariable] = ACTIONS(1753), - [sym_raw_string_literal] = ACTIONS(1753), - [sym_float_literal] = ACTIONS(1753), + [ts_builtin_sym_end] = ACTIONS(1740), + [sym_identifier] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_macro_rules_BANG] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_u8] = ACTIONS(1742), + [anon_sym_i8] = ACTIONS(1742), + [anon_sym_u16] = ACTIONS(1742), + [anon_sym_i16] = ACTIONS(1742), + [anon_sym_u32] = ACTIONS(1742), + [anon_sym_i32] = ACTIONS(1742), + [anon_sym_u64] = ACTIONS(1742), + [anon_sym_i64] = ACTIONS(1742), + [anon_sym_u128] = ACTIONS(1742), + [anon_sym_i128] = ACTIONS(1742), + [anon_sym_isize] = ACTIONS(1742), + [anon_sym_usize] = ACTIONS(1742), + [anon_sym_f32] = ACTIONS(1742), + [anon_sym_f64] = ACTIONS(1742), + [anon_sym_bool] = ACTIONS(1742), + [anon_sym_str] = ACTIONS(1742), + [anon_sym_char] = ACTIONS(1742), + [anon_sym_SQUOTE] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_break] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_continue] = ACTIONS(1742), + [anon_sym_default] = ACTIONS(1742), + [anon_sym_enum] = ACTIONS(1742), + [anon_sym_fn] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1742), + [anon_sym_impl] = ACTIONS(1742), + [anon_sym_let] = ACTIONS(1742), + [anon_sym_loop] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_mod] = ACTIONS(1742), + [anon_sym_pub] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1742), + [anon_sym_static] = ACTIONS(1742), + [anon_sym_struct] = ACTIONS(1742), + [anon_sym_trait] = ACTIONS(1742), + [anon_sym_type] = ACTIONS(1742), + [anon_sym_union] = ACTIONS(1742), + [anon_sym_unsafe] = ACTIONS(1742), + [anon_sym_use] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1742), + [anon_sym_POUND] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_extern] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1740), + [anon_sym_move] = ACTIONS(1742), + [sym_integer_literal] = ACTIONS(1740), + [aux_sym_string_literal_token1] = ACTIONS(1740), + [sym_char_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1742), + [anon_sym_false] = ACTIONS(1742), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1740), + [sym_raw_string_literal] = ACTIONS(1740), + [sym_float_literal] = ACTIONS(1740), [sym_block_comment] = ACTIONS(3), }, [414] = { - [ts_builtin_sym_end] = ACTIONS(1757), - [sym_identifier] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_macro_rules_BANG] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_u8] = ACTIONS(1759), - [anon_sym_i8] = ACTIONS(1759), - [anon_sym_u16] = ACTIONS(1759), - [anon_sym_i16] = ACTIONS(1759), - [anon_sym_u32] = ACTIONS(1759), - [anon_sym_i32] = ACTIONS(1759), - [anon_sym_u64] = ACTIONS(1759), - [anon_sym_i64] = ACTIONS(1759), - [anon_sym_u128] = ACTIONS(1759), - [anon_sym_i128] = ACTIONS(1759), - [anon_sym_isize] = ACTIONS(1759), - [anon_sym_usize] = ACTIONS(1759), - [anon_sym_f32] = ACTIONS(1759), - [anon_sym_f64] = ACTIONS(1759), - [anon_sym_bool] = ACTIONS(1759), - [anon_sym_str] = ACTIONS(1759), - [anon_sym_char] = ACTIONS(1759), - [anon_sym_SQUOTE] = ACTIONS(1759), - [anon_sym_async] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_fn] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_impl] = ACTIONS(1759), - [anon_sym_let] = ACTIONS(1759), - [anon_sym_loop] = ACTIONS(1759), - [anon_sym_match] = ACTIONS(1759), - [anon_sym_mod] = ACTIONS(1759), - [anon_sym_pub] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_static] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_trait] = ACTIONS(1759), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1759), - [anon_sym_unsafe] = ACTIONS(1759), - [anon_sym_use] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1759), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_COLON_COLON] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_move] = ACTIONS(1759), - [sym_integer_literal] = ACTIONS(1757), - [aux_sym_string_literal_token1] = ACTIONS(1757), - [sym_char_literal] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1759), - [sym_super] = ACTIONS(1759), - [sym_crate] = ACTIONS(1759), - [sym_metavariable] = ACTIONS(1757), - [sym_raw_string_literal] = ACTIONS(1757), - [sym_float_literal] = ACTIONS(1757), + [ts_builtin_sym_end] = ACTIONS(1744), + [sym_identifier] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_macro_rules_BANG] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_u8] = ACTIONS(1746), + [anon_sym_i8] = ACTIONS(1746), + [anon_sym_u16] = ACTIONS(1746), + [anon_sym_i16] = ACTIONS(1746), + [anon_sym_u32] = ACTIONS(1746), + [anon_sym_i32] = ACTIONS(1746), + [anon_sym_u64] = ACTIONS(1746), + [anon_sym_i64] = ACTIONS(1746), + [anon_sym_u128] = ACTIONS(1746), + [anon_sym_i128] = ACTIONS(1746), + [anon_sym_isize] = ACTIONS(1746), + [anon_sym_usize] = ACTIONS(1746), + [anon_sym_f32] = ACTIONS(1746), + [anon_sym_f64] = ACTIONS(1746), + [anon_sym_bool] = ACTIONS(1746), + [anon_sym_str] = ACTIONS(1746), + [anon_sym_char] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1746), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_const] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1746), + [anon_sym_default] = ACTIONS(1746), + [anon_sym_enum] = ACTIONS(1746), + [anon_sym_fn] = ACTIONS(1746), + [anon_sym_for] = ACTIONS(1746), + [anon_sym_if] = ACTIONS(1746), + [anon_sym_impl] = ACTIONS(1746), + [anon_sym_let] = ACTIONS(1746), + [anon_sym_loop] = ACTIONS(1746), + [anon_sym_match] = ACTIONS(1746), + [anon_sym_mod] = ACTIONS(1746), + [anon_sym_pub] = ACTIONS(1746), + [anon_sym_return] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1746), + [anon_sym_struct] = ACTIONS(1746), + [anon_sym_trait] = ACTIONS(1746), + [anon_sym_type] = ACTIONS(1746), + [anon_sym_union] = ACTIONS(1746), + [anon_sym_unsafe] = ACTIONS(1746), + [anon_sym_use] = ACTIONS(1746), + [anon_sym_while] = ACTIONS(1746), + [anon_sym_POUND] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_AMP] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_move] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [aux_sym_string_literal_token1] = ACTIONS(1744), + [sym_char_literal] = ACTIONS(1744), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1746), + [sym_super] = ACTIONS(1746), + [sym_crate] = ACTIONS(1746), + [sym_metavariable] = ACTIONS(1744), + [sym_raw_string_literal] = ACTIONS(1744), + [sym_float_literal] = ACTIONS(1744), [sym_block_comment] = ACTIONS(3), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(1761), - [sym_identifier] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_macro_rules_BANG] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(1761), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_u8] = ACTIONS(1763), - [anon_sym_i8] = ACTIONS(1763), - [anon_sym_u16] = ACTIONS(1763), - [anon_sym_i16] = ACTIONS(1763), - [anon_sym_u32] = ACTIONS(1763), - [anon_sym_i32] = ACTIONS(1763), - [anon_sym_u64] = ACTIONS(1763), - [anon_sym_i64] = ACTIONS(1763), - [anon_sym_u128] = ACTIONS(1763), - [anon_sym_i128] = ACTIONS(1763), - [anon_sym_isize] = ACTIONS(1763), - [anon_sym_usize] = ACTIONS(1763), - [anon_sym_f32] = ACTIONS(1763), - [anon_sym_f64] = ACTIONS(1763), - [anon_sym_bool] = ACTIONS(1763), - [anon_sym_str] = ACTIONS(1763), - [anon_sym_char] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1763), - [anon_sym_async] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_default] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [anon_sym_fn] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_impl] = ACTIONS(1763), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_loop] = ACTIONS(1763), - [anon_sym_match] = ACTIONS(1763), - [anon_sym_mod] = ACTIONS(1763), - [anon_sym_pub] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1763), - [anon_sym_trait] = ACTIONS(1763), - [anon_sym_type] = ACTIONS(1763), - [anon_sym_union] = ACTIONS(1763), - [anon_sym_unsafe] = ACTIONS(1763), - [anon_sym_use] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym_DOT_DOT] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_move] = ACTIONS(1763), - [sym_integer_literal] = ACTIONS(1761), - [aux_sym_string_literal_token1] = ACTIONS(1761), - [sym_char_literal] = ACTIONS(1761), - [anon_sym_true] = ACTIONS(1763), - [anon_sym_false] = ACTIONS(1763), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1763), - [sym_super] = ACTIONS(1763), - [sym_crate] = ACTIONS(1763), - [sym_metavariable] = ACTIONS(1761), - [sym_raw_string_literal] = ACTIONS(1761), - [sym_float_literal] = ACTIONS(1761), + [ts_builtin_sym_end] = ACTIONS(1748), + [sym_identifier] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_macro_rules_BANG] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_RBRACE] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1748), + [anon_sym_u8] = ACTIONS(1750), + [anon_sym_i8] = ACTIONS(1750), + [anon_sym_u16] = ACTIONS(1750), + [anon_sym_i16] = ACTIONS(1750), + [anon_sym_u32] = ACTIONS(1750), + [anon_sym_i32] = ACTIONS(1750), + [anon_sym_u64] = ACTIONS(1750), + [anon_sym_i64] = ACTIONS(1750), + [anon_sym_u128] = ACTIONS(1750), + [anon_sym_i128] = ACTIONS(1750), + [anon_sym_isize] = ACTIONS(1750), + [anon_sym_usize] = ACTIONS(1750), + [anon_sym_f32] = ACTIONS(1750), + [anon_sym_f64] = ACTIONS(1750), + [anon_sym_bool] = ACTIONS(1750), + [anon_sym_str] = ACTIONS(1750), + [anon_sym_char] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1750), + [anon_sym_async] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_const] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_enum] = ACTIONS(1750), + [anon_sym_fn] = ACTIONS(1750), + [anon_sym_for] = ACTIONS(1750), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_impl] = ACTIONS(1750), + [anon_sym_let] = ACTIONS(1750), + [anon_sym_loop] = ACTIONS(1750), + [anon_sym_match] = ACTIONS(1750), + [anon_sym_mod] = ACTIONS(1750), + [anon_sym_pub] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1750), + [anon_sym_struct] = ACTIONS(1750), + [anon_sym_trait] = ACTIONS(1750), + [anon_sym_type] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_unsafe] = ACTIONS(1750), + [anon_sym_use] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_POUND] = ACTIONS(1748), + [anon_sym_BANG] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1748), + [anon_sym_COLON_COLON] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1748), + [anon_sym_DOT_DOT] = ACTIONS(1748), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PIPE] = ACTIONS(1748), + [anon_sym_move] = ACTIONS(1750), + [sym_integer_literal] = ACTIONS(1748), + [aux_sym_string_literal_token1] = ACTIONS(1748), + [sym_char_literal] = ACTIONS(1748), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1750), + [sym_super] = ACTIONS(1750), + [sym_crate] = ACTIONS(1750), + [sym_metavariable] = ACTIONS(1748), + [sym_raw_string_literal] = ACTIONS(1748), + [sym_float_literal] = ACTIONS(1748), [sym_block_comment] = ACTIONS(3), }, [416] = { - [ts_builtin_sym_end] = ACTIONS(1765), - [sym_identifier] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_macro_rules_BANG] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_u8] = ACTIONS(1767), - [anon_sym_i8] = ACTIONS(1767), - [anon_sym_u16] = ACTIONS(1767), - [anon_sym_i16] = ACTIONS(1767), - [anon_sym_u32] = ACTIONS(1767), - [anon_sym_i32] = ACTIONS(1767), - [anon_sym_u64] = ACTIONS(1767), - [anon_sym_i64] = ACTIONS(1767), - [anon_sym_u128] = ACTIONS(1767), - [anon_sym_i128] = ACTIONS(1767), - [anon_sym_isize] = ACTIONS(1767), - [anon_sym_usize] = ACTIONS(1767), - [anon_sym_f32] = ACTIONS(1767), - [anon_sym_f64] = ACTIONS(1767), - [anon_sym_bool] = ACTIONS(1767), - [anon_sym_str] = ACTIONS(1767), - [anon_sym_char] = ACTIONS(1767), - [anon_sym_SQUOTE] = ACTIONS(1767), - [anon_sym_async] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1767), - [anon_sym_enum] = ACTIONS(1767), - [anon_sym_fn] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_impl] = ACTIONS(1767), - [anon_sym_let] = ACTIONS(1767), - [anon_sym_loop] = ACTIONS(1767), - [anon_sym_match] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1767), - [anon_sym_pub] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_static] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1767), - [anon_sym_trait] = ACTIONS(1767), - [anon_sym_type] = ACTIONS(1767), - [anon_sym_union] = ACTIONS(1767), - [anon_sym_unsafe] = ACTIONS(1767), - [anon_sym_use] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1767), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_COLON_COLON] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_move] = ACTIONS(1767), - [sym_integer_literal] = ACTIONS(1765), - [aux_sym_string_literal_token1] = ACTIONS(1765), - [sym_char_literal] = ACTIONS(1765), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1767), - [sym_super] = ACTIONS(1767), - [sym_crate] = ACTIONS(1767), - [sym_metavariable] = ACTIONS(1765), - [sym_raw_string_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), + [ts_builtin_sym_end] = ACTIONS(1752), + [sym_identifier] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_macro_rules_BANG] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_u8] = ACTIONS(1754), + [anon_sym_i8] = ACTIONS(1754), + [anon_sym_u16] = ACTIONS(1754), + [anon_sym_i16] = ACTIONS(1754), + [anon_sym_u32] = ACTIONS(1754), + [anon_sym_i32] = ACTIONS(1754), + [anon_sym_u64] = ACTIONS(1754), + [anon_sym_i64] = ACTIONS(1754), + [anon_sym_u128] = ACTIONS(1754), + [anon_sym_i128] = ACTIONS(1754), + [anon_sym_isize] = ACTIONS(1754), + [anon_sym_usize] = ACTIONS(1754), + [anon_sym_f32] = ACTIONS(1754), + [anon_sym_f64] = ACTIONS(1754), + [anon_sym_bool] = ACTIONS(1754), + [anon_sym_str] = ACTIONS(1754), + [anon_sym_char] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_async] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_const] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_default] = ACTIONS(1754), + [anon_sym_enum] = ACTIONS(1754), + [anon_sym_fn] = ACTIONS(1754), + [anon_sym_for] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_impl] = ACTIONS(1754), + [anon_sym_let] = ACTIONS(1754), + [anon_sym_loop] = ACTIONS(1754), + [anon_sym_match] = ACTIONS(1754), + [anon_sym_mod] = ACTIONS(1754), + [anon_sym_pub] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(1754), + [anon_sym_trait] = ACTIONS(1754), + [anon_sym_type] = ACTIONS(1754), + [anon_sym_union] = ACTIONS(1754), + [anon_sym_unsafe] = ACTIONS(1754), + [anon_sym_use] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_extern] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_PIPE] = ACTIONS(1752), + [anon_sym_move] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [aux_sym_string_literal_token1] = ACTIONS(1752), + [sym_char_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1754), + [sym_super] = ACTIONS(1754), + [sym_crate] = ACTIONS(1754), + [sym_metavariable] = ACTIONS(1752), + [sym_raw_string_literal] = ACTIONS(1752), + [sym_float_literal] = ACTIONS(1752), [sym_block_comment] = ACTIONS(3), }, [417] = { - [ts_builtin_sym_end] = ACTIONS(1769), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_macro_rules_BANG] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_u8] = ACTIONS(1771), - [anon_sym_i8] = ACTIONS(1771), - [anon_sym_u16] = ACTIONS(1771), - [anon_sym_i16] = ACTIONS(1771), - [anon_sym_u32] = ACTIONS(1771), - [anon_sym_i32] = ACTIONS(1771), - [anon_sym_u64] = ACTIONS(1771), - [anon_sym_i64] = ACTIONS(1771), - [anon_sym_u128] = ACTIONS(1771), - [anon_sym_i128] = ACTIONS(1771), - [anon_sym_isize] = ACTIONS(1771), - [anon_sym_usize] = ACTIONS(1771), - [anon_sym_f32] = ACTIONS(1771), - [anon_sym_f64] = ACTIONS(1771), - [anon_sym_bool] = ACTIONS(1771), - [anon_sym_str] = ACTIONS(1771), - [anon_sym_char] = ACTIONS(1771), - [anon_sym_SQUOTE] = ACTIONS(1771), - [anon_sym_async] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_default] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [anon_sym_fn] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_impl] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_loop] = ACTIONS(1771), - [anon_sym_match] = ACTIONS(1771), - [anon_sym_mod] = ACTIONS(1771), - [anon_sym_pub] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1771), - [anon_sym_trait] = ACTIONS(1771), - [anon_sym_type] = ACTIONS(1771), - [anon_sym_union] = ACTIONS(1771), - [anon_sym_unsafe] = ACTIONS(1771), - [anon_sym_use] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_COLON_COLON] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_move] = ACTIONS(1771), - [sym_integer_literal] = ACTIONS(1769), - [aux_sym_string_literal_token1] = ACTIONS(1769), - [sym_char_literal] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1771), - [sym_super] = ACTIONS(1771), - [sym_crate] = ACTIONS(1771), - [sym_metavariable] = ACTIONS(1769), - [sym_raw_string_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1769), + [ts_builtin_sym_end] = ACTIONS(1756), + [sym_identifier] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_macro_rules_BANG] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_u8] = ACTIONS(1758), + [anon_sym_i8] = ACTIONS(1758), + [anon_sym_u16] = ACTIONS(1758), + [anon_sym_i16] = ACTIONS(1758), + [anon_sym_u32] = ACTIONS(1758), + [anon_sym_i32] = ACTIONS(1758), + [anon_sym_u64] = ACTIONS(1758), + [anon_sym_i64] = ACTIONS(1758), + [anon_sym_u128] = ACTIONS(1758), + [anon_sym_i128] = ACTIONS(1758), + [anon_sym_isize] = ACTIONS(1758), + [anon_sym_usize] = ACTIONS(1758), + [anon_sym_f32] = ACTIONS(1758), + [anon_sym_f64] = ACTIONS(1758), + [anon_sym_bool] = ACTIONS(1758), + [anon_sym_str] = ACTIONS(1758), + [anon_sym_char] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_async] = ACTIONS(1758), + [anon_sym_break] = ACTIONS(1758), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_continue] = ACTIONS(1758), + [anon_sym_default] = ACTIONS(1758), + [anon_sym_enum] = ACTIONS(1758), + [anon_sym_fn] = ACTIONS(1758), + [anon_sym_for] = ACTIONS(1758), + [anon_sym_if] = ACTIONS(1758), + [anon_sym_impl] = ACTIONS(1758), + [anon_sym_let] = ACTIONS(1758), + [anon_sym_loop] = ACTIONS(1758), + [anon_sym_match] = ACTIONS(1758), + [anon_sym_mod] = ACTIONS(1758), + [anon_sym_pub] = ACTIONS(1758), + [anon_sym_return] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1758), + [anon_sym_struct] = ACTIONS(1758), + [anon_sym_trait] = ACTIONS(1758), + [anon_sym_type] = ACTIONS(1758), + [anon_sym_union] = ACTIONS(1758), + [anon_sym_unsafe] = ACTIONS(1758), + [anon_sym_use] = ACTIONS(1758), + [anon_sym_while] = ACTIONS(1758), + [anon_sym_POUND] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1756), + [anon_sym_extern] = ACTIONS(1758), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_move] = ACTIONS(1758), + [sym_integer_literal] = ACTIONS(1756), + [aux_sym_string_literal_token1] = ACTIONS(1756), + [sym_char_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1758), + [anon_sym_false] = ACTIONS(1758), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1758), + [sym_super] = ACTIONS(1758), + [sym_crate] = ACTIONS(1758), + [sym_metavariable] = ACTIONS(1756), + [sym_raw_string_literal] = ACTIONS(1756), + [sym_float_literal] = ACTIONS(1756), [sym_block_comment] = ACTIONS(3), }, [418] = { - [ts_builtin_sym_end] = ACTIONS(1773), - [sym_identifier] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_macro_rules_BANG] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1773), - [anon_sym_u8] = ACTIONS(1775), - [anon_sym_i8] = ACTIONS(1775), - [anon_sym_u16] = ACTIONS(1775), - [anon_sym_i16] = ACTIONS(1775), - [anon_sym_u32] = ACTIONS(1775), - [anon_sym_i32] = ACTIONS(1775), - [anon_sym_u64] = ACTIONS(1775), - [anon_sym_i64] = ACTIONS(1775), - [anon_sym_u128] = ACTIONS(1775), - [anon_sym_i128] = ACTIONS(1775), - [anon_sym_isize] = ACTIONS(1775), - [anon_sym_usize] = ACTIONS(1775), - [anon_sym_f32] = ACTIONS(1775), - [anon_sym_f64] = ACTIONS(1775), - [anon_sym_bool] = ACTIONS(1775), - [anon_sym_str] = ACTIONS(1775), - [anon_sym_char] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(1775), - [anon_sym_async] = ACTIONS(1775), - [anon_sym_break] = ACTIONS(1775), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_continue] = ACTIONS(1775), - [anon_sym_default] = ACTIONS(1775), - [anon_sym_enum] = ACTIONS(1775), - [anon_sym_fn] = ACTIONS(1775), - [anon_sym_for] = ACTIONS(1775), - [anon_sym_if] = ACTIONS(1775), - [anon_sym_impl] = ACTIONS(1775), - [anon_sym_let] = ACTIONS(1775), - [anon_sym_loop] = ACTIONS(1775), - [anon_sym_match] = ACTIONS(1775), - [anon_sym_mod] = ACTIONS(1775), - [anon_sym_pub] = ACTIONS(1775), - [anon_sym_return] = ACTIONS(1775), - [anon_sym_static] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1775), - [anon_sym_trait] = ACTIONS(1775), - [anon_sym_type] = ACTIONS(1775), - [anon_sym_union] = ACTIONS(1775), - [anon_sym_unsafe] = ACTIONS(1775), - [anon_sym_use] = ACTIONS(1775), - [anon_sym_while] = ACTIONS(1775), - [anon_sym_POUND] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_extern] = ACTIONS(1775), - [anon_sym_LT] = ACTIONS(1773), - [anon_sym_COLON_COLON] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_move] = ACTIONS(1775), - [sym_integer_literal] = ACTIONS(1773), - [aux_sym_string_literal_token1] = ACTIONS(1773), - [sym_char_literal] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1775), - [anon_sym_false] = ACTIONS(1775), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1775), - [sym_super] = ACTIONS(1775), - [sym_crate] = ACTIONS(1775), - [sym_metavariable] = ACTIONS(1773), - [sym_raw_string_literal] = ACTIONS(1773), - [sym_float_literal] = ACTIONS(1773), + [ts_builtin_sym_end] = ACTIONS(1760), + [sym_identifier] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_macro_rules_BANG] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_u8] = ACTIONS(1762), + [anon_sym_i8] = ACTIONS(1762), + [anon_sym_u16] = ACTIONS(1762), + [anon_sym_i16] = ACTIONS(1762), + [anon_sym_u32] = ACTIONS(1762), + [anon_sym_i32] = ACTIONS(1762), + [anon_sym_u64] = ACTIONS(1762), + [anon_sym_i64] = ACTIONS(1762), + [anon_sym_u128] = ACTIONS(1762), + [anon_sym_i128] = ACTIONS(1762), + [anon_sym_isize] = ACTIONS(1762), + [anon_sym_usize] = ACTIONS(1762), + [anon_sym_f32] = ACTIONS(1762), + [anon_sym_f64] = ACTIONS(1762), + [anon_sym_bool] = ACTIONS(1762), + [anon_sym_str] = ACTIONS(1762), + [anon_sym_char] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1762), + [anon_sym_async] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [anon_sym_fn] = ACTIONS(1762), + [anon_sym_for] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_impl] = ACTIONS(1762), + [anon_sym_let] = ACTIONS(1762), + [anon_sym_loop] = ACTIONS(1762), + [anon_sym_match] = ACTIONS(1762), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_pub] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_struct] = ACTIONS(1762), + [anon_sym_trait] = ACTIONS(1762), + [anon_sym_type] = ACTIONS(1762), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_unsafe] = ACTIONS(1762), + [anon_sym_use] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1760), + [anon_sym_AMP] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_move] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [aux_sym_string_literal_token1] = ACTIONS(1760), + [sym_char_literal] = ACTIONS(1760), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1762), + [sym_super] = ACTIONS(1762), + [sym_crate] = ACTIONS(1762), + [sym_metavariable] = ACTIONS(1760), + [sym_raw_string_literal] = ACTIONS(1760), + [sym_float_literal] = ACTIONS(1760), [sym_block_comment] = ACTIONS(3), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(1777), - [sym_identifier] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_macro_rules_BANG] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_LBRACK] = ACTIONS(1777), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_u8] = ACTIONS(1779), - [anon_sym_i8] = ACTIONS(1779), - [anon_sym_u16] = ACTIONS(1779), - [anon_sym_i16] = ACTIONS(1779), - [anon_sym_u32] = ACTIONS(1779), - [anon_sym_i32] = ACTIONS(1779), - [anon_sym_u64] = ACTIONS(1779), - [anon_sym_i64] = ACTIONS(1779), - [anon_sym_u128] = ACTIONS(1779), - [anon_sym_i128] = ACTIONS(1779), - [anon_sym_isize] = ACTIONS(1779), - [anon_sym_usize] = ACTIONS(1779), - [anon_sym_f32] = ACTIONS(1779), - [anon_sym_f64] = ACTIONS(1779), - [anon_sym_bool] = ACTIONS(1779), - [anon_sym_str] = ACTIONS(1779), - [anon_sym_char] = ACTIONS(1779), - [anon_sym_SQUOTE] = ACTIONS(1779), - [anon_sym_async] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_default] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [anon_sym_fn] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_impl] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_mod] = ACTIONS(1779), - [anon_sym_pub] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_struct] = ACTIONS(1779), - [anon_sym_trait] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_union] = ACTIONS(1779), - [anon_sym_unsafe] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(1777), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_LT] = ACTIONS(1777), - [anon_sym_COLON_COLON] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_DOT_DOT] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_move] = ACTIONS(1779), - [sym_integer_literal] = ACTIONS(1777), - [aux_sym_string_literal_token1] = ACTIONS(1777), - [sym_char_literal] = ACTIONS(1777), - [anon_sym_true] = ACTIONS(1779), - [anon_sym_false] = ACTIONS(1779), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1779), - [sym_super] = ACTIONS(1779), - [sym_crate] = ACTIONS(1779), - [sym_metavariable] = ACTIONS(1777), - [sym_raw_string_literal] = ACTIONS(1777), - [sym_float_literal] = ACTIONS(1777), + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_macro_rules_BANG] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_u8] = ACTIONS(1766), + [anon_sym_i8] = ACTIONS(1766), + [anon_sym_u16] = ACTIONS(1766), + [anon_sym_i16] = ACTIONS(1766), + [anon_sym_u32] = ACTIONS(1766), + [anon_sym_i32] = ACTIONS(1766), + [anon_sym_u64] = ACTIONS(1766), + [anon_sym_i64] = ACTIONS(1766), + [anon_sym_u128] = ACTIONS(1766), + [anon_sym_i128] = ACTIONS(1766), + [anon_sym_isize] = ACTIONS(1766), + [anon_sym_usize] = ACTIONS(1766), + [anon_sym_f32] = ACTIONS(1766), + [anon_sym_f64] = ACTIONS(1766), + [anon_sym_bool] = ACTIONS(1766), + [anon_sym_str] = ACTIONS(1766), + [anon_sym_char] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [anon_sym_fn] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_impl] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_mod] = ACTIONS(1766), + [anon_sym_pub] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_struct] = ACTIONS(1766), + [anon_sym_trait] = ACTIONS(1766), + [anon_sym_type] = ACTIONS(1766), + [anon_sym_union] = ACTIONS(1766), + [anon_sym_unsafe] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_DASH] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1764), + [anon_sym_move] = ACTIONS(1766), + [sym_integer_literal] = ACTIONS(1764), + [aux_sym_string_literal_token1] = ACTIONS(1764), + [sym_char_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1766), + [anon_sym_false] = ACTIONS(1766), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1766), + [sym_super] = ACTIONS(1766), + [sym_crate] = ACTIONS(1766), + [sym_metavariable] = ACTIONS(1764), + [sym_raw_string_literal] = ACTIONS(1764), + [sym_float_literal] = ACTIONS(1764), [sym_block_comment] = ACTIONS(3), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(1781), - [sym_identifier] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_macro_rules_BANG] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_u8] = ACTIONS(1783), - [anon_sym_i8] = ACTIONS(1783), - [anon_sym_u16] = ACTIONS(1783), - [anon_sym_i16] = ACTIONS(1783), - [anon_sym_u32] = ACTIONS(1783), - [anon_sym_i32] = ACTIONS(1783), - [anon_sym_u64] = ACTIONS(1783), - [anon_sym_i64] = ACTIONS(1783), - [anon_sym_u128] = ACTIONS(1783), - [anon_sym_i128] = ACTIONS(1783), - [anon_sym_isize] = ACTIONS(1783), - [anon_sym_usize] = ACTIONS(1783), - [anon_sym_f32] = ACTIONS(1783), - [anon_sym_f64] = ACTIONS(1783), - [anon_sym_bool] = ACTIONS(1783), - [anon_sym_str] = ACTIONS(1783), - [anon_sym_char] = ACTIONS(1783), - [anon_sym_SQUOTE] = ACTIONS(1783), - [anon_sym_async] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), - [anon_sym_fn] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_impl] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_mod] = ACTIONS(1783), - [anon_sym_pub] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_struct] = ACTIONS(1783), - [anon_sym_trait] = ACTIONS(1783), - [anon_sym_type] = ACTIONS(1783), - [anon_sym_union] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_COLON_COLON] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_move] = ACTIONS(1783), - [sym_integer_literal] = ACTIONS(1781), - [aux_sym_string_literal_token1] = ACTIONS(1781), - [sym_char_literal] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1783), - [anon_sym_false] = ACTIONS(1783), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1783), - [sym_super] = ACTIONS(1783), - [sym_crate] = ACTIONS(1783), - [sym_metavariable] = ACTIONS(1781), - [sym_raw_string_literal] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1781), + [ts_builtin_sym_end] = ACTIONS(1768), + [sym_identifier] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_macro_rules_BANG] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_u8] = ACTIONS(1770), + [anon_sym_i8] = ACTIONS(1770), + [anon_sym_u16] = ACTIONS(1770), + [anon_sym_i16] = ACTIONS(1770), + [anon_sym_u32] = ACTIONS(1770), + [anon_sym_i32] = ACTIONS(1770), + [anon_sym_u64] = ACTIONS(1770), + [anon_sym_i64] = ACTIONS(1770), + [anon_sym_u128] = ACTIONS(1770), + [anon_sym_i128] = ACTIONS(1770), + [anon_sym_isize] = ACTIONS(1770), + [anon_sym_usize] = ACTIONS(1770), + [anon_sym_f32] = ACTIONS(1770), + [anon_sym_f64] = ACTIONS(1770), + [anon_sym_bool] = ACTIONS(1770), + [anon_sym_str] = ACTIONS(1770), + [anon_sym_char] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_async] = ACTIONS(1770), + [anon_sym_break] = ACTIONS(1770), + [anon_sym_const] = ACTIONS(1770), + [anon_sym_continue] = ACTIONS(1770), + [anon_sym_default] = ACTIONS(1770), + [anon_sym_enum] = ACTIONS(1770), + [anon_sym_fn] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_impl] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1770), + [anon_sym_loop] = ACTIONS(1770), + [anon_sym_match] = ACTIONS(1770), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_pub] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1770), + [anon_sym_struct] = ACTIONS(1770), + [anon_sym_trait] = ACTIONS(1770), + [anon_sym_type] = ACTIONS(1770), + [anon_sym_union] = ACTIONS(1770), + [anon_sym_unsafe] = ACTIONS(1770), + [anon_sym_use] = ACTIONS(1770), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_extern] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_move] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [aux_sym_string_literal_token1] = ACTIONS(1768), + [sym_char_literal] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1770), + [sym_super] = ACTIONS(1770), + [sym_crate] = ACTIONS(1770), + [sym_metavariable] = ACTIONS(1768), + [sym_raw_string_literal] = ACTIONS(1768), + [sym_float_literal] = ACTIONS(1768), [sym_block_comment] = ACTIONS(3), }, [421] = { - [ts_builtin_sym_end] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_macro_rules_BANG] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_u8] = ACTIONS(1787), - [anon_sym_i8] = ACTIONS(1787), - [anon_sym_u16] = ACTIONS(1787), - [anon_sym_i16] = ACTIONS(1787), - [anon_sym_u32] = ACTIONS(1787), - [anon_sym_i32] = ACTIONS(1787), - [anon_sym_u64] = ACTIONS(1787), - [anon_sym_i64] = ACTIONS(1787), - [anon_sym_u128] = ACTIONS(1787), - [anon_sym_i128] = ACTIONS(1787), - [anon_sym_isize] = ACTIONS(1787), - [anon_sym_usize] = ACTIONS(1787), - [anon_sym_f32] = ACTIONS(1787), - [anon_sym_f64] = ACTIONS(1787), - [anon_sym_bool] = ACTIONS(1787), - [anon_sym_str] = ACTIONS(1787), - [anon_sym_char] = ACTIONS(1787), - [anon_sym_SQUOTE] = ACTIONS(1787), - [anon_sym_async] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_default] = ACTIONS(1787), - [anon_sym_enum] = ACTIONS(1787), - [anon_sym_fn] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_impl] = ACTIONS(1787), - [anon_sym_let] = ACTIONS(1787), - [anon_sym_loop] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_mod] = ACTIONS(1787), - [anon_sym_pub] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_trait] = ACTIONS(1787), - [anon_sym_type] = ACTIONS(1787), - [anon_sym_union] = ACTIONS(1787), - [anon_sym_unsafe] = ACTIONS(1787), - [anon_sym_use] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_BANG] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_COLON_COLON] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_move] = ACTIONS(1787), - [sym_integer_literal] = ACTIONS(1785), - [aux_sym_string_literal_token1] = ACTIONS(1785), - [sym_char_literal] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1787), - [sym_super] = ACTIONS(1787), - [sym_crate] = ACTIONS(1787), - [sym_metavariable] = ACTIONS(1785), - [sym_raw_string_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), + [sym__token_pattern] = STATE(436), + [sym_token_tree_pattern] = STATE(436), + [sym_token_binding_pattern] = STATE(436), + [sym_token_repetition_pattern] = STATE(436), + [sym__literal] = STATE(436), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(436), + [sym_identifier] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1496), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_async] = ACTIONS(1772), + [anon_sym_await] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [anon_sym_fn] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_impl] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_mod] = ACTIONS(1772), + [anon_sym_pub] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_struct] = ACTIONS(1772), + [anon_sym_trait] = ACTIONS(1772), + [anon_sym_type] = ACTIONS(1772), + [anon_sym_union] = ACTIONS(1772), + [anon_sym_unsafe] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_where] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [sym_mutable_specifier] = ACTIONS(1772), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_crate] = ACTIONS(1772), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [422] = { - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_macro_rules_BANG] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_u8] = ACTIONS(1791), - [anon_sym_i8] = ACTIONS(1791), - [anon_sym_u16] = ACTIONS(1791), - [anon_sym_i16] = ACTIONS(1791), - [anon_sym_u32] = ACTIONS(1791), - [anon_sym_i32] = ACTIONS(1791), - [anon_sym_u64] = ACTIONS(1791), - [anon_sym_i64] = ACTIONS(1791), - [anon_sym_u128] = ACTIONS(1791), - [anon_sym_i128] = ACTIONS(1791), - [anon_sym_isize] = ACTIONS(1791), - [anon_sym_usize] = ACTIONS(1791), - [anon_sym_f32] = ACTIONS(1791), - [anon_sym_f64] = ACTIONS(1791), - [anon_sym_bool] = ACTIONS(1791), - [anon_sym_str] = ACTIONS(1791), - [anon_sym_char] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_async] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_impl] = ACTIONS(1791), - [anon_sym_let] = ACTIONS(1791), - [anon_sym_loop] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_mod] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_static] = ACTIONS(1791), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_trait] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_use] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1789), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_extern] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(1789), - [anon_sym_COLON_COLON] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(1789), - [anon_sym_move] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [aux_sym_string_literal_token1] = ACTIONS(1789), - [sym_char_literal] = ACTIONS(1789), - [anon_sym_true] = ACTIONS(1791), - [anon_sym_false] = ACTIONS(1791), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1791), - [sym_super] = ACTIONS(1791), - [sym_crate] = ACTIONS(1791), - [sym_metavariable] = ACTIONS(1789), - [sym_raw_string_literal] = ACTIONS(1789), - [sym_float_literal] = ACTIONS(1789), + [sym_attribute_item] = STATE(523), + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_macro_invocation] = STATE(2313), + [sym_scoped_identifier] = STATE(1556), + [sym_scoped_type_identifier] = STATE(1971), + [sym_match_arm] = STATE(490), + [sym_last_match_arm] = STATE(2373), + [sym_match_pattern] = STATE(2318), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2065), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_enum_variant_list_repeat1] = STATE(523), + [aux_sym_match_block_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(680), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(1793), - [sym_identifier] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1793), - [anon_sym_macro_rules_BANG] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_u8] = ACTIONS(1795), - [anon_sym_i8] = ACTIONS(1795), - [anon_sym_u16] = ACTIONS(1795), - [anon_sym_i16] = ACTIONS(1795), - [anon_sym_u32] = ACTIONS(1795), - [anon_sym_i32] = ACTIONS(1795), - [anon_sym_u64] = ACTIONS(1795), - [anon_sym_i64] = ACTIONS(1795), - [anon_sym_u128] = ACTIONS(1795), - [anon_sym_i128] = ACTIONS(1795), - [anon_sym_isize] = ACTIONS(1795), - [anon_sym_usize] = ACTIONS(1795), - [anon_sym_f32] = ACTIONS(1795), - [anon_sym_f64] = ACTIONS(1795), - [anon_sym_bool] = ACTIONS(1795), - [anon_sym_str] = ACTIONS(1795), - [anon_sym_char] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [anon_sym_async] = ACTIONS(1795), - [anon_sym_break] = ACTIONS(1795), - [anon_sym_const] = ACTIONS(1795), - [anon_sym_continue] = ACTIONS(1795), - [anon_sym_default] = ACTIONS(1795), - [anon_sym_enum] = ACTIONS(1795), - [anon_sym_fn] = ACTIONS(1795), - [anon_sym_for] = ACTIONS(1795), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_impl] = ACTIONS(1795), - [anon_sym_let] = ACTIONS(1795), - [anon_sym_loop] = ACTIONS(1795), - [anon_sym_match] = ACTIONS(1795), - [anon_sym_mod] = ACTIONS(1795), - [anon_sym_pub] = ACTIONS(1795), - [anon_sym_return] = ACTIONS(1795), - [anon_sym_static] = ACTIONS(1795), - [anon_sym_struct] = ACTIONS(1795), - [anon_sym_trait] = ACTIONS(1795), - [anon_sym_type] = ACTIONS(1795), - [anon_sym_union] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1795), - [anon_sym_use] = ACTIONS(1795), - [anon_sym_while] = ACTIONS(1795), - [anon_sym_POUND] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1795), - [anon_sym_LT] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_PIPE] = ACTIONS(1793), - [anon_sym_move] = ACTIONS(1795), - [sym_integer_literal] = ACTIONS(1793), - [aux_sym_string_literal_token1] = ACTIONS(1793), - [sym_char_literal] = ACTIONS(1793), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1795), - [sym_super] = ACTIONS(1795), - [sym_crate] = ACTIONS(1795), - [sym_metavariable] = ACTIONS(1793), - [sym_raw_string_literal] = ACTIONS(1793), - [sym_float_literal] = ACTIONS(1793), + [ts_builtin_sym_end] = ACTIONS(1776), + [sym_identifier] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_macro_rules_BANG] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_u8] = ACTIONS(1778), + [anon_sym_i8] = ACTIONS(1778), + [anon_sym_u16] = ACTIONS(1778), + [anon_sym_i16] = ACTIONS(1778), + [anon_sym_u32] = ACTIONS(1778), + [anon_sym_i32] = ACTIONS(1778), + [anon_sym_u64] = ACTIONS(1778), + [anon_sym_i64] = ACTIONS(1778), + [anon_sym_u128] = ACTIONS(1778), + [anon_sym_i128] = ACTIONS(1778), + [anon_sym_isize] = ACTIONS(1778), + [anon_sym_usize] = ACTIONS(1778), + [anon_sym_f32] = ACTIONS(1778), + [anon_sym_f64] = ACTIONS(1778), + [anon_sym_bool] = ACTIONS(1778), + [anon_sym_str] = ACTIONS(1778), + [anon_sym_char] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(1778), + [anon_sym_async] = ACTIONS(1778), + [anon_sym_break] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(1778), + [anon_sym_continue] = ACTIONS(1778), + [anon_sym_default] = ACTIONS(1778), + [anon_sym_enum] = ACTIONS(1778), + [anon_sym_fn] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1778), + [anon_sym_if] = ACTIONS(1778), + [anon_sym_impl] = ACTIONS(1778), + [anon_sym_let] = ACTIONS(1778), + [anon_sym_loop] = ACTIONS(1778), + [anon_sym_match] = ACTIONS(1778), + [anon_sym_mod] = ACTIONS(1778), + [anon_sym_pub] = ACTIONS(1778), + [anon_sym_return] = ACTIONS(1778), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_struct] = ACTIONS(1778), + [anon_sym_trait] = ACTIONS(1778), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_union] = ACTIONS(1778), + [anon_sym_unsafe] = ACTIONS(1778), + [anon_sym_use] = ACTIONS(1778), + [anon_sym_while] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1778), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_move] = ACTIONS(1778), + [sym_integer_literal] = ACTIONS(1776), + [aux_sym_string_literal_token1] = ACTIONS(1776), + [sym_char_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1778), + [anon_sym_false] = ACTIONS(1778), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1778), + [sym_super] = ACTIONS(1778), + [sym_crate] = ACTIONS(1778), + [sym_metavariable] = ACTIONS(1776), + [sym_raw_string_literal] = ACTIONS(1776), + [sym_float_literal] = ACTIONS(1776), [sym_block_comment] = ACTIONS(3), }, [424] = { - [ts_builtin_sym_end] = ACTIONS(1797), - [sym_identifier] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_macro_rules_BANG] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_RBRACE] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_u8] = ACTIONS(1799), - [anon_sym_i8] = ACTIONS(1799), - [anon_sym_u16] = ACTIONS(1799), - [anon_sym_i16] = ACTIONS(1799), - [anon_sym_u32] = ACTIONS(1799), - [anon_sym_i32] = ACTIONS(1799), - [anon_sym_u64] = ACTIONS(1799), - [anon_sym_i64] = ACTIONS(1799), - [anon_sym_u128] = ACTIONS(1799), - [anon_sym_i128] = ACTIONS(1799), - [anon_sym_isize] = ACTIONS(1799), - [anon_sym_usize] = ACTIONS(1799), - [anon_sym_f32] = ACTIONS(1799), - [anon_sym_f64] = ACTIONS(1799), - [anon_sym_bool] = ACTIONS(1799), - [anon_sym_str] = ACTIONS(1799), - [anon_sym_char] = ACTIONS(1799), - [anon_sym_SQUOTE] = ACTIONS(1799), - [anon_sym_async] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_fn] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_impl] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_mod] = ACTIONS(1799), - [anon_sym_pub] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_trait] = ACTIONS(1799), - [anon_sym_type] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [anon_sym_unsafe] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_COLON_COLON] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_PIPE] = ACTIONS(1797), - [anon_sym_move] = ACTIONS(1799), - [sym_integer_literal] = ACTIONS(1797), - [aux_sym_string_literal_token1] = ACTIONS(1797), - [sym_char_literal] = ACTIONS(1797), - [anon_sym_true] = ACTIONS(1799), - [anon_sym_false] = ACTIONS(1799), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1799), - [sym_super] = ACTIONS(1799), - [sym_crate] = ACTIONS(1799), - [sym_metavariable] = ACTIONS(1797), - [sym_raw_string_literal] = ACTIONS(1797), - [sym_float_literal] = ACTIONS(1797), + [ts_builtin_sym_end] = ACTIONS(1780), + [sym_identifier] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_macro_rules_BANG] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_u8] = ACTIONS(1782), + [anon_sym_i8] = ACTIONS(1782), + [anon_sym_u16] = ACTIONS(1782), + [anon_sym_i16] = ACTIONS(1782), + [anon_sym_u32] = ACTIONS(1782), + [anon_sym_i32] = ACTIONS(1782), + [anon_sym_u64] = ACTIONS(1782), + [anon_sym_i64] = ACTIONS(1782), + [anon_sym_u128] = ACTIONS(1782), + [anon_sym_i128] = ACTIONS(1782), + [anon_sym_isize] = ACTIONS(1782), + [anon_sym_usize] = ACTIONS(1782), + [anon_sym_f32] = ACTIONS(1782), + [anon_sym_f64] = ACTIONS(1782), + [anon_sym_bool] = ACTIONS(1782), + [anon_sym_str] = ACTIONS(1782), + [anon_sym_char] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_async] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_default] = ACTIONS(1782), + [anon_sym_enum] = ACTIONS(1782), + [anon_sym_fn] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_impl] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_loop] = ACTIONS(1782), + [anon_sym_match] = ACTIONS(1782), + [anon_sym_mod] = ACTIONS(1782), + [anon_sym_pub] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1782), + [anon_sym_struct] = ACTIONS(1782), + [anon_sym_trait] = ACTIONS(1782), + [anon_sym_type] = ACTIONS(1782), + [anon_sym_union] = ACTIONS(1782), + [anon_sym_unsafe] = ACTIONS(1782), + [anon_sym_use] = ACTIONS(1782), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_POUND] = ACTIONS(1780), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_extern] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1780), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_move] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [aux_sym_string_literal_token1] = ACTIONS(1780), + [sym_char_literal] = ACTIONS(1780), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1782), + [sym_super] = ACTIONS(1782), + [sym_crate] = ACTIONS(1782), + [sym_metavariable] = ACTIONS(1780), + [sym_raw_string_literal] = ACTIONS(1780), + [sym_float_literal] = ACTIONS(1780), [sym_block_comment] = ACTIONS(3), }, [425] = { - [ts_builtin_sym_end] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_macro_rules_BANG] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_u8] = ACTIONS(1803), - [anon_sym_i8] = ACTIONS(1803), - [anon_sym_u16] = ACTIONS(1803), - [anon_sym_i16] = ACTIONS(1803), - [anon_sym_u32] = ACTIONS(1803), - [anon_sym_i32] = ACTIONS(1803), - [anon_sym_u64] = ACTIONS(1803), - [anon_sym_i64] = ACTIONS(1803), - [anon_sym_u128] = ACTIONS(1803), - [anon_sym_i128] = ACTIONS(1803), - [anon_sym_isize] = ACTIONS(1803), - [anon_sym_usize] = ACTIONS(1803), - [anon_sym_f32] = ACTIONS(1803), - [anon_sym_f64] = ACTIONS(1803), - [anon_sym_bool] = ACTIONS(1803), - [anon_sym_str] = ACTIONS(1803), - [anon_sym_char] = ACTIONS(1803), - [anon_sym_SQUOTE] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_fn] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_impl] = ACTIONS(1803), - [anon_sym_let] = ACTIONS(1803), - [anon_sym_loop] = ACTIONS(1803), - [anon_sym_match] = ACTIONS(1803), - [anon_sym_mod] = ACTIONS(1803), - [anon_sym_pub] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1803), - [anon_sym_trait] = ACTIONS(1803), - [anon_sym_type] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [anon_sym_unsafe] = ACTIONS(1803), - [anon_sym_use] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_POUND] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_COLON_COLON] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_move] = ACTIONS(1803), - [sym_integer_literal] = ACTIONS(1801), - [aux_sym_string_literal_token1] = ACTIONS(1801), - [sym_char_literal] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_crate] = ACTIONS(1803), - [sym_metavariable] = ACTIONS(1801), - [sym_raw_string_literal] = ACTIONS(1801), - [sym_float_literal] = ACTIONS(1801), + [ts_builtin_sym_end] = ACTIONS(1784), + [sym_identifier] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_macro_rules_BANG] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_u8] = ACTIONS(1786), + [anon_sym_i8] = ACTIONS(1786), + [anon_sym_u16] = ACTIONS(1786), + [anon_sym_i16] = ACTIONS(1786), + [anon_sym_u32] = ACTIONS(1786), + [anon_sym_i32] = ACTIONS(1786), + [anon_sym_u64] = ACTIONS(1786), + [anon_sym_i64] = ACTIONS(1786), + [anon_sym_u128] = ACTIONS(1786), + [anon_sym_i128] = ACTIONS(1786), + [anon_sym_isize] = ACTIONS(1786), + [anon_sym_usize] = ACTIONS(1786), + [anon_sym_f32] = ACTIONS(1786), + [anon_sym_f64] = ACTIONS(1786), + [anon_sym_bool] = ACTIONS(1786), + [anon_sym_str] = ACTIONS(1786), + [anon_sym_char] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_async] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_default] = ACTIONS(1786), + [anon_sym_enum] = ACTIONS(1786), + [anon_sym_fn] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_impl] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_mod] = ACTIONS(1786), + [anon_sym_pub] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_static] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1786), + [anon_sym_trait] = ACTIONS(1786), + [anon_sym_type] = ACTIONS(1786), + [anon_sym_union] = ACTIONS(1786), + [anon_sym_unsafe] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(1784), + [anon_sym_COLON_COLON] = ACTIONS(1784), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_DOT_DOT] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_move] = ACTIONS(1786), + [sym_integer_literal] = ACTIONS(1784), + [aux_sym_string_literal_token1] = ACTIONS(1784), + [sym_char_literal] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1786), + [sym_super] = ACTIONS(1786), + [sym_crate] = ACTIONS(1786), + [sym_metavariable] = ACTIONS(1784), + [sym_raw_string_literal] = ACTIONS(1784), + [sym_float_literal] = ACTIONS(1784), [sym_block_comment] = ACTIONS(3), }, [426] = { - [ts_builtin_sym_end] = ACTIONS(1805), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_macro_rules_BANG] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_u8] = ACTIONS(1807), - [anon_sym_i8] = ACTIONS(1807), - [anon_sym_u16] = ACTIONS(1807), - [anon_sym_i16] = ACTIONS(1807), - [anon_sym_u32] = ACTIONS(1807), - [anon_sym_i32] = ACTIONS(1807), - [anon_sym_u64] = ACTIONS(1807), - [anon_sym_i64] = ACTIONS(1807), - [anon_sym_u128] = ACTIONS(1807), - [anon_sym_i128] = ACTIONS(1807), - [anon_sym_isize] = ACTIONS(1807), - [anon_sym_usize] = ACTIONS(1807), - [anon_sym_f32] = ACTIONS(1807), - [anon_sym_f64] = ACTIONS(1807), - [anon_sym_bool] = ACTIONS(1807), - [anon_sym_str] = ACTIONS(1807), - [anon_sym_char] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_async] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_default] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [anon_sym_fn] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_impl] = ACTIONS(1807), - [anon_sym_let] = ACTIONS(1807), - [anon_sym_loop] = ACTIONS(1807), - [anon_sym_match] = ACTIONS(1807), - [anon_sym_mod] = ACTIONS(1807), - [anon_sym_pub] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1807), - [anon_sym_trait] = ACTIONS(1807), - [anon_sym_type] = ACTIONS(1807), - [anon_sym_union] = ACTIONS(1807), - [anon_sym_unsafe] = ACTIONS(1807), - [anon_sym_use] = ACTIONS(1807), - [anon_sym_while] = ACTIONS(1807), - [anon_sym_POUND] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_extern] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_COLON_COLON] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1805), - [anon_sym_move] = ACTIONS(1807), - [sym_integer_literal] = ACTIONS(1805), - [aux_sym_string_literal_token1] = ACTIONS(1805), - [sym_char_literal] = ACTIONS(1805), - [anon_sym_true] = ACTIONS(1807), - [anon_sym_false] = ACTIONS(1807), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1807), - [sym_super] = ACTIONS(1807), - [sym_crate] = ACTIONS(1807), - [sym_metavariable] = ACTIONS(1805), - [sym_raw_string_literal] = ACTIONS(1805), - [sym_float_literal] = ACTIONS(1805), + [ts_builtin_sym_end] = ACTIONS(1788), + [sym_identifier] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_macro_rules_BANG] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1788), + [anon_sym_u8] = ACTIONS(1790), + [anon_sym_i8] = ACTIONS(1790), + [anon_sym_u16] = ACTIONS(1790), + [anon_sym_i16] = ACTIONS(1790), + [anon_sym_u32] = ACTIONS(1790), + [anon_sym_i32] = ACTIONS(1790), + [anon_sym_u64] = ACTIONS(1790), + [anon_sym_i64] = ACTIONS(1790), + [anon_sym_u128] = ACTIONS(1790), + [anon_sym_i128] = ACTIONS(1790), + [anon_sym_isize] = ACTIONS(1790), + [anon_sym_usize] = ACTIONS(1790), + [anon_sym_f32] = ACTIONS(1790), + [anon_sym_f64] = ACTIONS(1790), + [anon_sym_bool] = ACTIONS(1790), + [anon_sym_str] = ACTIONS(1790), + [anon_sym_char] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_default] = ACTIONS(1790), + [anon_sym_enum] = ACTIONS(1790), + [anon_sym_fn] = ACTIONS(1790), + [anon_sym_for] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_impl] = ACTIONS(1790), + [anon_sym_let] = ACTIONS(1790), + [anon_sym_loop] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_mod] = ACTIONS(1790), + [anon_sym_pub] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1790), + [anon_sym_struct] = ACTIONS(1790), + [anon_sym_trait] = ACTIONS(1790), + [anon_sym_type] = ACTIONS(1790), + [anon_sym_union] = ACTIONS(1790), + [anon_sym_unsafe] = ACTIONS(1790), + [anon_sym_use] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(1788), + [anon_sym_BANG] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1788), + [anon_sym_COLON_COLON] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_move] = ACTIONS(1790), + [sym_integer_literal] = ACTIONS(1788), + [aux_sym_string_literal_token1] = ACTIONS(1788), + [sym_char_literal] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1790), + [sym_super] = ACTIONS(1790), + [sym_crate] = ACTIONS(1790), + [sym_metavariable] = ACTIONS(1788), + [sym_raw_string_literal] = ACTIONS(1788), + [sym_float_literal] = ACTIONS(1788), [sym_block_comment] = ACTIONS(3), }, [427] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_macro_rules_BANG] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_u8] = ACTIONS(1811), - [anon_sym_i8] = ACTIONS(1811), - [anon_sym_u16] = ACTIONS(1811), - [anon_sym_i16] = ACTIONS(1811), - [anon_sym_u32] = ACTIONS(1811), - [anon_sym_i32] = ACTIONS(1811), - [anon_sym_u64] = ACTIONS(1811), - [anon_sym_i64] = ACTIONS(1811), - [anon_sym_u128] = ACTIONS(1811), - [anon_sym_i128] = ACTIONS(1811), - [anon_sym_isize] = ACTIONS(1811), - [anon_sym_usize] = ACTIONS(1811), - [anon_sym_f32] = ACTIONS(1811), - [anon_sym_f64] = ACTIONS(1811), - [anon_sym_bool] = ACTIONS(1811), - [anon_sym_str] = ACTIONS(1811), - [anon_sym_char] = ACTIONS(1811), - [anon_sym_SQUOTE] = ACTIONS(1811), - [anon_sym_async] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [anon_sym_fn] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_impl] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_loop] = ACTIONS(1811), - [anon_sym_match] = ACTIONS(1811), - [anon_sym_mod] = ACTIONS(1811), - [anon_sym_pub] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1811), - [anon_sym_trait] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_union] = ACTIONS(1811), - [anon_sym_unsafe] = ACTIONS(1811), - [anon_sym_use] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_extern] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_COLON_COLON] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_DOT_DOT] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_move] = ACTIONS(1811), - [sym_integer_literal] = ACTIONS(1809), - [aux_sym_string_literal_token1] = ACTIONS(1809), - [sym_char_literal] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1811), - [anon_sym_false] = ACTIONS(1811), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1811), - [sym_super] = ACTIONS(1811), - [sym_crate] = ACTIONS(1811), - [sym_metavariable] = ACTIONS(1809), - [sym_raw_string_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), + [ts_builtin_sym_end] = ACTIONS(1792), + [sym_identifier] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_macro_rules_BANG] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_u8] = ACTIONS(1794), + [anon_sym_i8] = ACTIONS(1794), + [anon_sym_u16] = ACTIONS(1794), + [anon_sym_i16] = ACTIONS(1794), + [anon_sym_u32] = ACTIONS(1794), + [anon_sym_i32] = ACTIONS(1794), + [anon_sym_u64] = ACTIONS(1794), + [anon_sym_i64] = ACTIONS(1794), + [anon_sym_u128] = ACTIONS(1794), + [anon_sym_i128] = ACTIONS(1794), + [anon_sym_isize] = ACTIONS(1794), + [anon_sym_usize] = ACTIONS(1794), + [anon_sym_f32] = ACTIONS(1794), + [anon_sym_f64] = ACTIONS(1794), + [anon_sym_bool] = ACTIONS(1794), + [anon_sym_str] = ACTIONS(1794), + [anon_sym_char] = ACTIONS(1794), + [anon_sym_SQUOTE] = ACTIONS(1794), + [anon_sym_async] = ACTIONS(1794), + [anon_sym_break] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1794), + [anon_sym_continue] = ACTIONS(1794), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_enum] = ACTIONS(1794), + [anon_sym_fn] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_impl] = ACTIONS(1794), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_loop] = ACTIONS(1794), + [anon_sym_match] = ACTIONS(1794), + [anon_sym_mod] = ACTIONS(1794), + [anon_sym_pub] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1794), + [anon_sym_struct] = ACTIONS(1794), + [anon_sym_trait] = ACTIONS(1794), + [anon_sym_type] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_unsafe] = ACTIONS(1794), + [anon_sym_use] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_extern] = ACTIONS(1794), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_AMP] = ACTIONS(1792), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_move] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(1792), + [aux_sym_string_literal_token1] = ACTIONS(1792), + [sym_char_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1794), + [sym_super] = ACTIONS(1794), + [sym_crate] = ACTIONS(1794), + [sym_metavariable] = ACTIONS(1792), + [sym_raw_string_literal] = ACTIONS(1792), + [sym_float_literal] = ACTIONS(1792), [sym_block_comment] = ACTIONS(3), }, [428] = { - [sym__token_pattern] = STATE(280), - [sym_token_tree_pattern] = STATE(280), - [sym_token_binding_pattern] = STATE(280), - [sym_token_repetition_pattern] = STATE(280), - [sym__literal] = STATE(280), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_RBRACK] = ACTIONS(1815), - [anon_sym_DOLLAR] = ACTIONS(1200), - [anon_sym_u8] = ACTIONS(1813), - [anon_sym_i8] = ACTIONS(1813), - [anon_sym_u16] = ACTIONS(1813), - [anon_sym_i16] = ACTIONS(1813), - [anon_sym_u32] = ACTIONS(1813), - [anon_sym_i32] = ACTIONS(1813), - [anon_sym_u64] = ACTIONS(1813), - [anon_sym_i64] = ACTIONS(1813), - [anon_sym_u128] = ACTIONS(1813), - [anon_sym_i128] = ACTIONS(1813), - [anon_sym_isize] = ACTIONS(1813), - [anon_sym_usize] = ACTIONS(1813), - [anon_sym_f32] = ACTIONS(1813), - [anon_sym_f64] = ACTIONS(1813), - [anon_sym_bool] = ACTIONS(1813), - [anon_sym_str] = ACTIONS(1813), - [anon_sym_char] = ACTIONS(1813), - [aux_sym__non_special_token_token1] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1813), - [anon_sym_async] = ACTIONS(1813), - [anon_sym_await] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_default] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_impl] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_loop] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_mod] = ACTIONS(1813), - [anon_sym_pub] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_static] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_trait] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_union] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_use] = ACTIONS(1813), - [anon_sym_where] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [sym_mutable_specifier] = ACTIONS(1813), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1813), - [sym_super] = ACTIONS(1813), - [sym_crate] = ACTIONS(1813), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [ts_builtin_sym_end] = ACTIONS(1796), + [sym_identifier] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_macro_rules_BANG] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_u8] = ACTIONS(1798), + [anon_sym_i8] = ACTIONS(1798), + [anon_sym_u16] = ACTIONS(1798), + [anon_sym_i16] = ACTIONS(1798), + [anon_sym_u32] = ACTIONS(1798), + [anon_sym_i32] = ACTIONS(1798), + [anon_sym_u64] = ACTIONS(1798), + [anon_sym_i64] = ACTIONS(1798), + [anon_sym_u128] = ACTIONS(1798), + [anon_sym_i128] = ACTIONS(1798), + [anon_sym_isize] = ACTIONS(1798), + [anon_sym_usize] = ACTIONS(1798), + [anon_sym_f32] = ACTIONS(1798), + [anon_sym_f64] = ACTIONS(1798), + [anon_sym_bool] = ACTIONS(1798), + [anon_sym_str] = ACTIONS(1798), + [anon_sym_char] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_async] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_continue] = ACTIONS(1798), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_enum] = ACTIONS(1798), + [anon_sym_fn] = ACTIONS(1798), + [anon_sym_for] = ACTIONS(1798), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_impl] = ACTIONS(1798), + [anon_sym_let] = ACTIONS(1798), + [anon_sym_loop] = ACTIONS(1798), + [anon_sym_match] = ACTIONS(1798), + [anon_sym_mod] = ACTIONS(1798), + [anon_sym_pub] = ACTIONS(1798), + [anon_sym_return] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_struct] = ACTIONS(1798), + [anon_sym_trait] = ACTIONS(1798), + [anon_sym_type] = ACTIONS(1798), + [anon_sym_union] = ACTIONS(1798), + [anon_sym_unsafe] = ACTIONS(1798), + [anon_sym_use] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1796), + [anon_sym_AMP] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PIPE] = ACTIONS(1796), + [anon_sym_move] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [aux_sym_string_literal_token1] = ACTIONS(1796), + [sym_char_literal] = ACTIONS(1796), + [anon_sym_true] = ACTIONS(1798), + [anon_sym_false] = ACTIONS(1798), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1798), + [sym_super] = ACTIONS(1798), + [sym_crate] = ACTIONS(1798), + [sym_metavariable] = ACTIONS(1796), + [sym_raw_string_literal] = ACTIONS(1796), + [sym_float_literal] = ACTIONS(1796), [sym_block_comment] = ACTIONS(3), }, [429] = { - [sym__token_pattern] = STATE(273), - [sym_token_tree_pattern] = STATE(273), - [sym_token_binding_pattern] = STATE(273), - [sym_token_repetition_pattern] = STATE(273), - [sym__literal] = STATE(273), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [anon_sym_u8] = ACTIONS(1817), - [anon_sym_i8] = ACTIONS(1817), - [anon_sym_u16] = ACTIONS(1817), - [anon_sym_i16] = ACTIONS(1817), - [anon_sym_u32] = ACTIONS(1817), - [anon_sym_i32] = ACTIONS(1817), - [anon_sym_u64] = ACTIONS(1817), - [anon_sym_i64] = ACTIONS(1817), - [anon_sym_u128] = ACTIONS(1817), - [anon_sym_i128] = ACTIONS(1817), - [anon_sym_isize] = ACTIONS(1817), - [anon_sym_usize] = ACTIONS(1817), - [anon_sym_f32] = ACTIONS(1817), - [anon_sym_f64] = ACTIONS(1817), - [anon_sym_bool] = ACTIONS(1817), - [anon_sym_str] = ACTIONS(1817), - [anon_sym_char] = ACTIONS(1817), - [aux_sym__non_special_token_token1] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_as] = ACTIONS(1817), - [anon_sym_async] = ACTIONS(1817), - [anon_sym_await] = ACTIONS(1817), - [anon_sym_break] = ACTIONS(1817), - [anon_sym_const] = ACTIONS(1817), - [anon_sym_continue] = ACTIONS(1817), - [anon_sym_default] = ACTIONS(1817), - [anon_sym_enum] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_for] = ACTIONS(1817), - [anon_sym_if] = ACTIONS(1817), - [anon_sym_impl] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1817), - [anon_sym_loop] = ACTIONS(1817), - [anon_sym_match] = ACTIONS(1817), - [anon_sym_mod] = ACTIONS(1817), - [anon_sym_pub] = ACTIONS(1817), - [anon_sym_return] = ACTIONS(1817), - [anon_sym_static] = ACTIONS(1817), - [anon_sym_struct] = ACTIONS(1817), - [anon_sym_trait] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1817), - [anon_sym_union] = ACTIONS(1817), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_use] = ACTIONS(1817), - [anon_sym_where] = ACTIONS(1817), - [anon_sym_while] = ACTIONS(1817), - [sym_mutable_specifier] = ACTIONS(1817), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1817), - [sym_super] = ACTIONS(1817), - [sym_crate] = ACTIONS(1817), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [ts_builtin_sym_end] = ACTIONS(1800), + [sym_identifier] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_macro_rules_BANG] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1800), + [anon_sym_u8] = ACTIONS(1802), + [anon_sym_i8] = ACTIONS(1802), + [anon_sym_u16] = ACTIONS(1802), + [anon_sym_i16] = ACTIONS(1802), + [anon_sym_u32] = ACTIONS(1802), + [anon_sym_i32] = ACTIONS(1802), + [anon_sym_u64] = ACTIONS(1802), + [anon_sym_i64] = ACTIONS(1802), + [anon_sym_u128] = ACTIONS(1802), + [anon_sym_i128] = ACTIONS(1802), + [anon_sym_isize] = ACTIONS(1802), + [anon_sym_usize] = ACTIONS(1802), + [anon_sym_f32] = ACTIONS(1802), + [anon_sym_f64] = ACTIONS(1802), + [anon_sym_bool] = ACTIONS(1802), + [anon_sym_str] = ACTIONS(1802), + [anon_sym_char] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_async] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1802), + [anon_sym_enum] = ACTIONS(1802), + [anon_sym_fn] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_impl] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_loop] = ACTIONS(1802), + [anon_sym_match] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_pub] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_struct] = ACTIONS(1802), + [anon_sym_trait] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1802), + [anon_sym_union] = ACTIONS(1802), + [anon_sym_unsafe] = ACTIONS(1802), + [anon_sym_use] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_AMP] = ACTIONS(1800), + [anon_sym_DOT_DOT] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_move] = ACTIONS(1802), + [sym_integer_literal] = ACTIONS(1800), + [aux_sym_string_literal_token1] = ACTIONS(1800), + [sym_char_literal] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1802), + [sym_super] = ACTIONS(1802), + [sym_crate] = ACTIONS(1802), + [sym_metavariable] = ACTIONS(1800), + [sym_raw_string_literal] = ACTIONS(1800), + [sym_float_literal] = ACTIONS(1800), [sym_block_comment] = ACTIONS(3), }, [430] = { - [ts_builtin_sym_end] = ACTIONS(1819), - [sym_identifier] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_macro_rules_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_u8] = ACTIONS(1821), - [anon_sym_i8] = ACTIONS(1821), - [anon_sym_u16] = ACTIONS(1821), - [anon_sym_i16] = ACTIONS(1821), - [anon_sym_u32] = ACTIONS(1821), - [anon_sym_i32] = ACTIONS(1821), - [anon_sym_u64] = ACTIONS(1821), - [anon_sym_i64] = ACTIONS(1821), - [anon_sym_u128] = ACTIONS(1821), - [anon_sym_i128] = ACTIONS(1821), - [anon_sym_isize] = ACTIONS(1821), - [anon_sym_usize] = ACTIONS(1821), - [anon_sym_f32] = ACTIONS(1821), - [anon_sym_f64] = ACTIONS(1821), - [anon_sym_bool] = ACTIONS(1821), - [anon_sym_str] = ACTIONS(1821), - [anon_sym_char] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_async] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_default] = ACTIONS(1821), - [anon_sym_enum] = ACTIONS(1821), - [anon_sym_fn] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_impl] = ACTIONS(1821), - [anon_sym_let] = ACTIONS(1821), - [anon_sym_loop] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_mod] = ACTIONS(1821), - [anon_sym_pub] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1821), - [anon_sym_struct] = ACTIONS(1821), - [anon_sym_trait] = ACTIONS(1821), - [anon_sym_type] = ACTIONS(1821), - [anon_sym_union] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1821), - [anon_sym_use] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_POUND] = ACTIONS(1819), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_COLON_COLON] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_move] = ACTIONS(1821), - [sym_integer_literal] = ACTIONS(1819), - [aux_sym_string_literal_token1] = ACTIONS(1819), - [sym_char_literal] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1821), - [anon_sym_false] = ACTIONS(1821), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1821), - [sym_super] = ACTIONS(1821), - [sym_crate] = ACTIONS(1821), - [sym_metavariable] = ACTIONS(1819), - [sym_raw_string_literal] = ACTIONS(1819), - [sym_float_literal] = ACTIONS(1819), + [ts_builtin_sym_end] = ACTIONS(1804), + [sym_identifier] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_macro_rules_BANG] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_u8] = ACTIONS(1806), + [anon_sym_i8] = ACTIONS(1806), + [anon_sym_u16] = ACTIONS(1806), + [anon_sym_i16] = ACTIONS(1806), + [anon_sym_u32] = ACTIONS(1806), + [anon_sym_i32] = ACTIONS(1806), + [anon_sym_u64] = ACTIONS(1806), + [anon_sym_i64] = ACTIONS(1806), + [anon_sym_u128] = ACTIONS(1806), + [anon_sym_i128] = ACTIONS(1806), + [anon_sym_isize] = ACTIONS(1806), + [anon_sym_usize] = ACTIONS(1806), + [anon_sym_f32] = ACTIONS(1806), + [anon_sym_f64] = ACTIONS(1806), + [anon_sym_bool] = ACTIONS(1806), + [anon_sym_str] = ACTIONS(1806), + [anon_sym_char] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_break] = ACTIONS(1806), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_continue] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_fn] = ACTIONS(1806), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_impl] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(1806), + [anon_sym_loop] = ACTIONS(1806), + [anon_sym_match] = ACTIONS(1806), + [anon_sym_mod] = ACTIONS(1806), + [anon_sym_pub] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1806), + [anon_sym_trait] = ACTIONS(1806), + [anon_sym_type] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_unsafe] = ACTIONS(1806), + [anon_sym_use] = ACTIONS(1806), + [anon_sym_while] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1804), + [anon_sym_extern] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1804), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1804), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_move] = ACTIONS(1806), + [sym_integer_literal] = ACTIONS(1804), + [aux_sym_string_literal_token1] = ACTIONS(1804), + [sym_char_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1806), + [anon_sym_false] = ACTIONS(1806), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1804), + [sym_raw_string_literal] = ACTIONS(1804), + [sym_float_literal] = ACTIONS(1804), [sym_block_comment] = ACTIONS(3), }, [431] = { - [sym__token_pattern] = STATE(271), - [sym_token_tree_pattern] = STATE(271), - [sym_token_binding_pattern] = STATE(271), - [sym_token_repetition_pattern] = STATE(271), - [sym__literal] = STATE(271), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [anon_sym_u8] = ACTIONS(1823), - [anon_sym_i8] = ACTIONS(1823), - [anon_sym_u16] = ACTIONS(1823), - [anon_sym_i16] = ACTIONS(1823), - [anon_sym_u32] = ACTIONS(1823), - [anon_sym_i32] = ACTIONS(1823), - [anon_sym_u64] = ACTIONS(1823), - [anon_sym_i64] = ACTIONS(1823), - [anon_sym_u128] = ACTIONS(1823), - [anon_sym_i128] = ACTIONS(1823), - [anon_sym_isize] = ACTIONS(1823), - [anon_sym_usize] = ACTIONS(1823), - [anon_sym_f32] = ACTIONS(1823), - [anon_sym_f64] = ACTIONS(1823), - [anon_sym_bool] = ACTIONS(1823), - [anon_sym_str] = ACTIONS(1823), - [anon_sym_char] = ACTIONS(1823), - [aux_sym__non_special_token_token1] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_as] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_impl] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1823), - [anon_sym_loop] = ACTIONS(1823), - [anon_sym_match] = ACTIONS(1823), - [anon_sym_mod] = ACTIONS(1823), - [anon_sym_pub] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_trait] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [anon_sym_unsafe] = ACTIONS(1823), - [anon_sym_use] = ACTIONS(1823), - [anon_sym_where] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [sym_mutable_specifier] = ACTIONS(1823), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1823), - [sym_super] = ACTIONS(1823), - [sym_crate] = ACTIONS(1823), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [ts_builtin_sym_end] = ACTIONS(1808), + [sym_identifier] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_macro_rules_BANG] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1808), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_u8] = ACTIONS(1810), + [anon_sym_i8] = ACTIONS(1810), + [anon_sym_u16] = ACTIONS(1810), + [anon_sym_i16] = ACTIONS(1810), + [anon_sym_u32] = ACTIONS(1810), + [anon_sym_i32] = ACTIONS(1810), + [anon_sym_u64] = ACTIONS(1810), + [anon_sym_i64] = ACTIONS(1810), + [anon_sym_u128] = ACTIONS(1810), + [anon_sym_i128] = ACTIONS(1810), + [anon_sym_isize] = ACTIONS(1810), + [anon_sym_usize] = ACTIONS(1810), + [anon_sym_f32] = ACTIONS(1810), + [anon_sym_f64] = ACTIONS(1810), + [anon_sym_bool] = ACTIONS(1810), + [anon_sym_str] = ACTIONS(1810), + [anon_sym_char] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_async] = ACTIONS(1810), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1810), + [anon_sym_default] = ACTIONS(1810), + [anon_sym_enum] = ACTIONS(1810), + [anon_sym_fn] = ACTIONS(1810), + [anon_sym_for] = ACTIONS(1810), + [anon_sym_if] = ACTIONS(1810), + [anon_sym_impl] = ACTIONS(1810), + [anon_sym_let] = ACTIONS(1810), + [anon_sym_loop] = ACTIONS(1810), + [anon_sym_match] = ACTIONS(1810), + [anon_sym_mod] = ACTIONS(1810), + [anon_sym_pub] = ACTIONS(1810), + [anon_sym_return] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1810), + [anon_sym_struct] = ACTIONS(1810), + [anon_sym_trait] = ACTIONS(1810), + [anon_sym_type] = ACTIONS(1810), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_unsafe] = ACTIONS(1810), + [anon_sym_use] = ACTIONS(1810), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_extern] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1808), + [anon_sym_AMP] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_move] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [aux_sym_string_literal_token1] = ACTIONS(1808), + [sym_char_literal] = ACTIONS(1808), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1808), + [sym_raw_string_literal] = ACTIONS(1808), + [sym_float_literal] = ACTIONS(1808), [sym_block_comment] = ACTIONS(3), }, [432] = { - [ts_builtin_sym_end] = ACTIONS(1825), - [sym_identifier] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_macro_rules_BANG] = ACTIONS(1825), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym_u8] = ACTIONS(1827), - [anon_sym_i8] = ACTIONS(1827), - [anon_sym_u16] = ACTIONS(1827), - [anon_sym_i16] = ACTIONS(1827), - [anon_sym_u32] = ACTIONS(1827), - [anon_sym_i32] = ACTIONS(1827), - [anon_sym_u64] = ACTIONS(1827), - [anon_sym_i64] = ACTIONS(1827), - [anon_sym_u128] = ACTIONS(1827), - [anon_sym_i128] = ACTIONS(1827), - [anon_sym_isize] = ACTIONS(1827), - [anon_sym_usize] = ACTIONS(1827), - [anon_sym_f32] = ACTIONS(1827), - [anon_sym_f64] = ACTIONS(1827), - [anon_sym_bool] = ACTIONS(1827), - [anon_sym_str] = ACTIONS(1827), - [anon_sym_char] = ACTIONS(1827), - [anon_sym_SQUOTE] = ACTIONS(1827), - [anon_sym_async] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [anon_sym_fn] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_impl] = ACTIONS(1827), - [anon_sym_let] = ACTIONS(1827), - [anon_sym_loop] = ACTIONS(1827), - [anon_sym_match] = ACTIONS(1827), - [anon_sym_mod] = ACTIONS(1827), - [anon_sym_pub] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_struct] = ACTIONS(1827), - [anon_sym_trait] = ACTIONS(1827), - [anon_sym_type] = ACTIONS(1827), - [anon_sym_union] = ACTIONS(1827), - [anon_sym_unsafe] = ACTIONS(1827), - [anon_sym_use] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_POUND] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_extern] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1825), - [anon_sym_COLON_COLON] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_DOT_DOT] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1825), - [anon_sym_move] = ACTIONS(1827), - [sym_integer_literal] = ACTIONS(1825), - [aux_sym_string_literal_token1] = ACTIONS(1825), - [sym_char_literal] = ACTIONS(1825), - [anon_sym_true] = ACTIONS(1827), - [anon_sym_false] = ACTIONS(1827), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1827), - [sym_super] = ACTIONS(1827), - [sym_crate] = ACTIONS(1827), - [sym_metavariable] = ACTIONS(1825), - [sym_raw_string_literal] = ACTIONS(1825), - [sym_float_literal] = ACTIONS(1825), + [ts_builtin_sym_end] = ACTIONS(1812), + [sym_identifier] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_macro_rules_BANG] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_STAR] = ACTIONS(1812), + [anon_sym_u8] = ACTIONS(1814), + [anon_sym_i8] = ACTIONS(1814), + [anon_sym_u16] = ACTIONS(1814), + [anon_sym_i16] = ACTIONS(1814), + [anon_sym_u32] = ACTIONS(1814), + [anon_sym_i32] = ACTIONS(1814), + [anon_sym_u64] = ACTIONS(1814), + [anon_sym_i64] = ACTIONS(1814), + [anon_sym_u128] = ACTIONS(1814), + [anon_sym_i128] = ACTIONS(1814), + [anon_sym_isize] = ACTIONS(1814), + [anon_sym_usize] = ACTIONS(1814), + [anon_sym_f32] = ACTIONS(1814), + [anon_sym_f64] = ACTIONS(1814), + [anon_sym_bool] = ACTIONS(1814), + [anon_sym_str] = ACTIONS(1814), + [anon_sym_char] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1814), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_const] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_default] = ACTIONS(1814), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_fn] = ACTIONS(1814), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_impl] = ACTIONS(1814), + [anon_sym_let] = ACTIONS(1814), + [anon_sym_loop] = ACTIONS(1814), + [anon_sym_match] = ACTIONS(1814), + [anon_sym_mod] = ACTIONS(1814), + [anon_sym_pub] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_static] = ACTIONS(1814), + [anon_sym_struct] = ACTIONS(1814), + [anon_sym_trait] = ACTIONS(1814), + [anon_sym_type] = ACTIONS(1814), + [anon_sym_union] = ACTIONS(1814), + [anon_sym_unsafe] = ACTIONS(1814), + [anon_sym_use] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_POUND] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1812), + [anon_sym_extern] = ACTIONS(1814), + [anon_sym_LT] = ACTIONS(1812), + [anon_sym_COLON_COLON] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1812), + [anon_sym_DOT_DOT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_move] = ACTIONS(1814), + [sym_integer_literal] = ACTIONS(1812), + [aux_sym_string_literal_token1] = ACTIONS(1812), + [sym_char_literal] = ACTIONS(1812), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1814), + [sym_super] = ACTIONS(1814), + [sym_crate] = ACTIONS(1814), + [sym_metavariable] = ACTIONS(1812), + [sym_raw_string_literal] = ACTIONS(1812), + [sym_float_literal] = ACTIONS(1812), [sym_block_comment] = ACTIONS(3), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(1829), - [sym_identifier] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_macro_rules_BANG] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_u8] = ACTIONS(1831), - [anon_sym_i8] = ACTIONS(1831), - [anon_sym_u16] = ACTIONS(1831), - [anon_sym_i16] = ACTIONS(1831), - [anon_sym_u32] = ACTIONS(1831), - [anon_sym_i32] = ACTIONS(1831), - [anon_sym_u64] = ACTIONS(1831), - [anon_sym_i64] = ACTIONS(1831), - [anon_sym_u128] = ACTIONS(1831), - [anon_sym_i128] = ACTIONS(1831), - [anon_sym_isize] = ACTIONS(1831), - [anon_sym_usize] = ACTIONS(1831), - [anon_sym_f32] = ACTIONS(1831), - [anon_sym_f64] = ACTIONS(1831), - [anon_sym_bool] = ACTIONS(1831), - [anon_sym_str] = ACTIONS(1831), - [anon_sym_char] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_async] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [anon_sym_continue] = ACTIONS(1831), - [anon_sym_default] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_for] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(1831), - [anon_sym_impl] = ACTIONS(1831), - [anon_sym_let] = ACTIONS(1831), - [anon_sym_loop] = ACTIONS(1831), - [anon_sym_match] = ACTIONS(1831), - [anon_sym_mod] = ACTIONS(1831), - [anon_sym_pub] = ACTIONS(1831), - [anon_sym_return] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1831), - [anon_sym_trait] = ACTIONS(1831), - [anon_sym_type] = ACTIONS(1831), - [anon_sym_union] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1831), - [anon_sym_use] = ACTIONS(1831), - [anon_sym_while] = ACTIONS(1831), - [anon_sym_POUND] = ACTIONS(1829), - [anon_sym_BANG] = ACTIONS(1829), - [anon_sym_extern] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1829), - [anon_sym_COLON_COLON] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_DOT_DOT] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_move] = ACTIONS(1831), - [sym_integer_literal] = ACTIONS(1829), - [aux_sym_string_literal_token1] = ACTIONS(1829), - [sym_char_literal] = ACTIONS(1829), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1831), - [sym_super] = ACTIONS(1831), - [sym_crate] = ACTIONS(1831), - [sym_metavariable] = ACTIONS(1829), - [sym_raw_string_literal] = ACTIONS(1829), - [sym_float_literal] = ACTIONS(1829), + [ts_builtin_sym_end] = ACTIONS(1816), + [sym_identifier] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_macro_rules_BANG] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_STAR] = ACTIONS(1816), + [anon_sym_u8] = ACTIONS(1818), + [anon_sym_i8] = ACTIONS(1818), + [anon_sym_u16] = ACTIONS(1818), + [anon_sym_i16] = ACTIONS(1818), + [anon_sym_u32] = ACTIONS(1818), + [anon_sym_i32] = ACTIONS(1818), + [anon_sym_u64] = ACTIONS(1818), + [anon_sym_i64] = ACTIONS(1818), + [anon_sym_u128] = ACTIONS(1818), + [anon_sym_i128] = ACTIONS(1818), + [anon_sym_isize] = ACTIONS(1818), + [anon_sym_usize] = ACTIONS(1818), + [anon_sym_f32] = ACTIONS(1818), + [anon_sym_f64] = ACTIONS(1818), + [anon_sym_bool] = ACTIONS(1818), + [anon_sym_str] = ACTIONS(1818), + [anon_sym_char] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_async] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_default] = ACTIONS(1818), + [anon_sym_enum] = ACTIONS(1818), + [anon_sym_fn] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_impl] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_mod] = ACTIONS(1818), + [anon_sym_pub] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_static] = ACTIONS(1818), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_trait] = ACTIONS(1818), + [anon_sym_type] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1818), + [anon_sym_unsafe] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1816), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1816), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_move] = ACTIONS(1818), + [sym_integer_literal] = ACTIONS(1816), + [aux_sym_string_literal_token1] = ACTIONS(1816), + [sym_char_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1818), + [anon_sym_false] = ACTIONS(1818), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1818), + [sym_super] = ACTIONS(1818), + [sym_crate] = ACTIONS(1818), + [sym_metavariable] = ACTIONS(1816), + [sym_raw_string_literal] = ACTIONS(1816), + [sym_float_literal] = ACTIONS(1816), [sym_block_comment] = ACTIONS(3), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_macro_rules_BANG] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_u8] = ACTIONS(1835), - [anon_sym_i8] = ACTIONS(1835), - [anon_sym_u16] = ACTIONS(1835), - [anon_sym_i16] = ACTIONS(1835), - [anon_sym_u32] = ACTIONS(1835), - [anon_sym_i32] = ACTIONS(1835), - [anon_sym_u64] = ACTIONS(1835), - [anon_sym_i64] = ACTIONS(1835), - [anon_sym_u128] = ACTIONS(1835), - [anon_sym_i128] = ACTIONS(1835), - [anon_sym_isize] = ACTIONS(1835), - [anon_sym_usize] = ACTIONS(1835), - [anon_sym_f32] = ACTIONS(1835), - [anon_sym_f64] = ACTIONS(1835), - [anon_sym_bool] = ACTIONS(1835), - [anon_sym_str] = ACTIONS(1835), - [anon_sym_char] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_impl] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_loop] = ACTIONS(1835), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_mod] = ACTIONS(1835), - [anon_sym_pub] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_trait] = ACTIONS(1835), - [anon_sym_type] = ACTIONS(1835), - [anon_sym_union] = ACTIONS(1835), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_use] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_PIPE] = ACTIONS(1833), - [anon_sym_move] = ACTIONS(1835), - [sym_integer_literal] = ACTIONS(1833), - [aux_sym_string_literal_token1] = ACTIONS(1833), - [sym_char_literal] = ACTIONS(1833), - [anon_sym_true] = ACTIONS(1835), - [anon_sym_false] = ACTIONS(1835), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1835), - [sym_super] = ACTIONS(1835), - [sym_crate] = ACTIONS(1835), - [sym_metavariable] = ACTIONS(1833), - [sym_raw_string_literal] = ACTIONS(1833), - [sym_float_literal] = ACTIONS(1833), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_identifier] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_macro_rules_BANG] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_u8] = ACTIONS(1822), + [anon_sym_i8] = ACTIONS(1822), + [anon_sym_u16] = ACTIONS(1822), + [anon_sym_i16] = ACTIONS(1822), + [anon_sym_u32] = ACTIONS(1822), + [anon_sym_i32] = ACTIONS(1822), + [anon_sym_u64] = ACTIONS(1822), + [anon_sym_i64] = ACTIONS(1822), + [anon_sym_u128] = ACTIONS(1822), + [anon_sym_i128] = ACTIONS(1822), + [anon_sym_isize] = ACTIONS(1822), + [anon_sym_usize] = ACTIONS(1822), + [anon_sym_f32] = ACTIONS(1822), + [anon_sym_f64] = ACTIONS(1822), + [anon_sym_bool] = ACTIONS(1822), + [anon_sym_str] = ACTIONS(1822), + [anon_sym_char] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_async] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_default] = ACTIONS(1822), + [anon_sym_enum] = ACTIONS(1822), + [anon_sym_fn] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_impl] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_loop] = ACTIONS(1822), + [anon_sym_match] = ACTIONS(1822), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_pub] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1822), + [anon_sym_trait] = ACTIONS(1822), + [anon_sym_type] = ACTIONS(1822), + [anon_sym_union] = ACTIONS(1822), + [anon_sym_unsafe] = ACTIONS(1822), + [anon_sym_use] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1820), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_COLON_COLON] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1820), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_move] = ACTIONS(1822), + [sym_integer_literal] = ACTIONS(1820), + [aux_sym_string_literal_token1] = ACTIONS(1820), + [sym_char_literal] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1822), + [sym_super] = ACTIONS(1822), + [sym_crate] = ACTIONS(1822), + [sym_metavariable] = ACTIONS(1820), + [sym_raw_string_literal] = ACTIONS(1820), + [sym_float_literal] = ACTIONS(1820), [sym_block_comment] = ACTIONS(3), }, [435] = { - [ts_builtin_sym_end] = ACTIONS(1837), - [sym_identifier] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_macro_rules_BANG] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_u8] = ACTIONS(1839), - [anon_sym_i8] = ACTIONS(1839), - [anon_sym_u16] = ACTIONS(1839), - [anon_sym_i16] = ACTIONS(1839), - [anon_sym_u32] = ACTIONS(1839), - [anon_sym_i32] = ACTIONS(1839), - [anon_sym_u64] = ACTIONS(1839), - [anon_sym_i64] = ACTIONS(1839), - [anon_sym_u128] = ACTIONS(1839), - [anon_sym_i128] = ACTIONS(1839), - [anon_sym_isize] = ACTIONS(1839), - [anon_sym_usize] = ACTIONS(1839), - [anon_sym_f32] = ACTIONS(1839), - [anon_sym_f64] = ACTIONS(1839), - [anon_sym_bool] = ACTIONS(1839), - [anon_sym_str] = ACTIONS(1839), - [anon_sym_char] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_async] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_default] = ACTIONS(1839), - [anon_sym_enum] = ACTIONS(1839), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_impl] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_mod] = ACTIONS(1839), - [anon_sym_pub] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1839), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_trait] = ACTIONS(1839), - [anon_sym_type] = ACTIONS(1839), - [anon_sym_union] = ACTIONS(1839), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1837), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_COLON_COLON] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_move] = ACTIONS(1839), - [sym_integer_literal] = ACTIONS(1837), - [aux_sym_string_literal_token1] = ACTIONS(1837), - [sym_char_literal] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1839), - [sym_super] = ACTIONS(1839), - [sym_crate] = ACTIONS(1839), - [sym_metavariable] = ACTIONS(1837), - [sym_raw_string_literal] = ACTIONS(1837), - [sym_float_literal] = ACTIONS(1837), + [ts_builtin_sym_end] = ACTIONS(1824), + [sym_identifier] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_macro_rules_BANG] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_u8] = ACTIONS(1826), + [anon_sym_i8] = ACTIONS(1826), + [anon_sym_u16] = ACTIONS(1826), + [anon_sym_i16] = ACTIONS(1826), + [anon_sym_u32] = ACTIONS(1826), + [anon_sym_i32] = ACTIONS(1826), + [anon_sym_u64] = ACTIONS(1826), + [anon_sym_i64] = ACTIONS(1826), + [anon_sym_u128] = ACTIONS(1826), + [anon_sym_i128] = ACTIONS(1826), + [anon_sym_isize] = ACTIONS(1826), + [anon_sym_usize] = ACTIONS(1826), + [anon_sym_f32] = ACTIONS(1826), + [anon_sym_f64] = ACTIONS(1826), + [anon_sym_bool] = ACTIONS(1826), + [anon_sym_str] = ACTIONS(1826), + [anon_sym_char] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1826), + [anon_sym_async] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_enum] = ACTIONS(1826), + [anon_sym_fn] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_impl] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_mod] = ACTIONS(1826), + [anon_sym_pub] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1826), + [anon_sym_struct] = ACTIONS(1826), + [anon_sym_trait] = ACTIONS(1826), + [anon_sym_type] = ACTIONS(1826), + [anon_sym_union] = ACTIONS(1826), + [anon_sym_unsafe] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_move] = ACTIONS(1826), + [sym_integer_literal] = ACTIONS(1824), + [aux_sym_string_literal_token1] = ACTIONS(1824), + [sym_char_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1826), + [sym_super] = ACTIONS(1826), + [sym_crate] = ACTIONS(1826), + [sym_metavariable] = ACTIONS(1824), + [sym_raw_string_literal] = ACTIONS(1824), + [sym_float_literal] = ACTIONS(1824), [sym_block_comment] = ACTIONS(3), }, [436] = { - [ts_builtin_sym_end] = ACTIONS(1841), - [sym_identifier] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_macro_rules_BANG] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_u8] = ACTIONS(1843), - [anon_sym_i8] = ACTIONS(1843), - [anon_sym_u16] = ACTIONS(1843), - [anon_sym_i16] = ACTIONS(1843), - [anon_sym_u32] = ACTIONS(1843), - [anon_sym_i32] = ACTIONS(1843), - [anon_sym_u64] = ACTIONS(1843), - [anon_sym_i64] = ACTIONS(1843), - [anon_sym_u128] = ACTIONS(1843), - [anon_sym_i128] = ACTIONS(1843), - [anon_sym_isize] = ACTIONS(1843), - [anon_sym_usize] = ACTIONS(1843), - [anon_sym_f32] = ACTIONS(1843), - [anon_sym_f64] = ACTIONS(1843), - [anon_sym_bool] = ACTIONS(1843), - [anon_sym_str] = ACTIONS(1843), - [anon_sym_char] = ACTIONS(1843), - [anon_sym_SQUOTE] = ACTIONS(1843), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_default] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [anon_sym_fn] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_impl] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_loop] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_mod] = ACTIONS(1843), - [anon_sym_pub] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1843), - [anon_sym_trait] = ACTIONS(1843), - [anon_sym_type] = ACTIONS(1843), - [anon_sym_union] = ACTIONS(1843), - [anon_sym_unsafe] = ACTIONS(1843), - [anon_sym_use] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_POUND] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_COLON_COLON] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_move] = ACTIONS(1843), - [sym_integer_literal] = ACTIONS(1841), - [aux_sym_string_literal_token1] = ACTIONS(1841), - [sym_char_literal] = ACTIONS(1841), - [anon_sym_true] = ACTIONS(1843), - [anon_sym_false] = ACTIONS(1843), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1843), - [sym_super] = ACTIONS(1843), - [sym_crate] = ACTIONS(1843), - [sym_metavariable] = ACTIONS(1841), - [sym_raw_string_literal] = ACTIONS(1841), - [sym_float_literal] = ACTIONS(1841), + [sym__token_pattern] = STATE(242), + [sym_token_tree_pattern] = STATE(242), + [sym_token_binding_pattern] = STATE(242), + [sym_token_repetition_pattern] = STATE(242), + [sym__literal] = STATE(242), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1486), + [anon_sym_i8] = ACTIONS(1486), + [anon_sym_u16] = ACTIONS(1486), + [anon_sym_i16] = ACTIONS(1486), + [anon_sym_u32] = ACTIONS(1486), + [anon_sym_i32] = ACTIONS(1486), + [anon_sym_u64] = ACTIONS(1486), + [anon_sym_i64] = ACTIONS(1486), + [anon_sym_u128] = ACTIONS(1486), + [anon_sym_i128] = ACTIONS(1486), + [anon_sym_isize] = ACTIONS(1486), + [anon_sym_usize] = ACTIONS(1486), + [anon_sym_f32] = ACTIONS(1486), + [anon_sym_f64] = ACTIONS(1486), + [anon_sym_bool] = ACTIONS(1486), + [anon_sym_str] = ACTIONS(1486), + [anon_sym_char] = ACTIONS(1486), + [aux_sym__non_special_token_token1] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_as] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_await] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_fn] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_impl] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_loop] = ACTIONS(1486), + [anon_sym_match] = ACTIONS(1486), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_trait] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_unsafe] = ACTIONS(1486), + [anon_sym_use] = ACTIONS(1486), + [anon_sym_where] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [sym_mutable_specifier] = ACTIONS(1486), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_crate] = ACTIONS(1486), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [437] = { - [ts_builtin_sym_end] = ACTIONS(1845), - [sym_identifier] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_macro_rules_BANG] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_u8] = ACTIONS(1847), - [anon_sym_i8] = ACTIONS(1847), - [anon_sym_u16] = ACTIONS(1847), - [anon_sym_i16] = ACTIONS(1847), - [anon_sym_u32] = ACTIONS(1847), - [anon_sym_i32] = ACTIONS(1847), - [anon_sym_u64] = ACTIONS(1847), - [anon_sym_i64] = ACTIONS(1847), - [anon_sym_u128] = ACTIONS(1847), - [anon_sym_i128] = ACTIONS(1847), - [anon_sym_isize] = ACTIONS(1847), - [anon_sym_usize] = ACTIONS(1847), - [anon_sym_f32] = ACTIONS(1847), - [anon_sym_f64] = ACTIONS(1847), - [anon_sym_bool] = ACTIONS(1847), - [anon_sym_str] = ACTIONS(1847), - [anon_sym_char] = ACTIONS(1847), - [anon_sym_SQUOTE] = ACTIONS(1847), - [anon_sym_async] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_enum] = ACTIONS(1847), - [anon_sym_fn] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_impl] = ACTIONS(1847), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_loop] = ACTIONS(1847), - [anon_sym_match] = ACTIONS(1847), - [anon_sym_mod] = ACTIONS(1847), - [anon_sym_pub] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_struct] = ACTIONS(1847), - [anon_sym_trait] = ACTIONS(1847), - [anon_sym_type] = ACTIONS(1847), - [anon_sym_union] = ACTIONS(1847), - [anon_sym_unsafe] = ACTIONS(1847), - [anon_sym_use] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_COLON_COLON] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_DOT_DOT] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_move] = ACTIONS(1847), - [sym_integer_literal] = ACTIONS(1845), - [aux_sym_string_literal_token1] = ACTIONS(1845), - [sym_char_literal] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1847), - [sym_super] = ACTIONS(1847), - [sym_crate] = ACTIONS(1847), - [sym_metavariable] = ACTIONS(1845), - [sym_raw_string_literal] = ACTIONS(1845), - [sym_float_literal] = ACTIONS(1845), + [ts_builtin_sym_end] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_macro_rules_BANG] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_STAR] = ACTIONS(1830), + [anon_sym_u8] = ACTIONS(1832), + [anon_sym_i8] = ACTIONS(1832), + [anon_sym_u16] = ACTIONS(1832), + [anon_sym_i16] = ACTIONS(1832), + [anon_sym_u32] = ACTIONS(1832), + [anon_sym_i32] = ACTIONS(1832), + [anon_sym_u64] = ACTIONS(1832), + [anon_sym_i64] = ACTIONS(1832), + [anon_sym_u128] = ACTIONS(1832), + [anon_sym_i128] = ACTIONS(1832), + [anon_sym_isize] = ACTIONS(1832), + [anon_sym_usize] = ACTIONS(1832), + [anon_sym_f32] = ACTIONS(1832), + [anon_sym_f64] = ACTIONS(1832), + [anon_sym_bool] = ACTIONS(1832), + [anon_sym_str] = ACTIONS(1832), + [anon_sym_char] = ACTIONS(1832), + [anon_sym_SQUOTE] = ACTIONS(1832), + [anon_sym_async] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [anon_sym_fn] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_impl] = ACTIONS(1832), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_loop] = ACTIONS(1832), + [anon_sym_match] = ACTIONS(1832), + [anon_sym_mod] = ACTIONS(1832), + [anon_sym_pub] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_struct] = ACTIONS(1832), + [anon_sym_trait] = ACTIONS(1832), + [anon_sym_type] = ACTIONS(1832), + [anon_sym_union] = ACTIONS(1832), + [anon_sym_unsafe] = ACTIONS(1832), + [anon_sym_use] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_extern] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_COLON_COLON] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_DOT_DOT] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_move] = ACTIONS(1832), + [sym_integer_literal] = ACTIONS(1830), + [aux_sym_string_literal_token1] = ACTIONS(1830), + [sym_char_literal] = ACTIONS(1830), + [anon_sym_true] = ACTIONS(1832), + [anon_sym_false] = ACTIONS(1832), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1832), + [sym_super] = ACTIONS(1832), + [sym_crate] = ACTIONS(1832), + [sym_metavariable] = ACTIONS(1830), + [sym_raw_string_literal] = ACTIONS(1830), + [sym_float_literal] = ACTIONS(1830), [sym_block_comment] = ACTIONS(3), }, [438] = { - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_macro_rules_BANG] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_u8] = ACTIONS(1851), - [anon_sym_i8] = ACTIONS(1851), - [anon_sym_u16] = ACTIONS(1851), - [anon_sym_i16] = ACTIONS(1851), - [anon_sym_u32] = ACTIONS(1851), - [anon_sym_i32] = ACTIONS(1851), - [anon_sym_u64] = ACTIONS(1851), - [anon_sym_i64] = ACTIONS(1851), - [anon_sym_u128] = ACTIONS(1851), - [anon_sym_i128] = ACTIONS(1851), - [anon_sym_isize] = ACTIONS(1851), - [anon_sym_usize] = ACTIONS(1851), - [anon_sym_f32] = ACTIONS(1851), - [anon_sym_f64] = ACTIONS(1851), - [anon_sym_bool] = ACTIONS(1851), - [anon_sym_str] = ACTIONS(1851), - [anon_sym_char] = ACTIONS(1851), - [anon_sym_SQUOTE] = ACTIONS(1851), - [anon_sym_async] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [anon_sym_fn] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_impl] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_loop] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_mod] = ACTIONS(1851), - [anon_sym_pub] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_trait] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_union] = ACTIONS(1851), - [anon_sym_unsafe] = ACTIONS(1851), - [anon_sym_use] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_COLON_COLON] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_DOT_DOT] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_move] = ACTIONS(1851), - [sym_integer_literal] = ACTIONS(1849), - [aux_sym_string_literal_token1] = ACTIONS(1849), - [sym_char_literal] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1851), - [anon_sym_false] = ACTIONS(1851), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1851), - [sym_super] = ACTIONS(1851), - [sym_crate] = ACTIONS(1851), - [sym_metavariable] = ACTIONS(1849), - [sym_raw_string_literal] = ACTIONS(1849), - [sym_float_literal] = ACTIONS(1849), + [ts_builtin_sym_end] = ACTIONS(1834), + [sym_identifier] = ACTIONS(1836), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_macro_rules_BANG] = ACTIONS(1834), + [anon_sym_LPAREN] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_STAR] = ACTIONS(1834), + [anon_sym_u8] = ACTIONS(1836), + [anon_sym_i8] = ACTIONS(1836), + [anon_sym_u16] = ACTIONS(1836), + [anon_sym_i16] = ACTIONS(1836), + [anon_sym_u32] = ACTIONS(1836), + [anon_sym_i32] = ACTIONS(1836), + [anon_sym_u64] = ACTIONS(1836), + [anon_sym_i64] = ACTIONS(1836), + [anon_sym_u128] = ACTIONS(1836), + [anon_sym_i128] = ACTIONS(1836), + [anon_sym_isize] = ACTIONS(1836), + [anon_sym_usize] = ACTIONS(1836), + [anon_sym_f32] = ACTIONS(1836), + [anon_sym_f64] = ACTIONS(1836), + [anon_sym_bool] = ACTIONS(1836), + [anon_sym_str] = ACTIONS(1836), + [anon_sym_char] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_async] = ACTIONS(1836), + [anon_sym_break] = ACTIONS(1836), + [anon_sym_const] = ACTIONS(1836), + [anon_sym_continue] = ACTIONS(1836), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_enum] = ACTIONS(1836), + [anon_sym_fn] = ACTIONS(1836), + [anon_sym_for] = ACTIONS(1836), + [anon_sym_if] = ACTIONS(1836), + [anon_sym_impl] = ACTIONS(1836), + [anon_sym_let] = ACTIONS(1836), + [anon_sym_loop] = ACTIONS(1836), + [anon_sym_match] = ACTIONS(1836), + [anon_sym_mod] = ACTIONS(1836), + [anon_sym_pub] = ACTIONS(1836), + [anon_sym_return] = ACTIONS(1836), + [anon_sym_static] = ACTIONS(1836), + [anon_sym_struct] = ACTIONS(1836), + [anon_sym_trait] = ACTIONS(1836), + [anon_sym_type] = ACTIONS(1836), + [anon_sym_union] = ACTIONS(1836), + [anon_sym_unsafe] = ACTIONS(1836), + [anon_sym_use] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1836), + [anon_sym_POUND] = ACTIONS(1834), + [anon_sym_BANG] = ACTIONS(1834), + [anon_sym_extern] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_COLON_COLON] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_move] = ACTIONS(1836), + [sym_integer_literal] = ACTIONS(1834), + [aux_sym_string_literal_token1] = ACTIONS(1834), + [sym_char_literal] = ACTIONS(1834), + [anon_sym_true] = ACTIONS(1836), + [anon_sym_false] = ACTIONS(1836), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1836), + [sym_super] = ACTIONS(1836), + [sym_crate] = ACTIONS(1836), + [sym_metavariable] = ACTIONS(1834), + [sym_raw_string_literal] = ACTIONS(1834), + [sym_float_literal] = ACTIONS(1834), [sym_block_comment] = ACTIONS(3), }, [439] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_macro_rules_BANG] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_u8] = ACTIONS(1855), - [anon_sym_i8] = ACTIONS(1855), - [anon_sym_u16] = ACTIONS(1855), - [anon_sym_i16] = ACTIONS(1855), - [anon_sym_u32] = ACTIONS(1855), - [anon_sym_i32] = ACTIONS(1855), - [anon_sym_u64] = ACTIONS(1855), - [anon_sym_i64] = ACTIONS(1855), - [anon_sym_u128] = ACTIONS(1855), - [anon_sym_i128] = ACTIONS(1855), - [anon_sym_isize] = ACTIONS(1855), - [anon_sym_usize] = ACTIONS(1855), - [anon_sym_f32] = ACTIONS(1855), - [anon_sym_f64] = ACTIONS(1855), - [anon_sym_bool] = ACTIONS(1855), - [anon_sym_str] = ACTIONS(1855), - [anon_sym_char] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [anon_sym_fn] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_impl] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_loop] = ACTIONS(1855), - [anon_sym_match] = ACTIONS(1855), - [anon_sym_mod] = ACTIONS(1855), - [anon_sym_pub] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_struct] = ACTIONS(1855), - [anon_sym_trait] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_union] = ACTIONS(1855), - [anon_sym_unsafe] = ACTIONS(1855), - [anon_sym_use] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_POUND] = ACTIONS(1853), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_extern] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_COLON_COLON] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_move] = ACTIONS(1855), - [sym_integer_literal] = ACTIONS(1853), - [aux_sym_string_literal_token1] = ACTIONS(1853), - [sym_char_literal] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1855), - [sym_super] = ACTIONS(1855), - [sym_crate] = ACTIONS(1855), - [sym_metavariable] = ACTIONS(1853), - [sym_raw_string_literal] = ACTIONS(1853), - [sym_float_literal] = ACTIONS(1853), + [ts_builtin_sym_end] = ACTIONS(1838), + [sym_identifier] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_macro_rules_BANG] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_STAR] = ACTIONS(1838), + [anon_sym_u8] = ACTIONS(1840), + [anon_sym_i8] = ACTIONS(1840), + [anon_sym_u16] = ACTIONS(1840), + [anon_sym_i16] = ACTIONS(1840), + [anon_sym_u32] = ACTIONS(1840), + [anon_sym_i32] = ACTIONS(1840), + [anon_sym_u64] = ACTIONS(1840), + [anon_sym_i64] = ACTIONS(1840), + [anon_sym_u128] = ACTIONS(1840), + [anon_sym_i128] = ACTIONS(1840), + [anon_sym_isize] = ACTIONS(1840), + [anon_sym_usize] = ACTIONS(1840), + [anon_sym_f32] = ACTIONS(1840), + [anon_sym_f64] = ACTIONS(1840), + [anon_sym_bool] = ACTIONS(1840), + [anon_sym_str] = ACTIONS(1840), + [anon_sym_char] = ACTIONS(1840), + [anon_sym_SQUOTE] = ACTIONS(1840), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_enum] = ACTIONS(1840), + [anon_sym_fn] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_impl] = ACTIONS(1840), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_loop] = ACTIONS(1840), + [anon_sym_match] = ACTIONS(1840), + [anon_sym_mod] = ACTIONS(1840), + [anon_sym_pub] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_static] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1840), + [anon_sym_trait] = ACTIONS(1840), + [anon_sym_type] = ACTIONS(1840), + [anon_sym_union] = ACTIONS(1840), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_use] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_POUND] = ACTIONS(1838), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1838), + [anon_sym_COLON_COLON] = ACTIONS(1838), + [anon_sym_AMP] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_move] = ACTIONS(1840), + [sym_integer_literal] = ACTIONS(1838), + [aux_sym_string_literal_token1] = ACTIONS(1838), + [sym_char_literal] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1840), + [anon_sym_false] = ACTIONS(1840), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1840), + [sym_super] = ACTIONS(1840), + [sym_crate] = ACTIONS(1840), + [sym_metavariable] = ACTIONS(1838), + [sym_raw_string_literal] = ACTIONS(1838), + [sym_float_literal] = ACTIONS(1838), [sym_block_comment] = ACTIONS(3), }, [440] = { - [ts_builtin_sym_end] = ACTIONS(1857), - [sym_identifier] = ACTIONS(1859), - [anon_sym_SEMI] = ACTIONS(1857), - [anon_sym_macro_rules_BANG] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1857), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_STAR] = ACTIONS(1857), - [anon_sym_u8] = ACTIONS(1859), - [anon_sym_i8] = ACTIONS(1859), - [anon_sym_u16] = ACTIONS(1859), - [anon_sym_i16] = ACTIONS(1859), - [anon_sym_u32] = ACTIONS(1859), - [anon_sym_i32] = ACTIONS(1859), - [anon_sym_u64] = ACTIONS(1859), - [anon_sym_i64] = ACTIONS(1859), - [anon_sym_u128] = ACTIONS(1859), - [anon_sym_i128] = ACTIONS(1859), - [anon_sym_isize] = ACTIONS(1859), - [anon_sym_usize] = ACTIONS(1859), - [anon_sym_f32] = ACTIONS(1859), - [anon_sym_f64] = ACTIONS(1859), - [anon_sym_bool] = ACTIONS(1859), - [anon_sym_str] = ACTIONS(1859), - [anon_sym_char] = ACTIONS(1859), - [anon_sym_SQUOTE] = ACTIONS(1859), - [anon_sym_async] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_default] = ACTIONS(1859), - [anon_sym_enum] = ACTIONS(1859), - [anon_sym_fn] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_if] = ACTIONS(1859), - [anon_sym_impl] = ACTIONS(1859), - [anon_sym_let] = ACTIONS(1859), - [anon_sym_loop] = ACTIONS(1859), - [anon_sym_match] = ACTIONS(1859), - [anon_sym_mod] = ACTIONS(1859), - [anon_sym_pub] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1859), - [anon_sym_struct] = ACTIONS(1859), - [anon_sym_trait] = ACTIONS(1859), - [anon_sym_type] = ACTIONS(1859), - [anon_sym_union] = ACTIONS(1859), - [anon_sym_unsafe] = ACTIONS(1859), - [anon_sym_use] = ACTIONS(1859), - [anon_sym_while] = ACTIONS(1859), - [anon_sym_POUND] = ACTIONS(1857), - [anon_sym_BANG] = ACTIONS(1857), - [anon_sym_extern] = ACTIONS(1859), - [anon_sym_LT] = ACTIONS(1857), - [anon_sym_COLON_COLON] = ACTIONS(1857), - [anon_sym_AMP] = ACTIONS(1857), - [anon_sym_DOT_DOT] = ACTIONS(1857), - [anon_sym_DASH] = ACTIONS(1857), - [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_move] = ACTIONS(1859), - [sym_integer_literal] = ACTIONS(1857), - [aux_sym_string_literal_token1] = ACTIONS(1857), - [sym_char_literal] = ACTIONS(1857), - [anon_sym_true] = ACTIONS(1859), - [anon_sym_false] = ACTIONS(1859), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1859), - [sym_super] = ACTIONS(1859), - [sym_crate] = ACTIONS(1859), - [sym_metavariable] = ACTIONS(1857), - [sym_raw_string_literal] = ACTIONS(1857), - [sym_float_literal] = ACTIONS(1857), + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_RBRACK] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1856), + [anon_sym_u8] = ACTIONS(1842), + [anon_sym_i8] = ACTIONS(1842), + [anon_sym_u16] = ACTIONS(1842), + [anon_sym_i16] = ACTIONS(1842), + [anon_sym_u32] = ACTIONS(1842), + [anon_sym_i32] = ACTIONS(1842), + [anon_sym_u64] = ACTIONS(1842), + [anon_sym_i64] = ACTIONS(1842), + [anon_sym_u128] = ACTIONS(1842), + [anon_sym_i128] = ACTIONS(1842), + [anon_sym_isize] = ACTIONS(1842), + [anon_sym_usize] = ACTIONS(1842), + [anon_sym_f32] = ACTIONS(1842), + [anon_sym_f64] = ACTIONS(1842), + [anon_sym_bool] = ACTIONS(1842), + [anon_sym_str] = ACTIONS(1842), + [anon_sym_char] = ACTIONS(1842), + [aux_sym__non_special_token_token1] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_as] = ACTIONS(1842), + [anon_sym_async] = ACTIONS(1842), + [anon_sym_await] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_const] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [anon_sym_default] = ACTIONS(1842), + [anon_sym_enum] = ACTIONS(1842), + [anon_sym_fn] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_impl] = ACTIONS(1842), + [anon_sym_let] = ACTIONS(1842), + [anon_sym_loop] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_mod] = ACTIONS(1842), + [anon_sym_pub] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1842), + [anon_sym_struct] = ACTIONS(1842), + [anon_sym_trait] = ACTIONS(1842), + [anon_sym_type] = ACTIONS(1842), + [anon_sym_union] = ACTIONS(1842), + [anon_sym_unsafe] = ACTIONS(1842), + [anon_sym_use] = ACTIONS(1842), + [anon_sym_where] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [sym_mutable_specifier] = ACTIONS(1842), + [sym_integer_literal] = ACTIONS(1859), + [aux_sym_string_literal_token1] = ACTIONS(1862), + [sym_char_literal] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1865), + [anon_sym_false] = ACTIONS(1865), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(1842), + [sym_super] = ACTIONS(1842), + [sym_crate] = ACTIONS(1842), + [sym_metavariable] = ACTIONS(1868), + [sym_raw_string_literal] = ACTIONS(1859), + [sym_float_literal] = ACTIONS(1859), [sym_block_comment] = ACTIONS(3), }, [441] = { - [ts_builtin_sym_end] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_macro_rules_BANG] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_u8] = ACTIONS(1863), - [anon_sym_i8] = ACTIONS(1863), - [anon_sym_u16] = ACTIONS(1863), - [anon_sym_i16] = ACTIONS(1863), - [anon_sym_u32] = ACTIONS(1863), - [anon_sym_i32] = ACTIONS(1863), - [anon_sym_u64] = ACTIONS(1863), - [anon_sym_i64] = ACTIONS(1863), - [anon_sym_u128] = ACTIONS(1863), - [anon_sym_i128] = ACTIONS(1863), - [anon_sym_isize] = ACTIONS(1863), - [anon_sym_usize] = ACTIONS(1863), - [anon_sym_f32] = ACTIONS(1863), - [anon_sym_f64] = ACTIONS(1863), - [anon_sym_bool] = ACTIONS(1863), - [anon_sym_str] = ACTIONS(1863), - [anon_sym_char] = ACTIONS(1863), - [anon_sym_SQUOTE] = ACTIONS(1863), - [anon_sym_async] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), - [anon_sym_fn] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_impl] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_loop] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1863), - [anon_sym_mod] = ACTIONS(1863), - [anon_sym_pub] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_static] = ACTIONS(1863), - [anon_sym_struct] = ACTIONS(1863), - [anon_sym_trait] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1863), - [anon_sym_union] = ACTIONS(1863), - [anon_sym_unsafe] = ACTIONS(1863), - [anon_sym_use] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_POUND] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_move] = ACTIONS(1863), - [sym_integer_literal] = ACTIONS(1861), - [aux_sym_string_literal_token1] = ACTIONS(1861), - [sym_char_literal] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1863), - [anon_sym_false] = ACTIONS(1863), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1863), - [sym_super] = ACTIONS(1863), - [sym_crate] = ACTIONS(1863), - [sym_metavariable] = ACTIONS(1861), - [sym_raw_string_literal] = ACTIONS(1861), - [sym_float_literal] = ACTIONS(1861), + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_macro_rules_BANG] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_u8] = ACTIONS(1873), + [anon_sym_i8] = ACTIONS(1873), + [anon_sym_u16] = ACTIONS(1873), + [anon_sym_i16] = ACTIONS(1873), + [anon_sym_u32] = ACTIONS(1873), + [anon_sym_i32] = ACTIONS(1873), + [anon_sym_u64] = ACTIONS(1873), + [anon_sym_i64] = ACTIONS(1873), + [anon_sym_u128] = ACTIONS(1873), + [anon_sym_i128] = ACTIONS(1873), + [anon_sym_isize] = ACTIONS(1873), + [anon_sym_usize] = ACTIONS(1873), + [anon_sym_f32] = ACTIONS(1873), + [anon_sym_f64] = ACTIONS(1873), + [anon_sym_bool] = ACTIONS(1873), + [anon_sym_str] = ACTIONS(1873), + [anon_sym_char] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [anon_sym_fn] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_impl] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_loop] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1873), + [anon_sym_mod] = ACTIONS(1873), + [anon_sym_pub] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_struct] = ACTIONS(1873), + [anon_sym_trait] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_union] = ACTIONS(1873), + [anon_sym_unsafe] = ACTIONS(1873), + [anon_sym_use] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_POUND] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_move] = ACTIONS(1873), + [sym_integer_literal] = ACTIONS(1871), + [aux_sym_string_literal_token1] = ACTIONS(1871), + [sym_char_literal] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_crate] = ACTIONS(1873), + [sym_metavariable] = ACTIONS(1871), + [sym_raw_string_literal] = ACTIONS(1871), + [sym_float_literal] = ACTIONS(1871), [sym_block_comment] = ACTIONS(3), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(1865), - [sym_identifier] = ACTIONS(1867), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_macro_rules_BANG] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_u8] = ACTIONS(1867), - [anon_sym_i8] = ACTIONS(1867), - [anon_sym_u16] = ACTIONS(1867), - [anon_sym_i16] = ACTIONS(1867), - [anon_sym_u32] = ACTIONS(1867), - [anon_sym_i32] = ACTIONS(1867), - [anon_sym_u64] = ACTIONS(1867), - [anon_sym_i64] = ACTIONS(1867), - [anon_sym_u128] = ACTIONS(1867), - [anon_sym_i128] = ACTIONS(1867), - [anon_sym_isize] = ACTIONS(1867), - [anon_sym_usize] = ACTIONS(1867), - [anon_sym_f32] = ACTIONS(1867), - [anon_sym_f64] = ACTIONS(1867), - [anon_sym_bool] = ACTIONS(1867), - [anon_sym_str] = ACTIONS(1867), - [anon_sym_char] = ACTIONS(1867), - [anon_sym_SQUOTE] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_default] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [anon_sym_fn] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_impl] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_loop] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_mod] = ACTIONS(1867), - [anon_sym_pub] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_struct] = ACTIONS(1867), - [anon_sym_trait] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1867), - [anon_sym_union] = ACTIONS(1867), - [anon_sym_unsafe] = ACTIONS(1867), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_POUND] = ACTIONS(1865), - [anon_sym_BANG] = ACTIONS(1865), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_COLON_COLON] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym_DOT_DOT] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(1865), - [anon_sym_move] = ACTIONS(1867), - [sym_integer_literal] = ACTIONS(1865), - [aux_sym_string_literal_token1] = ACTIONS(1865), - [sym_char_literal] = ACTIONS(1865), - [anon_sym_true] = ACTIONS(1867), - [anon_sym_false] = ACTIONS(1867), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1867), - [sym_super] = ACTIONS(1867), - [sym_crate] = ACTIONS(1867), - [sym_metavariable] = ACTIONS(1865), - [sym_raw_string_literal] = ACTIONS(1865), - [sym_float_literal] = ACTIONS(1865), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_macro_rules_BANG] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1875), + [anon_sym_u8] = ACTIONS(1877), + [anon_sym_i8] = ACTIONS(1877), + [anon_sym_u16] = ACTIONS(1877), + [anon_sym_i16] = ACTIONS(1877), + [anon_sym_u32] = ACTIONS(1877), + [anon_sym_i32] = ACTIONS(1877), + [anon_sym_u64] = ACTIONS(1877), + [anon_sym_i64] = ACTIONS(1877), + [anon_sym_u128] = ACTIONS(1877), + [anon_sym_i128] = ACTIONS(1877), + [anon_sym_isize] = ACTIONS(1877), + [anon_sym_usize] = ACTIONS(1877), + [anon_sym_f32] = ACTIONS(1877), + [anon_sym_f64] = ACTIONS(1877), + [anon_sym_bool] = ACTIONS(1877), + [anon_sym_str] = ACTIONS(1877), + [anon_sym_char] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_async] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_default] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_impl] = ACTIONS(1877), + [anon_sym_let] = ACTIONS(1877), + [anon_sym_loop] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_mod] = ACTIONS(1877), + [anon_sym_pub] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_static] = ACTIONS(1877), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_trait] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_use] = ACTIONS(1877), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(1875), + [anon_sym_BANG] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1875), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1875), + [anon_sym_move] = ACTIONS(1877), + [sym_integer_literal] = ACTIONS(1875), + [aux_sym_string_literal_token1] = ACTIONS(1875), + [sym_char_literal] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1877), + [sym_super] = ACTIONS(1877), + [sym_crate] = ACTIONS(1877), + [sym_metavariable] = ACTIONS(1875), + [sym_raw_string_literal] = ACTIONS(1875), + [sym_float_literal] = ACTIONS(1875), [sym_block_comment] = ACTIONS(3), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_macro_rules_BANG] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_u8] = ACTIONS(1871), - [anon_sym_i8] = ACTIONS(1871), - [anon_sym_u16] = ACTIONS(1871), - [anon_sym_i16] = ACTIONS(1871), - [anon_sym_u32] = ACTIONS(1871), - [anon_sym_i32] = ACTIONS(1871), - [anon_sym_u64] = ACTIONS(1871), - [anon_sym_i64] = ACTIONS(1871), - [anon_sym_u128] = ACTIONS(1871), - [anon_sym_i128] = ACTIONS(1871), - [anon_sym_isize] = ACTIONS(1871), - [anon_sym_usize] = ACTIONS(1871), - [anon_sym_f32] = ACTIONS(1871), - [anon_sym_f64] = ACTIONS(1871), - [anon_sym_bool] = ACTIONS(1871), - [anon_sym_str] = ACTIONS(1871), - [anon_sym_char] = ACTIONS(1871), - [anon_sym_SQUOTE] = ACTIONS(1871), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_fn] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_impl] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_loop] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_mod] = ACTIONS(1871), - [anon_sym_pub] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_trait] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), - [anon_sym_union] = ACTIONS(1871), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_use] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_COLON_COLON] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_move] = ACTIONS(1871), - [sym_integer_literal] = ACTIONS(1869), - [aux_sym_string_literal_token1] = ACTIONS(1869), - [sym_char_literal] = ACTIONS(1869), - [anon_sym_true] = ACTIONS(1871), - [anon_sym_false] = ACTIONS(1871), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1871), - [sym_super] = ACTIONS(1871), - [sym_crate] = ACTIONS(1871), - [sym_metavariable] = ACTIONS(1869), - [sym_raw_string_literal] = ACTIONS(1869), - [sym_float_literal] = ACTIONS(1869), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_macro_rules_BANG] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_u8] = ACTIONS(1881), + [anon_sym_i8] = ACTIONS(1881), + [anon_sym_u16] = ACTIONS(1881), + [anon_sym_i16] = ACTIONS(1881), + [anon_sym_u32] = ACTIONS(1881), + [anon_sym_i32] = ACTIONS(1881), + [anon_sym_u64] = ACTIONS(1881), + [anon_sym_i64] = ACTIONS(1881), + [anon_sym_u128] = ACTIONS(1881), + [anon_sym_i128] = ACTIONS(1881), + [anon_sym_isize] = ACTIONS(1881), + [anon_sym_usize] = ACTIONS(1881), + [anon_sym_f32] = ACTIONS(1881), + [anon_sym_f64] = ACTIONS(1881), + [anon_sym_bool] = ACTIONS(1881), + [anon_sym_str] = ACTIONS(1881), + [anon_sym_char] = ACTIONS(1881), + [anon_sym_SQUOTE] = ACTIONS(1881), + [anon_sym_async] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_default] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_impl] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1881), + [anon_sym_loop] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_mod] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_static] = ACTIONS(1881), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_trait] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_use] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_BANG] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_move] = ACTIONS(1881), + [sym_integer_literal] = ACTIONS(1879), + [aux_sym_string_literal_token1] = ACTIONS(1879), + [sym_char_literal] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1881), + [sym_super] = ACTIONS(1881), + [sym_crate] = ACTIONS(1881), + [sym_metavariable] = ACTIONS(1879), + [sym_raw_string_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), [sym_block_comment] = ACTIONS(3), }, [444] = { - [ts_builtin_sym_end] = ACTIONS(1873), - [sym_identifier] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_macro_rules_BANG] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_u8] = ACTIONS(1875), - [anon_sym_i8] = ACTIONS(1875), - [anon_sym_u16] = ACTIONS(1875), - [anon_sym_i16] = ACTIONS(1875), - [anon_sym_u32] = ACTIONS(1875), - [anon_sym_i32] = ACTIONS(1875), - [anon_sym_u64] = ACTIONS(1875), - [anon_sym_i64] = ACTIONS(1875), - [anon_sym_u128] = ACTIONS(1875), - [anon_sym_i128] = ACTIONS(1875), - [anon_sym_isize] = ACTIONS(1875), - [anon_sym_usize] = ACTIONS(1875), - [anon_sym_f32] = ACTIONS(1875), - [anon_sym_f64] = ACTIONS(1875), - [anon_sym_bool] = ACTIONS(1875), - [anon_sym_str] = ACTIONS(1875), - [anon_sym_char] = ACTIONS(1875), - [anon_sym_SQUOTE] = ACTIONS(1875), - [anon_sym_async] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_default] = ACTIONS(1875), - [anon_sym_enum] = ACTIONS(1875), - [anon_sym_fn] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_impl] = ACTIONS(1875), - [anon_sym_let] = ACTIONS(1875), - [anon_sym_loop] = ACTIONS(1875), - [anon_sym_match] = ACTIONS(1875), - [anon_sym_mod] = ACTIONS(1875), - [anon_sym_pub] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_static] = ACTIONS(1875), - [anon_sym_struct] = ACTIONS(1875), - [anon_sym_trait] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1875), - [anon_sym_union] = ACTIONS(1875), - [anon_sym_unsafe] = ACTIONS(1875), - [anon_sym_use] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1873), - [anon_sym_extern] = ACTIONS(1875), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_COLON_COLON] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_move] = ACTIONS(1875), - [sym_integer_literal] = ACTIONS(1873), - [aux_sym_string_literal_token1] = ACTIONS(1873), - [sym_char_literal] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1875), - [anon_sym_false] = ACTIONS(1875), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1875), - [sym_super] = ACTIONS(1875), - [sym_crate] = ACTIONS(1875), - [sym_metavariable] = ACTIONS(1873), - [sym_raw_string_literal] = ACTIONS(1873), - [sym_float_literal] = ACTIONS(1873), + [ts_builtin_sym_end] = ACTIONS(1883), + [sym_identifier] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1883), + [anon_sym_macro_rules_BANG] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(1883), + [anon_sym_u8] = ACTIONS(1885), + [anon_sym_i8] = ACTIONS(1885), + [anon_sym_u16] = ACTIONS(1885), + [anon_sym_i16] = ACTIONS(1885), + [anon_sym_u32] = ACTIONS(1885), + [anon_sym_i32] = ACTIONS(1885), + [anon_sym_u64] = ACTIONS(1885), + [anon_sym_i64] = ACTIONS(1885), + [anon_sym_u128] = ACTIONS(1885), + [anon_sym_i128] = ACTIONS(1885), + [anon_sym_isize] = ACTIONS(1885), + [anon_sym_usize] = ACTIONS(1885), + [anon_sym_f32] = ACTIONS(1885), + [anon_sym_f64] = ACTIONS(1885), + [anon_sym_bool] = ACTIONS(1885), + [anon_sym_str] = ACTIONS(1885), + [anon_sym_char] = ACTIONS(1885), + [anon_sym_SQUOTE] = ACTIONS(1885), + [anon_sym_async] = ACTIONS(1885), + [anon_sym_break] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(1885), + [anon_sym_continue] = ACTIONS(1885), + [anon_sym_default] = ACTIONS(1885), + [anon_sym_enum] = ACTIONS(1885), + [anon_sym_fn] = ACTIONS(1885), + [anon_sym_for] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1885), + [anon_sym_impl] = ACTIONS(1885), + [anon_sym_let] = ACTIONS(1885), + [anon_sym_loop] = ACTIONS(1885), + [anon_sym_match] = ACTIONS(1885), + [anon_sym_mod] = ACTIONS(1885), + [anon_sym_pub] = ACTIONS(1885), + [anon_sym_return] = ACTIONS(1885), + [anon_sym_static] = ACTIONS(1885), + [anon_sym_struct] = ACTIONS(1885), + [anon_sym_trait] = ACTIONS(1885), + [anon_sym_type] = ACTIONS(1885), + [anon_sym_union] = ACTIONS(1885), + [anon_sym_unsafe] = ACTIONS(1885), + [anon_sym_use] = ACTIONS(1885), + [anon_sym_while] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(1883), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_COLON_COLON] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1883), + [anon_sym_move] = ACTIONS(1885), + [sym_integer_literal] = ACTIONS(1883), + [aux_sym_string_literal_token1] = ACTIONS(1883), + [sym_char_literal] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1885), + [sym_super] = ACTIONS(1885), + [sym_crate] = ACTIONS(1885), + [sym_metavariable] = ACTIONS(1883), + [sym_raw_string_literal] = ACTIONS(1883), + [sym_float_literal] = ACTIONS(1883), [sym_block_comment] = ACTIONS(3), }, [445] = { - [ts_builtin_sym_end] = ACTIONS(1877), - [sym_identifier] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_macro_rules_BANG] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_u8] = ACTIONS(1879), - [anon_sym_i8] = ACTIONS(1879), - [anon_sym_u16] = ACTIONS(1879), - [anon_sym_i16] = ACTIONS(1879), - [anon_sym_u32] = ACTIONS(1879), - [anon_sym_i32] = ACTIONS(1879), - [anon_sym_u64] = ACTIONS(1879), - [anon_sym_i64] = ACTIONS(1879), - [anon_sym_u128] = ACTIONS(1879), - [anon_sym_i128] = ACTIONS(1879), - [anon_sym_isize] = ACTIONS(1879), - [anon_sym_usize] = ACTIONS(1879), - [anon_sym_f32] = ACTIONS(1879), - [anon_sym_f64] = ACTIONS(1879), - [anon_sym_bool] = ACTIONS(1879), - [anon_sym_str] = ACTIONS(1879), - [anon_sym_char] = ACTIONS(1879), - [anon_sym_SQUOTE] = ACTIONS(1879), - [anon_sym_async] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_default] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [anon_sym_fn] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_impl] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_mod] = ACTIONS(1879), - [anon_sym_pub] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_trait] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_union] = ACTIONS(1879), - [anon_sym_unsafe] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1877), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_LT] = ACTIONS(1877), - [anon_sym_COLON_COLON] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_move] = ACTIONS(1879), - [sym_integer_literal] = ACTIONS(1877), - [aux_sym_string_literal_token1] = ACTIONS(1877), - [sym_char_literal] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1879), - [anon_sym_false] = ACTIONS(1879), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1879), - [sym_super] = ACTIONS(1879), - [sym_crate] = ACTIONS(1879), - [sym_metavariable] = ACTIONS(1877), - [sym_raw_string_literal] = ACTIONS(1877), - [sym_float_literal] = ACTIONS(1877), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_macro_rules_BANG] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_u8] = ACTIONS(1889), + [anon_sym_i8] = ACTIONS(1889), + [anon_sym_u16] = ACTIONS(1889), + [anon_sym_i16] = ACTIONS(1889), + [anon_sym_u32] = ACTIONS(1889), + [anon_sym_i32] = ACTIONS(1889), + [anon_sym_u64] = ACTIONS(1889), + [anon_sym_i64] = ACTIONS(1889), + [anon_sym_u128] = ACTIONS(1889), + [anon_sym_i128] = ACTIONS(1889), + [anon_sym_isize] = ACTIONS(1889), + [anon_sym_usize] = ACTIONS(1889), + [anon_sym_f32] = ACTIONS(1889), + [anon_sym_f64] = ACTIONS(1889), + [anon_sym_bool] = ACTIONS(1889), + [anon_sym_str] = ACTIONS(1889), + [anon_sym_char] = ACTIONS(1889), + [anon_sym_SQUOTE] = ACTIONS(1889), + [anon_sym_async] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_impl] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1889), + [anon_sym_loop] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_mod] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_static] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_trait] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_use] = ACTIONS(1889), + [anon_sym_while] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_extern] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_COLON_COLON] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_move] = ACTIONS(1889), + [sym_integer_literal] = ACTIONS(1887), + [aux_sym_string_literal_token1] = ACTIONS(1887), + [sym_char_literal] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(1889), + [anon_sym_false] = ACTIONS(1889), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1889), + [sym_super] = ACTIONS(1889), + [sym_crate] = ACTIONS(1889), + [sym_metavariable] = ACTIONS(1887), + [sym_raw_string_literal] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1887), [sym_block_comment] = ACTIONS(3), }, [446] = { - [ts_builtin_sym_end] = ACTIONS(1881), - [sym_identifier] = ACTIONS(1883), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_macro_rules_BANG] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_u8] = ACTIONS(1883), - [anon_sym_i8] = ACTIONS(1883), - [anon_sym_u16] = ACTIONS(1883), - [anon_sym_i16] = ACTIONS(1883), - [anon_sym_u32] = ACTIONS(1883), - [anon_sym_i32] = ACTIONS(1883), - [anon_sym_u64] = ACTIONS(1883), - [anon_sym_i64] = ACTIONS(1883), - [anon_sym_u128] = ACTIONS(1883), - [anon_sym_i128] = ACTIONS(1883), - [anon_sym_isize] = ACTIONS(1883), - [anon_sym_usize] = ACTIONS(1883), - [anon_sym_f32] = ACTIONS(1883), - [anon_sym_f64] = ACTIONS(1883), - [anon_sym_bool] = ACTIONS(1883), - [anon_sym_str] = ACTIONS(1883), - [anon_sym_char] = ACTIONS(1883), - [anon_sym_SQUOTE] = ACTIONS(1883), - [anon_sym_async] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_default] = ACTIONS(1883), - [anon_sym_enum] = ACTIONS(1883), - [anon_sym_fn] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_impl] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1883), - [anon_sym_loop] = ACTIONS(1883), - [anon_sym_match] = ACTIONS(1883), - [anon_sym_mod] = ACTIONS(1883), - [anon_sym_pub] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_struct] = ACTIONS(1883), - [anon_sym_trait] = ACTIONS(1883), - [anon_sym_type] = ACTIONS(1883), - [anon_sym_union] = ACTIONS(1883), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_use] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_POUND] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_move] = ACTIONS(1883), - [sym_integer_literal] = ACTIONS(1881), - [aux_sym_string_literal_token1] = ACTIONS(1881), - [sym_char_literal] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1883), - [anon_sym_false] = ACTIONS(1883), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1883), - [sym_super] = ACTIONS(1883), - [sym_crate] = ACTIONS(1883), - [sym_metavariable] = ACTIONS(1881), - [sym_raw_string_literal] = ACTIONS(1881), - [sym_float_literal] = ACTIONS(1881), + [ts_builtin_sym_end] = ACTIONS(389), + [sym_identifier] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_macro_rules_BANG] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_u8] = ACTIONS(391), + [anon_sym_i8] = ACTIONS(391), + [anon_sym_u16] = ACTIONS(391), + [anon_sym_i16] = ACTIONS(391), + [anon_sym_u32] = ACTIONS(391), + [anon_sym_i32] = ACTIONS(391), + [anon_sym_u64] = ACTIONS(391), + [anon_sym_i64] = ACTIONS(391), + [anon_sym_u128] = ACTIONS(391), + [anon_sym_i128] = ACTIONS(391), + [anon_sym_isize] = ACTIONS(391), + [anon_sym_usize] = ACTIONS(391), + [anon_sym_f32] = ACTIONS(391), + [anon_sym_f64] = ACTIONS(391), + [anon_sym_bool] = ACTIONS(391), + [anon_sym_str] = ACTIONS(391), + [anon_sym_char] = ACTIONS(391), + [anon_sym_SQUOTE] = ACTIONS(391), + [anon_sym_async] = ACTIONS(391), + [anon_sym_break] = ACTIONS(391), + [anon_sym_const] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_default] = ACTIONS(391), + [anon_sym_enum] = ACTIONS(391), + [anon_sym_fn] = ACTIONS(391), + [anon_sym_for] = ACTIONS(391), + [anon_sym_if] = ACTIONS(391), + [anon_sym_impl] = ACTIONS(391), + [anon_sym_let] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(391), + [anon_sym_match] = ACTIONS(391), + [anon_sym_mod] = ACTIONS(391), + [anon_sym_pub] = ACTIONS(391), + [anon_sym_return] = ACTIONS(391), + [anon_sym_static] = ACTIONS(391), + [anon_sym_struct] = ACTIONS(391), + [anon_sym_trait] = ACTIONS(391), + [anon_sym_type] = ACTIONS(391), + [anon_sym_union] = ACTIONS(391), + [anon_sym_unsafe] = ACTIONS(391), + [anon_sym_use] = ACTIONS(391), + [anon_sym_while] = ACTIONS(391), + [anon_sym_POUND] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_extern] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_move] = ACTIONS(391), + [sym_integer_literal] = ACTIONS(389), + [aux_sym_string_literal_token1] = ACTIONS(389), + [sym_char_literal] = ACTIONS(389), + [anon_sym_true] = ACTIONS(391), + [anon_sym_false] = ACTIONS(391), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(391), + [sym_super] = ACTIONS(391), + [sym_crate] = ACTIONS(391), + [sym_metavariable] = ACTIONS(389), + [sym_raw_string_literal] = ACTIONS(389), + [sym_float_literal] = ACTIONS(389), [sym_block_comment] = ACTIONS(3), }, [447] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_macro_rules_BANG] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_u8] = ACTIONS(1887), - [anon_sym_i8] = ACTIONS(1887), - [anon_sym_u16] = ACTIONS(1887), - [anon_sym_i16] = ACTIONS(1887), - [anon_sym_u32] = ACTIONS(1887), - [anon_sym_i32] = ACTIONS(1887), - [anon_sym_u64] = ACTIONS(1887), - [anon_sym_i64] = ACTIONS(1887), - [anon_sym_u128] = ACTIONS(1887), - [anon_sym_i128] = ACTIONS(1887), - [anon_sym_isize] = ACTIONS(1887), - [anon_sym_usize] = ACTIONS(1887), - [anon_sym_f32] = ACTIONS(1887), - [anon_sym_f64] = ACTIONS(1887), - [anon_sym_bool] = ACTIONS(1887), - [anon_sym_str] = ACTIONS(1887), - [anon_sym_char] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [anon_sym_fn] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_impl] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_loop] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_mod] = ACTIONS(1887), - [anon_sym_pub] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_union] = ACTIONS(1887), - [anon_sym_unsafe] = ACTIONS(1887), - [anon_sym_use] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_POUND] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_move] = ACTIONS(1887), - [sym_integer_literal] = ACTIONS(1885), - [aux_sym_string_literal_token1] = ACTIONS(1885), - [sym_char_literal] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1887), - [sym_super] = ACTIONS(1887), - [sym_crate] = ACTIONS(1887), - [sym_metavariable] = ACTIONS(1885), - [sym_raw_string_literal] = ACTIONS(1885), - [sym_float_literal] = ACTIONS(1885), + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_identifier] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_macro_rules_BANG] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_u8] = ACTIONS(1893), + [anon_sym_i8] = ACTIONS(1893), + [anon_sym_u16] = ACTIONS(1893), + [anon_sym_i16] = ACTIONS(1893), + [anon_sym_u32] = ACTIONS(1893), + [anon_sym_i32] = ACTIONS(1893), + [anon_sym_u64] = ACTIONS(1893), + [anon_sym_i64] = ACTIONS(1893), + [anon_sym_u128] = ACTIONS(1893), + [anon_sym_i128] = ACTIONS(1893), + [anon_sym_isize] = ACTIONS(1893), + [anon_sym_usize] = ACTIONS(1893), + [anon_sym_f32] = ACTIONS(1893), + [anon_sym_f64] = ACTIONS(1893), + [anon_sym_bool] = ACTIONS(1893), + [anon_sym_str] = ACTIONS(1893), + [anon_sym_char] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_async] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_default] = ACTIONS(1893), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_fn] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_impl] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_loop] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_mod] = ACTIONS(1893), + [anon_sym_pub] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(1893), + [anon_sym_trait] = ACTIONS(1893), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_union] = ACTIONS(1893), + [anon_sym_unsafe] = ACTIONS(1893), + [anon_sym_use] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(1891), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_extern] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1891), + [anon_sym_COLON_COLON] = ACTIONS(1891), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1891), + [anon_sym_move] = ACTIONS(1893), + [sym_integer_literal] = ACTIONS(1891), + [aux_sym_string_literal_token1] = ACTIONS(1891), + [sym_char_literal] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1893), + [sym_super] = ACTIONS(1893), + [sym_crate] = ACTIONS(1893), + [sym_metavariable] = ACTIONS(1891), + [sym_raw_string_literal] = ACTIONS(1891), + [sym_float_literal] = ACTIONS(1891), [sym_block_comment] = ACTIONS(3), }, [448] = { - [ts_builtin_sym_end] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_macro_rules_BANG] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_u8] = ACTIONS(1891), - [anon_sym_i8] = ACTIONS(1891), - [anon_sym_u16] = ACTIONS(1891), - [anon_sym_i16] = ACTIONS(1891), - [anon_sym_u32] = ACTIONS(1891), - [anon_sym_i32] = ACTIONS(1891), - [anon_sym_u64] = ACTIONS(1891), - [anon_sym_i64] = ACTIONS(1891), - [anon_sym_u128] = ACTIONS(1891), - [anon_sym_i128] = ACTIONS(1891), - [anon_sym_isize] = ACTIONS(1891), - [anon_sym_usize] = ACTIONS(1891), - [anon_sym_f32] = ACTIONS(1891), - [anon_sym_f64] = ACTIONS(1891), - [anon_sym_bool] = ACTIONS(1891), - [anon_sym_str] = ACTIONS(1891), - [anon_sym_char] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_async] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_default] = ACTIONS(1891), - [anon_sym_enum] = ACTIONS(1891), - [anon_sym_fn] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_impl] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_loop] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1891), - [anon_sym_mod] = ACTIONS(1891), - [anon_sym_pub] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_struct] = ACTIONS(1891), - [anon_sym_trait] = ACTIONS(1891), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_union] = ACTIONS(1891), - [anon_sym_unsafe] = ACTIONS(1891), - [anon_sym_use] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_COLON_COLON] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_DOT_DOT] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_move] = ACTIONS(1891), - [sym_integer_literal] = ACTIONS(1889), - [aux_sym_string_literal_token1] = ACTIONS(1889), - [sym_char_literal] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(1891), - [anon_sym_false] = ACTIONS(1891), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1891), - [sym_super] = ACTIONS(1891), - [sym_crate] = ACTIONS(1891), - [sym_metavariable] = ACTIONS(1889), - [sym_raw_string_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), + [ts_builtin_sym_end] = ACTIONS(1895), + [sym_identifier] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_macro_rules_BANG] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_u8] = ACTIONS(1897), + [anon_sym_i8] = ACTIONS(1897), + [anon_sym_u16] = ACTIONS(1897), + [anon_sym_i16] = ACTIONS(1897), + [anon_sym_u32] = ACTIONS(1897), + [anon_sym_i32] = ACTIONS(1897), + [anon_sym_u64] = ACTIONS(1897), + [anon_sym_i64] = ACTIONS(1897), + [anon_sym_u128] = ACTIONS(1897), + [anon_sym_i128] = ACTIONS(1897), + [anon_sym_isize] = ACTIONS(1897), + [anon_sym_usize] = ACTIONS(1897), + [anon_sym_f32] = ACTIONS(1897), + [anon_sym_f64] = ACTIONS(1897), + [anon_sym_bool] = ACTIONS(1897), + [anon_sym_str] = ACTIONS(1897), + [anon_sym_char] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_default] = ACTIONS(1897), + [anon_sym_enum] = ACTIONS(1897), + [anon_sym_fn] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_impl] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_mod] = ACTIONS(1897), + [anon_sym_pub] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_static] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1897), + [anon_sym_trait] = ACTIONS(1897), + [anon_sym_type] = ACTIONS(1897), + [anon_sym_union] = ACTIONS(1897), + [anon_sym_unsafe] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(1895), + [anon_sym_BANG] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_COLON_COLON] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_move] = ACTIONS(1897), + [sym_integer_literal] = ACTIONS(1895), + [aux_sym_string_literal_token1] = ACTIONS(1895), + [sym_char_literal] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1897), + [sym_super] = ACTIONS(1897), + [sym_crate] = ACTIONS(1897), + [sym_metavariable] = ACTIONS(1895), + [sym_raw_string_literal] = ACTIONS(1895), + [sym_float_literal] = ACTIONS(1895), [sym_block_comment] = ACTIONS(3), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1895), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_macro_rules_BANG] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_u8] = ACTIONS(1895), - [anon_sym_i8] = ACTIONS(1895), - [anon_sym_u16] = ACTIONS(1895), - [anon_sym_i16] = ACTIONS(1895), - [anon_sym_u32] = ACTIONS(1895), - [anon_sym_i32] = ACTIONS(1895), - [anon_sym_u64] = ACTIONS(1895), - [anon_sym_i64] = ACTIONS(1895), - [anon_sym_u128] = ACTIONS(1895), - [anon_sym_i128] = ACTIONS(1895), - [anon_sym_isize] = ACTIONS(1895), - [anon_sym_usize] = ACTIONS(1895), - [anon_sym_f32] = ACTIONS(1895), - [anon_sym_f64] = ACTIONS(1895), - [anon_sym_bool] = ACTIONS(1895), - [anon_sym_str] = ACTIONS(1895), - [anon_sym_char] = ACTIONS(1895), - [anon_sym_SQUOTE] = ACTIONS(1895), - [anon_sym_async] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_fn] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_impl] = ACTIONS(1895), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_loop] = ACTIONS(1895), - [anon_sym_match] = ACTIONS(1895), - [anon_sym_mod] = ACTIONS(1895), - [anon_sym_pub] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_trait] = ACTIONS(1895), - [anon_sym_type] = ACTIONS(1895), - [anon_sym_union] = ACTIONS(1895), - [anon_sym_unsafe] = ACTIONS(1895), - [anon_sym_use] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_POUND] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_COLON_COLON] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym_DOT_DOT] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_move] = ACTIONS(1895), - [sym_integer_literal] = ACTIONS(1893), - [aux_sym_string_literal_token1] = ACTIONS(1893), - [sym_char_literal] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1895), - [anon_sym_false] = ACTIONS(1895), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1895), - [sym_super] = ACTIONS(1895), - [sym_crate] = ACTIONS(1895), - [sym_metavariable] = ACTIONS(1893), - [sym_raw_string_literal] = ACTIONS(1893), - [sym_float_literal] = ACTIONS(1893), + [ts_builtin_sym_end] = ACTIONS(393), + [sym_identifier] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(393), + [anon_sym_macro_rules_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_async] = ACTIONS(395), + [anon_sym_break] = ACTIONS(395), + [anon_sym_const] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_default] = ACTIONS(395), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_fn] = ACTIONS(395), + [anon_sym_for] = ACTIONS(395), + [anon_sym_if] = ACTIONS(395), + [anon_sym_impl] = ACTIONS(395), + [anon_sym_let] = ACTIONS(395), + [anon_sym_loop] = ACTIONS(395), + [anon_sym_match] = ACTIONS(395), + [anon_sym_mod] = ACTIONS(395), + [anon_sym_pub] = ACTIONS(395), + [anon_sym_return] = ACTIONS(395), + [anon_sym_static] = ACTIONS(395), + [anon_sym_struct] = ACTIONS(395), + [anon_sym_trait] = ACTIONS(395), + [anon_sym_type] = ACTIONS(395), + [anon_sym_union] = ACTIONS(395), + [anon_sym_unsafe] = ACTIONS(395), + [anon_sym_use] = ACTIONS(395), + [anon_sym_while] = ACTIONS(395), + [anon_sym_POUND] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_extern] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_move] = ACTIONS(395), + [sym_integer_literal] = ACTIONS(393), + [aux_sym_string_literal_token1] = ACTIONS(393), + [sym_char_literal] = ACTIONS(393), + [anon_sym_true] = ACTIONS(395), + [anon_sym_false] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(395), + [sym_super] = ACTIONS(395), + [sym_crate] = ACTIONS(395), + [sym_metavariable] = ACTIONS(393), + [sym_raw_string_literal] = ACTIONS(393), + [sym_float_literal] = ACTIONS(393), [sym_block_comment] = ACTIONS(3), }, [450] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_macro_rules_BANG] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_u8] = ACTIONS(1899), - [anon_sym_i8] = ACTIONS(1899), - [anon_sym_u16] = ACTIONS(1899), - [anon_sym_i16] = ACTIONS(1899), - [anon_sym_u32] = ACTIONS(1899), - [anon_sym_i32] = ACTIONS(1899), - [anon_sym_u64] = ACTIONS(1899), - [anon_sym_i64] = ACTIONS(1899), - [anon_sym_u128] = ACTIONS(1899), - [anon_sym_i128] = ACTIONS(1899), - [anon_sym_isize] = ACTIONS(1899), - [anon_sym_usize] = ACTIONS(1899), - [anon_sym_f32] = ACTIONS(1899), - [anon_sym_f64] = ACTIONS(1899), - [anon_sym_bool] = ACTIONS(1899), - [anon_sym_str] = ACTIONS(1899), - [anon_sym_char] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_impl] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_loop] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_mod] = ACTIONS(1899), - [anon_sym_pub] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_trait] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_use] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1897), - [anon_sym_COLON_COLON] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), - [anon_sym_DOT_DOT] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_move] = ACTIONS(1899), - [sym_integer_literal] = ACTIONS(1897), - [aux_sym_string_literal_token1] = ACTIONS(1897), - [sym_char_literal] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1899), - [anon_sym_false] = ACTIONS(1899), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1899), - [sym_super] = ACTIONS(1899), - [sym_crate] = ACTIONS(1899), - [sym_metavariable] = ACTIONS(1897), - [sym_raw_string_literal] = ACTIONS(1897), - [sym_float_literal] = ACTIONS(1897), + [ts_builtin_sym_end] = ACTIONS(1899), + [sym_identifier] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_macro_rules_BANG] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_u8] = ACTIONS(1901), + [anon_sym_i8] = ACTIONS(1901), + [anon_sym_u16] = ACTIONS(1901), + [anon_sym_i16] = ACTIONS(1901), + [anon_sym_u32] = ACTIONS(1901), + [anon_sym_i32] = ACTIONS(1901), + [anon_sym_u64] = ACTIONS(1901), + [anon_sym_i64] = ACTIONS(1901), + [anon_sym_u128] = ACTIONS(1901), + [anon_sym_i128] = ACTIONS(1901), + [anon_sym_isize] = ACTIONS(1901), + [anon_sym_usize] = ACTIONS(1901), + [anon_sym_f32] = ACTIONS(1901), + [anon_sym_f64] = ACTIONS(1901), + [anon_sym_bool] = ACTIONS(1901), + [anon_sym_str] = ACTIONS(1901), + [anon_sym_char] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1901), + [anon_sym_async] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_default] = ACTIONS(1901), + [anon_sym_enum] = ACTIONS(1901), + [anon_sym_fn] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_impl] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_loop] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_mod] = ACTIONS(1901), + [anon_sym_pub] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_static] = ACTIONS(1901), + [anon_sym_struct] = ACTIONS(1901), + [anon_sym_trait] = ACTIONS(1901), + [anon_sym_type] = ACTIONS(1901), + [anon_sym_union] = ACTIONS(1901), + [anon_sym_unsafe] = ACTIONS(1901), + [anon_sym_use] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_move] = ACTIONS(1901), + [sym_integer_literal] = ACTIONS(1899), + [aux_sym_string_literal_token1] = ACTIONS(1899), + [sym_char_literal] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1901), + [sym_super] = ACTIONS(1901), + [sym_crate] = ACTIONS(1901), + [sym_metavariable] = ACTIONS(1899), + [sym_raw_string_literal] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), [sym_block_comment] = ACTIONS(3), }, [451] = { - [ts_builtin_sym_end] = ACTIONS(1901), - [sym_identifier] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_macro_rules_BANG] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_u8] = ACTIONS(1903), - [anon_sym_i8] = ACTIONS(1903), - [anon_sym_u16] = ACTIONS(1903), - [anon_sym_i16] = ACTIONS(1903), - [anon_sym_u32] = ACTIONS(1903), - [anon_sym_i32] = ACTIONS(1903), - [anon_sym_u64] = ACTIONS(1903), - [anon_sym_i64] = ACTIONS(1903), - [anon_sym_u128] = ACTIONS(1903), - [anon_sym_i128] = ACTIONS(1903), - [anon_sym_isize] = ACTIONS(1903), - [anon_sym_usize] = ACTIONS(1903), - [anon_sym_f32] = ACTIONS(1903), - [anon_sym_f64] = ACTIONS(1903), - [anon_sym_bool] = ACTIONS(1903), - [anon_sym_str] = ACTIONS(1903), - [anon_sym_char] = ACTIONS(1903), - [anon_sym_SQUOTE] = ACTIONS(1903), - [anon_sym_async] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), - [anon_sym_fn] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_impl] = ACTIONS(1903), - [anon_sym_let] = ACTIONS(1903), - [anon_sym_loop] = ACTIONS(1903), - [anon_sym_match] = ACTIONS(1903), - [anon_sym_mod] = ACTIONS(1903), - [anon_sym_pub] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1903), - [anon_sym_trait] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_union] = ACTIONS(1903), - [anon_sym_unsafe] = ACTIONS(1903), - [anon_sym_use] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_POUND] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_extern] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_COLON_COLON] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1903), - [sym_integer_literal] = ACTIONS(1901), - [aux_sym_string_literal_token1] = ACTIONS(1901), - [sym_char_literal] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(1903), - [anon_sym_false] = ACTIONS(1903), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1903), - [sym_super] = ACTIONS(1903), - [sym_crate] = ACTIONS(1903), - [sym_metavariable] = ACTIONS(1901), - [sym_raw_string_literal] = ACTIONS(1901), - [sym_float_literal] = ACTIONS(1901), + [ts_builtin_sym_end] = ACTIONS(1903), + [sym_identifier] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_macro_rules_BANG] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_u8] = ACTIONS(1905), + [anon_sym_i8] = ACTIONS(1905), + [anon_sym_u16] = ACTIONS(1905), + [anon_sym_i16] = ACTIONS(1905), + [anon_sym_u32] = ACTIONS(1905), + [anon_sym_i32] = ACTIONS(1905), + [anon_sym_u64] = ACTIONS(1905), + [anon_sym_i64] = ACTIONS(1905), + [anon_sym_u128] = ACTIONS(1905), + [anon_sym_i128] = ACTIONS(1905), + [anon_sym_isize] = ACTIONS(1905), + [anon_sym_usize] = ACTIONS(1905), + [anon_sym_f32] = ACTIONS(1905), + [anon_sym_f64] = ACTIONS(1905), + [anon_sym_bool] = ACTIONS(1905), + [anon_sym_str] = ACTIONS(1905), + [anon_sym_char] = ACTIONS(1905), + [anon_sym_SQUOTE] = ACTIONS(1905), + [anon_sym_async] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_default] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1905), + [anon_sym_fn] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_impl] = ACTIONS(1905), + [anon_sym_let] = ACTIONS(1905), + [anon_sym_loop] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_mod] = ACTIONS(1905), + [anon_sym_pub] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_static] = ACTIONS(1905), + [anon_sym_struct] = ACTIONS(1905), + [anon_sym_trait] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1905), + [anon_sym_union] = ACTIONS(1905), + [anon_sym_unsafe] = ACTIONS(1905), + [anon_sym_use] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(1903), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_move] = ACTIONS(1905), + [sym_integer_literal] = ACTIONS(1903), + [aux_sym_string_literal_token1] = ACTIONS(1903), + [sym_char_literal] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1905), + [anon_sym_false] = ACTIONS(1905), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1905), + [sym_super] = ACTIONS(1905), + [sym_crate] = ACTIONS(1905), + [sym_metavariable] = ACTIONS(1903), + [sym_raw_string_literal] = ACTIONS(1903), + [sym_float_literal] = ACTIONS(1903), [sym_block_comment] = ACTIONS(3), }, [452] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_identifier] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_macro_rules_BANG] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_u8] = ACTIONS(1907), - [anon_sym_i8] = ACTIONS(1907), - [anon_sym_u16] = ACTIONS(1907), - [anon_sym_i16] = ACTIONS(1907), - [anon_sym_u32] = ACTIONS(1907), - [anon_sym_i32] = ACTIONS(1907), - [anon_sym_u64] = ACTIONS(1907), - [anon_sym_i64] = ACTIONS(1907), - [anon_sym_u128] = ACTIONS(1907), - [anon_sym_i128] = ACTIONS(1907), - [anon_sym_isize] = ACTIONS(1907), - [anon_sym_usize] = ACTIONS(1907), - [anon_sym_f32] = ACTIONS(1907), - [anon_sym_f64] = ACTIONS(1907), - [anon_sym_bool] = ACTIONS(1907), - [anon_sym_str] = ACTIONS(1907), - [anon_sym_char] = ACTIONS(1907), - [anon_sym_SQUOTE] = ACTIONS(1907), - [anon_sym_async] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_default] = ACTIONS(1907), - [anon_sym_enum] = ACTIONS(1907), - [anon_sym_fn] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_impl] = ACTIONS(1907), - [anon_sym_let] = ACTIONS(1907), - [anon_sym_loop] = ACTIONS(1907), - [anon_sym_match] = ACTIONS(1907), - [anon_sym_mod] = ACTIONS(1907), - [anon_sym_pub] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_static] = ACTIONS(1907), - [anon_sym_struct] = ACTIONS(1907), - [anon_sym_trait] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_union] = ACTIONS(1907), - [anon_sym_unsafe] = ACTIONS(1907), - [anon_sym_use] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_POUND] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_extern] = ACTIONS(1907), - [anon_sym_LT] = ACTIONS(1905), - [anon_sym_COLON_COLON] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_move] = ACTIONS(1907), - [sym_integer_literal] = ACTIONS(1905), - [aux_sym_string_literal_token1] = ACTIONS(1905), - [sym_char_literal] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1907), - [anon_sym_false] = ACTIONS(1907), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1907), - [sym_super] = ACTIONS(1907), - [sym_crate] = ACTIONS(1907), - [sym_metavariable] = ACTIONS(1905), - [sym_raw_string_literal] = ACTIONS(1905), - [sym_float_literal] = ACTIONS(1905), + [ts_builtin_sym_end] = ACTIONS(397), + [sym_identifier] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_macro_rules_BANG] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_async] = ACTIONS(399), + [anon_sym_break] = ACTIONS(399), + [anon_sym_const] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_default] = ACTIONS(399), + [anon_sym_enum] = ACTIONS(399), + [anon_sym_fn] = ACTIONS(399), + [anon_sym_for] = ACTIONS(399), + [anon_sym_if] = ACTIONS(399), + [anon_sym_impl] = ACTIONS(399), + [anon_sym_let] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_match] = ACTIONS(399), + [anon_sym_mod] = ACTIONS(399), + [anon_sym_pub] = ACTIONS(399), + [anon_sym_return] = ACTIONS(399), + [anon_sym_static] = ACTIONS(399), + [anon_sym_struct] = ACTIONS(399), + [anon_sym_trait] = ACTIONS(399), + [anon_sym_type] = ACTIONS(399), + [anon_sym_union] = ACTIONS(399), + [anon_sym_unsafe] = ACTIONS(399), + [anon_sym_use] = ACTIONS(399), + [anon_sym_while] = ACTIONS(399), + [anon_sym_POUND] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_extern] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_move] = ACTIONS(399), + [sym_integer_literal] = ACTIONS(397), + [aux_sym_string_literal_token1] = ACTIONS(397), + [sym_char_literal] = ACTIONS(397), + [anon_sym_true] = ACTIONS(399), + [anon_sym_false] = ACTIONS(399), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(399), + [sym_super] = ACTIONS(399), + [sym_crate] = ACTIONS(399), + [sym_metavariable] = ACTIONS(397), + [sym_raw_string_literal] = ACTIONS(397), + [sym_float_literal] = ACTIONS(397), [sym_block_comment] = ACTIONS(3), }, [453] = { - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_identifier] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_macro_rules_BANG] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_LBRACK] = ACTIONS(1909), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_u8] = ACTIONS(1911), - [anon_sym_i8] = ACTIONS(1911), - [anon_sym_u16] = ACTIONS(1911), - [anon_sym_i16] = ACTIONS(1911), - [anon_sym_u32] = ACTIONS(1911), - [anon_sym_i32] = ACTIONS(1911), - [anon_sym_u64] = ACTIONS(1911), - [anon_sym_i64] = ACTIONS(1911), - [anon_sym_u128] = ACTIONS(1911), - [anon_sym_i128] = ACTIONS(1911), - [anon_sym_isize] = ACTIONS(1911), - [anon_sym_usize] = ACTIONS(1911), - [anon_sym_f32] = ACTIONS(1911), - [anon_sym_f64] = ACTIONS(1911), - [anon_sym_bool] = ACTIONS(1911), - [anon_sym_str] = ACTIONS(1911), - [anon_sym_char] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_default] = ACTIONS(1911), - [anon_sym_enum] = ACTIONS(1911), - [anon_sym_fn] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_impl] = ACTIONS(1911), - [anon_sym_let] = ACTIONS(1911), - [anon_sym_loop] = ACTIONS(1911), - [anon_sym_match] = ACTIONS(1911), - [anon_sym_mod] = ACTIONS(1911), - [anon_sym_pub] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_struct] = ACTIONS(1911), - [anon_sym_trait] = ACTIONS(1911), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_union] = ACTIONS(1911), - [anon_sym_unsafe] = ACTIONS(1911), - [anon_sym_use] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(1909), - [anon_sym_BANG] = ACTIONS(1909), - [anon_sym_extern] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1909), - [anon_sym_COLON_COLON] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1909), - [anon_sym_move] = ACTIONS(1911), - [sym_integer_literal] = ACTIONS(1909), - [aux_sym_string_literal_token1] = ACTIONS(1909), - [sym_char_literal] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1911), - [sym_super] = ACTIONS(1911), - [sym_crate] = ACTIONS(1911), - [sym_metavariable] = ACTIONS(1909), - [sym_raw_string_literal] = ACTIONS(1909), - [sym_float_literal] = ACTIONS(1909), + [ts_builtin_sym_end] = ACTIONS(1907), + [sym_identifier] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_macro_rules_BANG] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_u8] = ACTIONS(1909), + [anon_sym_i8] = ACTIONS(1909), + [anon_sym_u16] = ACTIONS(1909), + [anon_sym_i16] = ACTIONS(1909), + [anon_sym_u32] = ACTIONS(1909), + [anon_sym_i32] = ACTIONS(1909), + [anon_sym_u64] = ACTIONS(1909), + [anon_sym_i64] = ACTIONS(1909), + [anon_sym_u128] = ACTIONS(1909), + [anon_sym_i128] = ACTIONS(1909), + [anon_sym_isize] = ACTIONS(1909), + [anon_sym_usize] = ACTIONS(1909), + [anon_sym_f32] = ACTIONS(1909), + [anon_sym_f64] = ACTIONS(1909), + [anon_sym_bool] = ACTIONS(1909), + [anon_sym_str] = ACTIONS(1909), + [anon_sym_char] = ACTIONS(1909), + [anon_sym_SQUOTE] = ACTIONS(1909), + [anon_sym_async] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_const] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(1909), + [anon_sym_enum] = ACTIONS(1909), + [anon_sym_fn] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_impl] = ACTIONS(1909), + [anon_sym_let] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_mod] = ACTIONS(1909), + [anon_sym_pub] = ACTIONS(1909), + [anon_sym_return] = ACTIONS(1909), + [anon_sym_static] = ACTIONS(1909), + [anon_sym_struct] = ACTIONS(1909), + [anon_sym_trait] = ACTIONS(1909), + [anon_sym_type] = ACTIONS(1909), + [anon_sym_union] = ACTIONS(1909), + [anon_sym_unsafe] = ACTIONS(1909), + [anon_sym_use] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_COLON_COLON] = ACTIONS(1907), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_move] = ACTIONS(1909), + [sym_integer_literal] = ACTIONS(1907), + [aux_sym_string_literal_token1] = ACTIONS(1907), + [sym_char_literal] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1909), + [anon_sym_false] = ACTIONS(1909), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1909), + [sym_super] = ACTIONS(1909), + [sym_crate] = ACTIONS(1909), + [sym_metavariable] = ACTIONS(1907), + [sym_raw_string_literal] = ACTIONS(1907), + [sym_float_literal] = ACTIONS(1907), [sym_block_comment] = ACTIONS(3), }, [454] = { - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_macro_rules_BANG] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_u8] = ACTIONS(1915), - [anon_sym_i8] = ACTIONS(1915), - [anon_sym_u16] = ACTIONS(1915), - [anon_sym_i16] = ACTIONS(1915), - [anon_sym_u32] = ACTIONS(1915), - [anon_sym_i32] = ACTIONS(1915), - [anon_sym_u64] = ACTIONS(1915), - [anon_sym_i64] = ACTIONS(1915), - [anon_sym_u128] = ACTIONS(1915), - [anon_sym_i128] = ACTIONS(1915), - [anon_sym_isize] = ACTIONS(1915), - [anon_sym_usize] = ACTIONS(1915), - [anon_sym_f32] = ACTIONS(1915), - [anon_sym_f64] = ACTIONS(1915), - [anon_sym_bool] = ACTIONS(1915), - [anon_sym_str] = ACTIONS(1915), - [anon_sym_char] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(1915), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_default] = ACTIONS(1915), - [anon_sym_enum] = ACTIONS(1915), - [anon_sym_fn] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_impl] = ACTIONS(1915), - [anon_sym_let] = ACTIONS(1915), - [anon_sym_loop] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_mod] = ACTIONS(1915), - [anon_sym_pub] = ACTIONS(1915), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_static] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1915), - [anon_sym_trait] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_union] = ACTIONS(1915), - [anon_sym_unsafe] = ACTIONS(1915), - [anon_sym_use] = ACTIONS(1915), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_POUND] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1913), - [anon_sym_extern] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1913), - [anon_sym_COLON_COLON] = ACTIONS(1913), - [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_move] = ACTIONS(1915), - [sym_integer_literal] = ACTIONS(1913), - [aux_sym_string_literal_token1] = ACTIONS(1913), - [sym_char_literal] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1915), - [sym_super] = ACTIONS(1915), - [sym_crate] = ACTIONS(1915), - [sym_metavariable] = ACTIONS(1913), - [sym_raw_string_literal] = ACTIONS(1913), - [sym_float_literal] = ACTIONS(1913), + [ts_builtin_sym_end] = ACTIONS(1911), + [sym_identifier] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_macro_rules_BANG] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_u8] = ACTIONS(1913), + [anon_sym_i8] = ACTIONS(1913), + [anon_sym_u16] = ACTIONS(1913), + [anon_sym_i16] = ACTIONS(1913), + [anon_sym_u32] = ACTIONS(1913), + [anon_sym_i32] = ACTIONS(1913), + [anon_sym_u64] = ACTIONS(1913), + [anon_sym_i64] = ACTIONS(1913), + [anon_sym_u128] = ACTIONS(1913), + [anon_sym_i128] = ACTIONS(1913), + [anon_sym_isize] = ACTIONS(1913), + [anon_sym_usize] = ACTIONS(1913), + [anon_sym_f32] = ACTIONS(1913), + [anon_sym_f64] = ACTIONS(1913), + [anon_sym_bool] = ACTIONS(1913), + [anon_sym_str] = ACTIONS(1913), + [anon_sym_char] = ACTIONS(1913), + [anon_sym_SQUOTE] = ACTIONS(1913), + [anon_sym_async] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_const] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_default] = ACTIONS(1913), + [anon_sym_enum] = ACTIONS(1913), + [anon_sym_fn] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_impl] = ACTIONS(1913), + [anon_sym_let] = ACTIONS(1913), + [anon_sym_loop] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_mod] = ACTIONS(1913), + [anon_sym_pub] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1913), + [anon_sym_static] = ACTIONS(1913), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_trait] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1913), + [anon_sym_union] = ACTIONS(1913), + [anon_sym_unsafe] = ACTIONS(1913), + [anon_sym_use] = ACTIONS(1913), + [anon_sym_while] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_extern] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_COLON_COLON] = ACTIONS(1911), + [anon_sym_AMP] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_move] = ACTIONS(1913), + [sym_integer_literal] = ACTIONS(1911), + [aux_sym_string_literal_token1] = ACTIONS(1911), + [sym_char_literal] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(1913), + [anon_sym_false] = ACTIONS(1913), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1913), + [sym_super] = ACTIONS(1913), + [sym_crate] = ACTIONS(1913), + [sym_metavariable] = ACTIONS(1911), + [sym_raw_string_literal] = ACTIONS(1911), + [sym_float_literal] = ACTIONS(1911), [sym_block_comment] = ACTIONS(3), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(1917), - [sym_identifier] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_macro_rules_BANG] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_u8] = ACTIONS(1919), - [anon_sym_i8] = ACTIONS(1919), - [anon_sym_u16] = ACTIONS(1919), - [anon_sym_i16] = ACTIONS(1919), - [anon_sym_u32] = ACTIONS(1919), - [anon_sym_i32] = ACTIONS(1919), - [anon_sym_u64] = ACTIONS(1919), - [anon_sym_i64] = ACTIONS(1919), - [anon_sym_u128] = ACTIONS(1919), - [anon_sym_i128] = ACTIONS(1919), - [anon_sym_isize] = ACTIONS(1919), - [anon_sym_usize] = ACTIONS(1919), - [anon_sym_f32] = ACTIONS(1919), - [anon_sym_f64] = ACTIONS(1919), - [anon_sym_bool] = ACTIONS(1919), - [anon_sym_str] = ACTIONS(1919), - [anon_sym_char] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_async] = ACTIONS(1919), - [anon_sym_break] = ACTIONS(1919), - [anon_sym_const] = ACTIONS(1919), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_default] = ACTIONS(1919), - [anon_sym_enum] = ACTIONS(1919), - [anon_sym_fn] = ACTIONS(1919), - [anon_sym_for] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), - [anon_sym_impl] = ACTIONS(1919), - [anon_sym_let] = ACTIONS(1919), - [anon_sym_loop] = ACTIONS(1919), - [anon_sym_match] = ACTIONS(1919), - [anon_sym_mod] = ACTIONS(1919), - [anon_sym_pub] = ACTIONS(1919), - [anon_sym_return] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1919), - [anon_sym_trait] = ACTIONS(1919), - [anon_sym_type] = ACTIONS(1919), - [anon_sym_union] = ACTIONS(1919), - [anon_sym_unsafe] = ACTIONS(1919), - [anon_sym_use] = ACTIONS(1919), - [anon_sym_while] = ACTIONS(1919), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_extern] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_COLON_COLON] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_DOT_DOT] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_move] = ACTIONS(1919), - [sym_integer_literal] = ACTIONS(1917), - [aux_sym_string_literal_token1] = ACTIONS(1917), - [sym_char_literal] = ACTIONS(1917), - [anon_sym_true] = ACTIONS(1919), - [anon_sym_false] = ACTIONS(1919), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1919), - [sym_super] = ACTIONS(1919), - [sym_crate] = ACTIONS(1919), - [sym_metavariable] = ACTIONS(1917), - [sym_raw_string_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), + [ts_builtin_sym_end] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_macro_rules_BANG] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1915), + [anon_sym_u8] = ACTIONS(1917), + [anon_sym_i8] = ACTIONS(1917), + [anon_sym_u16] = ACTIONS(1917), + [anon_sym_i16] = ACTIONS(1917), + [anon_sym_u32] = ACTIONS(1917), + [anon_sym_i32] = ACTIONS(1917), + [anon_sym_u64] = ACTIONS(1917), + [anon_sym_i64] = ACTIONS(1917), + [anon_sym_u128] = ACTIONS(1917), + [anon_sym_i128] = ACTIONS(1917), + [anon_sym_isize] = ACTIONS(1917), + [anon_sym_usize] = ACTIONS(1917), + [anon_sym_f32] = ACTIONS(1917), + [anon_sym_f64] = ACTIONS(1917), + [anon_sym_bool] = ACTIONS(1917), + [anon_sym_str] = ACTIONS(1917), + [anon_sym_char] = ACTIONS(1917), + [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_async] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_default] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_fn] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_impl] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_loop] = ACTIONS(1917), + [anon_sym_match] = ACTIONS(1917), + [anon_sym_mod] = ACTIONS(1917), + [anon_sym_pub] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_static] = ACTIONS(1917), + [anon_sym_struct] = ACTIONS(1917), + [anon_sym_trait] = ACTIONS(1917), + [anon_sym_type] = ACTIONS(1917), + [anon_sym_union] = ACTIONS(1917), + [anon_sym_unsafe] = ACTIONS(1917), + [anon_sym_use] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1915), + [anon_sym_extern] = ACTIONS(1917), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_COLON_COLON] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_move] = ACTIONS(1917), + [sym_integer_literal] = ACTIONS(1915), + [aux_sym_string_literal_token1] = ACTIONS(1915), + [sym_char_literal] = ACTIONS(1915), + [anon_sym_true] = ACTIONS(1917), + [anon_sym_false] = ACTIONS(1917), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1917), + [sym_super] = ACTIONS(1917), + [sym_crate] = ACTIONS(1917), + [sym_metavariable] = ACTIONS(1915), + [sym_raw_string_literal] = ACTIONS(1915), + [sym_float_literal] = ACTIONS(1915), [sym_block_comment] = ACTIONS(3), }, [456] = { - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_identifier] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_macro_rules_BANG] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_u8] = ACTIONS(1923), - [anon_sym_i8] = ACTIONS(1923), - [anon_sym_u16] = ACTIONS(1923), - [anon_sym_i16] = ACTIONS(1923), - [anon_sym_u32] = ACTIONS(1923), - [anon_sym_i32] = ACTIONS(1923), - [anon_sym_u64] = ACTIONS(1923), - [anon_sym_i64] = ACTIONS(1923), - [anon_sym_u128] = ACTIONS(1923), - [anon_sym_i128] = ACTIONS(1923), - [anon_sym_isize] = ACTIONS(1923), - [anon_sym_usize] = ACTIONS(1923), - [anon_sym_f32] = ACTIONS(1923), - [anon_sym_f64] = ACTIONS(1923), - [anon_sym_bool] = ACTIONS(1923), - [anon_sym_str] = ACTIONS(1923), - [anon_sym_char] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_async] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_default] = ACTIONS(1923), - [anon_sym_enum] = ACTIONS(1923), - [anon_sym_fn] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_impl] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1923), - [anon_sym_loop] = ACTIONS(1923), - [anon_sym_match] = ACTIONS(1923), - [anon_sym_mod] = ACTIONS(1923), - [anon_sym_pub] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_struct] = ACTIONS(1923), - [anon_sym_trait] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_union] = ACTIONS(1923), - [anon_sym_unsafe] = ACTIONS(1923), - [anon_sym_use] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_POUND] = ACTIONS(1921), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_extern] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_DOT_DOT] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_move] = ACTIONS(1923), - [sym_integer_literal] = ACTIONS(1921), - [aux_sym_string_literal_token1] = ACTIONS(1921), - [sym_char_literal] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1923), - [sym_super] = ACTIONS(1923), - [sym_crate] = ACTIONS(1923), - [sym_metavariable] = ACTIONS(1921), - [sym_raw_string_literal] = ACTIONS(1921), - [sym_float_literal] = ACTIONS(1921), + [ts_builtin_sym_end] = ACTIONS(1919), + [sym_identifier] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_macro_rules_BANG] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1919), + [anon_sym_u8] = ACTIONS(1921), + [anon_sym_i8] = ACTIONS(1921), + [anon_sym_u16] = ACTIONS(1921), + [anon_sym_i16] = ACTIONS(1921), + [anon_sym_u32] = ACTIONS(1921), + [anon_sym_i32] = ACTIONS(1921), + [anon_sym_u64] = ACTIONS(1921), + [anon_sym_i64] = ACTIONS(1921), + [anon_sym_u128] = ACTIONS(1921), + [anon_sym_i128] = ACTIONS(1921), + [anon_sym_isize] = ACTIONS(1921), + [anon_sym_usize] = ACTIONS(1921), + [anon_sym_f32] = ACTIONS(1921), + [anon_sym_f64] = ACTIONS(1921), + [anon_sym_bool] = ACTIONS(1921), + [anon_sym_str] = ACTIONS(1921), + [anon_sym_char] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1921), + [anon_sym_async] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_const] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_default] = ACTIONS(1921), + [anon_sym_enum] = ACTIONS(1921), + [anon_sym_fn] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_impl] = ACTIONS(1921), + [anon_sym_let] = ACTIONS(1921), + [anon_sym_loop] = ACTIONS(1921), + [anon_sym_match] = ACTIONS(1921), + [anon_sym_mod] = ACTIONS(1921), + [anon_sym_pub] = ACTIONS(1921), + [anon_sym_return] = ACTIONS(1921), + [anon_sym_static] = ACTIONS(1921), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_trait] = ACTIONS(1921), + [anon_sym_type] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1921), + [anon_sym_unsafe] = ACTIONS(1921), + [anon_sym_use] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(1919), + [anon_sym_BANG] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(1919), + [anon_sym_COLON_COLON] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1919), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_move] = ACTIONS(1921), + [sym_integer_literal] = ACTIONS(1919), + [aux_sym_string_literal_token1] = ACTIONS(1919), + [sym_char_literal] = ACTIONS(1919), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1921), + [sym_super] = ACTIONS(1921), + [sym_crate] = ACTIONS(1921), + [sym_metavariable] = ACTIONS(1919), + [sym_raw_string_literal] = ACTIONS(1919), + [sym_float_literal] = ACTIONS(1919), [sym_block_comment] = ACTIONS(3), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(1925), - [sym_identifier] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_macro_rules_BANG] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_u8] = ACTIONS(1927), - [anon_sym_i8] = ACTIONS(1927), - [anon_sym_u16] = ACTIONS(1927), - [anon_sym_i16] = ACTIONS(1927), - [anon_sym_u32] = ACTIONS(1927), - [anon_sym_i32] = ACTIONS(1927), - [anon_sym_u64] = ACTIONS(1927), - [anon_sym_i64] = ACTIONS(1927), - [anon_sym_u128] = ACTIONS(1927), - [anon_sym_i128] = ACTIONS(1927), - [anon_sym_isize] = ACTIONS(1927), - [anon_sym_usize] = ACTIONS(1927), - [anon_sym_f32] = ACTIONS(1927), - [anon_sym_f64] = ACTIONS(1927), - [anon_sym_bool] = ACTIONS(1927), - [anon_sym_str] = ACTIONS(1927), - [anon_sym_char] = ACTIONS(1927), - [anon_sym_SQUOTE] = ACTIONS(1927), - [anon_sym_async] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_default] = ACTIONS(1927), - [anon_sym_enum] = ACTIONS(1927), - [anon_sym_fn] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_impl] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_loop] = ACTIONS(1927), - [anon_sym_match] = ACTIONS(1927), - [anon_sym_mod] = ACTIONS(1927), - [anon_sym_pub] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1927), - [anon_sym_struct] = ACTIONS(1927), - [anon_sym_trait] = ACTIONS(1927), - [anon_sym_type] = ACTIONS(1927), - [anon_sym_union] = ACTIONS(1927), - [anon_sym_unsafe] = ACTIONS(1927), - [anon_sym_use] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(1925), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_extern] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_COLON_COLON] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_move] = ACTIONS(1927), - [sym_integer_literal] = ACTIONS(1925), - [aux_sym_string_literal_token1] = ACTIONS(1925), - [sym_char_literal] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1927), - [sym_super] = ACTIONS(1927), - [sym_crate] = ACTIONS(1927), - [sym_metavariable] = ACTIONS(1925), - [sym_raw_string_literal] = ACTIONS(1925), - [sym_float_literal] = ACTIONS(1925), + [ts_builtin_sym_end] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1923), + [anon_sym_macro_rules_BANG] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_u8] = ACTIONS(1925), + [anon_sym_i8] = ACTIONS(1925), + [anon_sym_u16] = ACTIONS(1925), + [anon_sym_i16] = ACTIONS(1925), + [anon_sym_u32] = ACTIONS(1925), + [anon_sym_i32] = ACTIONS(1925), + [anon_sym_u64] = ACTIONS(1925), + [anon_sym_i64] = ACTIONS(1925), + [anon_sym_u128] = ACTIONS(1925), + [anon_sym_i128] = ACTIONS(1925), + [anon_sym_isize] = ACTIONS(1925), + [anon_sym_usize] = ACTIONS(1925), + [anon_sym_f32] = ACTIONS(1925), + [anon_sym_f64] = ACTIONS(1925), + [anon_sym_bool] = ACTIONS(1925), + [anon_sym_str] = ACTIONS(1925), + [anon_sym_char] = ACTIONS(1925), + [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_async] = ACTIONS(1925), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_const] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1925), + [anon_sym_enum] = ACTIONS(1925), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(1925), + [anon_sym_if] = ACTIONS(1925), + [anon_sym_impl] = ACTIONS(1925), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_loop] = ACTIONS(1925), + [anon_sym_match] = ACTIONS(1925), + [anon_sym_mod] = ACTIONS(1925), + [anon_sym_pub] = ACTIONS(1925), + [anon_sym_return] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_struct] = ACTIONS(1925), + [anon_sym_trait] = ACTIONS(1925), + [anon_sym_type] = ACTIONS(1925), + [anon_sym_union] = ACTIONS(1925), + [anon_sym_unsafe] = ACTIONS(1925), + [anon_sym_use] = ACTIONS(1925), + [anon_sym_while] = ACTIONS(1925), + [anon_sym_POUND] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_extern] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_COLON_COLON] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_move] = ACTIONS(1925), + [sym_integer_literal] = ACTIONS(1923), + [aux_sym_string_literal_token1] = ACTIONS(1923), + [sym_char_literal] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1925), + [anon_sym_false] = ACTIONS(1925), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1925), + [sym_super] = ACTIONS(1925), + [sym_crate] = ACTIONS(1925), + [sym_metavariable] = ACTIONS(1923), + [sym_raw_string_literal] = ACTIONS(1923), + [sym_float_literal] = ACTIONS(1923), [sym_block_comment] = ACTIONS(3), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(1929), - [sym_identifier] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_macro_rules_BANG] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1929), - [anon_sym_STAR] = ACTIONS(1929), - [anon_sym_u8] = ACTIONS(1931), - [anon_sym_i8] = ACTIONS(1931), - [anon_sym_u16] = ACTIONS(1931), - [anon_sym_i16] = ACTIONS(1931), - [anon_sym_u32] = ACTIONS(1931), - [anon_sym_i32] = ACTIONS(1931), - [anon_sym_u64] = ACTIONS(1931), - [anon_sym_i64] = ACTIONS(1931), - [anon_sym_u128] = ACTIONS(1931), - [anon_sym_i128] = ACTIONS(1931), - [anon_sym_isize] = ACTIONS(1931), - [anon_sym_usize] = ACTIONS(1931), - [anon_sym_f32] = ACTIONS(1931), - [anon_sym_f64] = ACTIONS(1931), - [anon_sym_bool] = ACTIONS(1931), - [anon_sym_str] = ACTIONS(1931), - [anon_sym_char] = ACTIONS(1931), - [anon_sym_SQUOTE] = ACTIONS(1931), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_default] = ACTIONS(1931), - [anon_sym_enum] = ACTIONS(1931), - [anon_sym_fn] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_impl] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_mod] = ACTIONS(1931), - [anon_sym_pub] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_struct] = ACTIONS(1931), - [anon_sym_trait] = ACTIONS(1931), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_union] = ACTIONS(1931), - [anon_sym_unsafe] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_POUND] = ACTIONS(1929), - [anon_sym_BANG] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_COLON_COLON] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_move] = ACTIONS(1931), - [sym_integer_literal] = ACTIONS(1929), - [aux_sym_string_literal_token1] = ACTIONS(1929), - [sym_char_literal] = ACTIONS(1929), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1931), - [sym_super] = ACTIONS(1931), - [sym_crate] = ACTIONS(1931), - [sym_metavariable] = ACTIONS(1929), - [sym_raw_string_literal] = ACTIONS(1929), - [sym_float_literal] = ACTIONS(1929), + [ts_builtin_sym_end] = ACTIONS(1927), + [sym_identifier] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym_macro_rules_BANG] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1927), + [anon_sym_u8] = ACTIONS(1929), + [anon_sym_i8] = ACTIONS(1929), + [anon_sym_u16] = ACTIONS(1929), + [anon_sym_i16] = ACTIONS(1929), + [anon_sym_u32] = ACTIONS(1929), + [anon_sym_i32] = ACTIONS(1929), + [anon_sym_u64] = ACTIONS(1929), + [anon_sym_i64] = ACTIONS(1929), + [anon_sym_u128] = ACTIONS(1929), + [anon_sym_i128] = ACTIONS(1929), + [anon_sym_isize] = ACTIONS(1929), + [anon_sym_usize] = ACTIONS(1929), + [anon_sym_f32] = ACTIONS(1929), + [anon_sym_f64] = ACTIONS(1929), + [anon_sym_bool] = ACTIONS(1929), + [anon_sym_str] = ACTIONS(1929), + [anon_sym_char] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1929), + [anon_sym_async] = ACTIONS(1929), + [anon_sym_break] = ACTIONS(1929), + [anon_sym_const] = ACTIONS(1929), + [anon_sym_continue] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1929), + [anon_sym_enum] = ACTIONS(1929), + [anon_sym_fn] = ACTIONS(1929), + [anon_sym_for] = ACTIONS(1929), + [anon_sym_if] = ACTIONS(1929), + [anon_sym_impl] = ACTIONS(1929), + [anon_sym_let] = ACTIONS(1929), + [anon_sym_loop] = ACTIONS(1929), + [anon_sym_match] = ACTIONS(1929), + [anon_sym_mod] = ACTIONS(1929), + [anon_sym_pub] = ACTIONS(1929), + [anon_sym_return] = ACTIONS(1929), + [anon_sym_static] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1929), + [anon_sym_trait] = ACTIONS(1929), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_union] = ACTIONS(1929), + [anon_sym_unsafe] = ACTIONS(1929), + [anon_sym_use] = ACTIONS(1929), + [anon_sym_while] = ACTIONS(1929), + [anon_sym_POUND] = ACTIONS(1927), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1927), + [anon_sym_COLON_COLON] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1929), + [sym_integer_literal] = ACTIONS(1927), + [aux_sym_string_literal_token1] = ACTIONS(1927), + [sym_char_literal] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1929), + [anon_sym_false] = ACTIONS(1929), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1929), + [sym_super] = ACTIONS(1929), + [sym_crate] = ACTIONS(1929), + [sym_metavariable] = ACTIONS(1927), + [sym_raw_string_literal] = ACTIONS(1927), + [sym_float_literal] = ACTIONS(1927), [sym_block_comment] = ACTIONS(3), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(1933), - [sym_identifier] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1933), - [anon_sym_macro_rules_BANG] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_LBRACK] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(1933), - [anon_sym_u8] = ACTIONS(1935), - [anon_sym_i8] = ACTIONS(1935), - [anon_sym_u16] = ACTIONS(1935), - [anon_sym_i16] = ACTIONS(1935), - [anon_sym_u32] = ACTIONS(1935), - [anon_sym_i32] = ACTIONS(1935), - [anon_sym_u64] = ACTIONS(1935), - [anon_sym_i64] = ACTIONS(1935), - [anon_sym_u128] = ACTIONS(1935), - [anon_sym_i128] = ACTIONS(1935), - [anon_sym_isize] = ACTIONS(1935), - [anon_sym_usize] = ACTIONS(1935), - [anon_sym_f32] = ACTIONS(1935), - [anon_sym_f64] = ACTIONS(1935), - [anon_sym_bool] = ACTIONS(1935), - [anon_sym_str] = ACTIONS(1935), - [anon_sym_char] = ACTIONS(1935), - [anon_sym_SQUOTE] = ACTIONS(1935), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_default] = ACTIONS(1935), - [anon_sym_enum] = ACTIONS(1935), - [anon_sym_fn] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_impl] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1935), - [anon_sym_loop] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_mod] = ACTIONS(1935), - [anon_sym_pub] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_struct] = ACTIONS(1935), - [anon_sym_trait] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_union] = ACTIONS(1935), - [anon_sym_unsafe] = ACTIONS(1935), - [anon_sym_use] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(1933), - [anon_sym_BANG] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym_LT] = ACTIONS(1933), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_AMP] = ACTIONS(1933), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(1933), - [anon_sym_move] = ACTIONS(1935), - [sym_integer_literal] = ACTIONS(1933), - [aux_sym_string_literal_token1] = ACTIONS(1933), - [sym_char_literal] = ACTIONS(1933), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1935), - [sym_super] = ACTIONS(1935), - [sym_crate] = ACTIONS(1935), - [sym_metavariable] = ACTIONS(1933), - [sym_raw_string_literal] = ACTIONS(1933), - [sym_float_literal] = ACTIONS(1933), + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1931), + [anon_sym_macro_rules_BANG] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1931), + [anon_sym_u8] = ACTIONS(1933), + [anon_sym_i8] = ACTIONS(1933), + [anon_sym_u16] = ACTIONS(1933), + [anon_sym_i16] = ACTIONS(1933), + [anon_sym_u32] = ACTIONS(1933), + [anon_sym_i32] = ACTIONS(1933), + [anon_sym_u64] = ACTIONS(1933), + [anon_sym_i64] = ACTIONS(1933), + [anon_sym_u128] = ACTIONS(1933), + [anon_sym_i128] = ACTIONS(1933), + [anon_sym_isize] = ACTIONS(1933), + [anon_sym_usize] = ACTIONS(1933), + [anon_sym_f32] = ACTIONS(1933), + [anon_sym_f64] = ACTIONS(1933), + [anon_sym_bool] = ACTIONS(1933), + [anon_sym_str] = ACTIONS(1933), + [anon_sym_char] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_async] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_default] = ACTIONS(1933), + [anon_sym_enum] = ACTIONS(1933), + [anon_sym_fn] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_impl] = ACTIONS(1933), + [anon_sym_let] = ACTIONS(1933), + [anon_sym_loop] = ACTIONS(1933), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_mod] = ACTIONS(1933), + [anon_sym_pub] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1933), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_trait] = ACTIONS(1933), + [anon_sym_type] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1933), + [anon_sym_unsafe] = ACTIONS(1933), + [anon_sym_use] = ACTIONS(1933), + [anon_sym_while] = ACTIONS(1933), + [anon_sym_POUND] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1933), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_COLON_COLON] = ACTIONS(1931), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(1931), + [anon_sym_move] = ACTIONS(1933), + [sym_integer_literal] = ACTIONS(1931), + [aux_sym_string_literal_token1] = ACTIONS(1931), + [sym_char_literal] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(1933), + [anon_sym_false] = ACTIONS(1933), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1933), + [sym_super] = ACTIONS(1933), + [sym_crate] = ACTIONS(1933), + [sym_metavariable] = ACTIONS(1931), + [sym_raw_string_literal] = ACTIONS(1931), + [sym_float_literal] = ACTIONS(1931), [sym_block_comment] = ACTIONS(3), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(1937), - [sym_identifier] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1937), - [anon_sym_macro_rules_BANG] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(1937), - [anon_sym_u8] = ACTIONS(1939), - [anon_sym_i8] = ACTIONS(1939), - [anon_sym_u16] = ACTIONS(1939), - [anon_sym_i16] = ACTIONS(1939), - [anon_sym_u32] = ACTIONS(1939), - [anon_sym_i32] = ACTIONS(1939), - [anon_sym_u64] = ACTIONS(1939), - [anon_sym_i64] = ACTIONS(1939), - [anon_sym_u128] = ACTIONS(1939), - [anon_sym_i128] = ACTIONS(1939), - [anon_sym_isize] = ACTIONS(1939), - [anon_sym_usize] = ACTIONS(1939), - [anon_sym_f32] = ACTIONS(1939), - [anon_sym_f64] = ACTIONS(1939), - [anon_sym_bool] = ACTIONS(1939), - [anon_sym_str] = ACTIONS(1939), - [anon_sym_char] = ACTIONS(1939), - [anon_sym_SQUOTE] = ACTIONS(1939), - [anon_sym_async] = ACTIONS(1939), - [anon_sym_break] = ACTIONS(1939), - [anon_sym_const] = ACTIONS(1939), - [anon_sym_continue] = ACTIONS(1939), - [anon_sym_default] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1939), - [anon_sym_fn] = ACTIONS(1939), - [anon_sym_for] = ACTIONS(1939), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_impl] = ACTIONS(1939), - [anon_sym_let] = ACTIONS(1939), - [anon_sym_loop] = ACTIONS(1939), - [anon_sym_match] = ACTIONS(1939), - [anon_sym_mod] = ACTIONS(1939), - [anon_sym_pub] = ACTIONS(1939), - [anon_sym_return] = ACTIONS(1939), - [anon_sym_static] = ACTIONS(1939), - [anon_sym_struct] = ACTIONS(1939), - [anon_sym_trait] = ACTIONS(1939), - [anon_sym_type] = ACTIONS(1939), - [anon_sym_union] = ACTIONS(1939), - [anon_sym_unsafe] = ACTIONS(1939), - [anon_sym_use] = ACTIONS(1939), - [anon_sym_while] = ACTIONS(1939), - [anon_sym_POUND] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_extern] = ACTIONS(1939), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_COLON_COLON] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_DOT_DOT] = ACTIONS(1937), - [anon_sym_DASH] = ACTIONS(1937), - [anon_sym_PIPE] = ACTIONS(1937), - [anon_sym_move] = ACTIONS(1939), - [sym_integer_literal] = ACTIONS(1937), - [aux_sym_string_literal_token1] = ACTIONS(1937), - [sym_char_literal] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1939), - [sym_super] = ACTIONS(1939), - [sym_crate] = ACTIONS(1939), - [sym_metavariable] = ACTIONS(1937), - [sym_raw_string_literal] = ACTIONS(1937), - [sym_float_literal] = ACTIONS(1937), + [ts_builtin_sym_end] = ACTIONS(1935), + [sym_identifier] = ACTIONS(1937), + [anon_sym_SEMI] = ACTIONS(1935), + [anon_sym_macro_rules_BANG] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1935), + [anon_sym_STAR] = ACTIONS(1935), + [anon_sym_u8] = ACTIONS(1937), + [anon_sym_i8] = ACTIONS(1937), + [anon_sym_u16] = ACTIONS(1937), + [anon_sym_i16] = ACTIONS(1937), + [anon_sym_u32] = ACTIONS(1937), + [anon_sym_i32] = ACTIONS(1937), + [anon_sym_u64] = ACTIONS(1937), + [anon_sym_i64] = ACTIONS(1937), + [anon_sym_u128] = ACTIONS(1937), + [anon_sym_i128] = ACTIONS(1937), + [anon_sym_isize] = ACTIONS(1937), + [anon_sym_usize] = ACTIONS(1937), + [anon_sym_f32] = ACTIONS(1937), + [anon_sym_f64] = ACTIONS(1937), + [anon_sym_bool] = ACTIONS(1937), + [anon_sym_str] = ACTIONS(1937), + [anon_sym_char] = ACTIONS(1937), + [anon_sym_SQUOTE] = ACTIONS(1937), + [anon_sym_async] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_default] = ACTIONS(1937), + [anon_sym_enum] = ACTIONS(1937), + [anon_sym_fn] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_impl] = ACTIONS(1937), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_loop] = ACTIONS(1937), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_mod] = ACTIONS(1937), + [anon_sym_pub] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_struct] = ACTIONS(1937), + [anon_sym_trait] = ACTIONS(1937), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_union] = ACTIONS(1937), + [anon_sym_unsafe] = ACTIONS(1937), + [anon_sym_use] = ACTIONS(1937), + [anon_sym_while] = ACTIONS(1937), + [anon_sym_POUND] = ACTIONS(1935), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_extern] = ACTIONS(1937), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_COLON_COLON] = ACTIONS(1935), + [anon_sym_AMP] = ACTIONS(1935), + [anon_sym_DOT_DOT] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1935), + [anon_sym_move] = ACTIONS(1937), + [sym_integer_literal] = ACTIONS(1935), + [aux_sym_string_literal_token1] = ACTIONS(1935), + [sym_char_literal] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1937), + [anon_sym_false] = ACTIONS(1937), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1937), + [sym_super] = ACTIONS(1937), + [sym_crate] = ACTIONS(1937), + [sym_metavariable] = ACTIONS(1935), + [sym_raw_string_literal] = ACTIONS(1935), + [sym_float_literal] = ACTIONS(1935), [sym_block_comment] = ACTIONS(3), }, [461] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [aux_sym__non_special_token_token1] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [sym_mutable_specifier] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [ts_builtin_sym_end] = ACTIONS(1939), + [sym_identifier] = ACTIONS(1941), + [anon_sym_SEMI] = ACTIONS(1939), + [anon_sym_macro_rules_BANG] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1939), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1939), + [anon_sym_u8] = ACTIONS(1941), + [anon_sym_i8] = ACTIONS(1941), + [anon_sym_u16] = ACTIONS(1941), + [anon_sym_i16] = ACTIONS(1941), + [anon_sym_u32] = ACTIONS(1941), + [anon_sym_i32] = ACTIONS(1941), + [anon_sym_u64] = ACTIONS(1941), + [anon_sym_i64] = ACTIONS(1941), + [anon_sym_u128] = ACTIONS(1941), + [anon_sym_i128] = ACTIONS(1941), + [anon_sym_isize] = ACTIONS(1941), + [anon_sym_usize] = ACTIONS(1941), + [anon_sym_f32] = ACTIONS(1941), + [anon_sym_f64] = ACTIONS(1941), + [anon_sym_bool] = ACTIONS(1941), + [anon_sym_str] = ACTIONS(1941), + [anon_sym_char] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_async] = ACTIONS(1941), + [anon_sym_break] = ACTIONS(1941), + [anon_sym_const] = ACTIONS(1941), + [anon_sym_continue] = ACTIONS(1941), + [anon_sym_default] = ACTIONS(1941), + [anon_sym_enum] = ACTIONS(1941), + [anon_sym_fn] = ACTIONS(1941), + [anon_sym_for] = ACTIONS(1941), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_impl] = ACTIONS(1941), + [anon_sym_let] = ACTIONS(1941), + [anon_sym_loop] = ACTIONS(1941), + [anon_sym_match] = ACTIONS(1941), + [anon_sym_mod] = ACTIONS(1941), + [anon_sym_pub] = ACTIONS(1941), + [anon_sym_return] = ACTIONS(1941), + [anon_sym_static] = ACTIONS(1941), + [anon_sym_struct] = ACTIONS(1941), + [anon_sym_trait] = ACTIONS(1941), + [anon_sym_type] = ACTIONS(1941), + [anon_sym_union] = ACTIONS(1941), + [anon_sym_unsafe] = ACTIONS(1941), + [anon_sym_use] = ACTIONS(1941), + [anon_sym_while] = ACTIONS(1941), + [anon_sym_POUND] = ACTIONS(1939), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_extern] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(1939), + [anon_sym_COLON_COLON] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(1939), + [anon_sym_move] = ACTIONS(1941), + [sym_integer_literal] = ACTIONS(1939), + [aux_sym_string_literal_token1] = ACTIONS(1939), + [sym_char_literal] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1941), + [anon_sym_false] = ACTIONS(1941), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1941), + [sym_super] = ACTIONS(1941), + [sym_crate] = ACTIONS(1941), + [sym_metavariable] = ACTIONS(1939), + [sym_raw_string_literal] = ACTIONS(1939), + [sym_float_literal] = ACTIONS(1939), [sym_block_comment] = ACTIONS(3), }, [462] = { @@ -56257,315 +55767,1535 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [466] = { - [sym_attribute_item] = STATE(499), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2317), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_arm] = STATE(466), - [sym_match_pattern] = STATE(2317), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(499), - [aux_sym_match_block_repeat1] = STATE(466), - [sym_identifier] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_u8] = ACTIONS(1968), - [anon_sym_i8] = ACTIONS(1968), - [anon_sym_u16] = ACTIONS(1968), - [anon_sym_i16] = ACTIONS(1968), - [anon_sym_u32] = ACTIONS(1968), - [anon_sym_i32] = ACTIONS(1968), - [anon_sym_u64] = ACTIONS(1968), - [anon_sym_i64] = ACTIONS(1968), - [anon_sym_u128] = ACTIONS(1968), - [anon_sym_i128] = ACTIONS(1968), - [anon_sym_isize] = ACTIONS(1968), - [anon_sym_usize] = ACTIONS(1968), - [anon_sym_f32] = ACTIONS(1968), - [anon_sym_f64] = ACTIONS(1968), - [anon_sym_bool] = ACTIONS(1968), - [anon_sym_str] = ACTIONS(1968), - [anon_sym_char] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1971), - [anon_sym_default] = ACTIONS(1974), - [anon_sym_union] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1977), - [anon_sym_ref] = ACTIONS(1980), + [ts_builtin_sym_end] = ACTIONS(1959), + [sym_identifier] = ACTIONS(1961), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_macro_rules_BANG] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1959), + [anon_sym_u8] = ACTIONS(1961), + [anon_sym_i8] = ACTIONS(1961), + [anon_sym_u16] = ACTIONS(1961), + [anon_sym_i16] = ACTIONS(1961), + [anon_sym_u32] = ACTIONS(1961), + [anon_sym_i32] = ACTIONS(1961), + [anon_sym_u64] = ACTIONS(1961), + [anon_sym_i64] = ACTIONS(1961), + [anon_sym_u128] = ACTIONS(1961), + [anon_sym_i128] = ACTIONS(1961), + [anon_sym_isize] = ACTIONS(1961), + [anon_sym_usize] = ACTIONS(1961), + [anon_sym_f32] = ACTIONS(1961), + [anon_sym_f64] = ACTIONS(1961), + [anon_sym_bool] = ACTIONS(1961), + [anon_sym_str] = ACTIONS(1961), + [anon_sym_char] = ACTIONS(1961), + [anon_sym_SQUOTE] = ACTIONS(1961), + [anon_sym_async] = ACTIONS(1961), + [anon_sym_break] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1961), + [anon_sym_default] = ACTIONS(1961), + [anon_sym_enum] = ACTIONS(1961), + [anon_sym_fn] = ACTIONS(1961), + [anon_sym_for] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1961), + [anon_sym_impl] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_loop] = ACTIONS(1961), + [anon_sym_match] = ACTIONS(1961), + [anon_sym_mod] = ACTIONS(1961), + [anon_sym_pub] = ACTIONS(1961), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_static] = ACTIONS(1961), + [anon_sym_struct] = ACTIONS(1961), + [anon_sym_trait] = ACTIONS(1961), + [anon_sym_type] = ACTIONS(1961), + [anon_sym_union] = ACTIONS(1961), + [anon_sym_unsafe] = ACTIONS(1961), + [anon_sym_use] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1961), + [anon_sym_POUND] = ACTIONS(1959), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_extern] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_COLON_COLON] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_DOT_DOT] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_move] = ACTIONS(1961), + [sym_integer_literal] = ACTIONS(1959), + [aux_sym_string_literal_token1] = ACTIONS(1959), + [sym_char_literal] = ACTIONS(1959), + [anon_sym_true] = ACTIONS(1961), + [anon_sym_false] = ACTIONS(1961), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1961), + [sym_super] = ACTIONS(1961), + [sym_crate] = ACTIONS(1961), + [sym_metavariable] = ACTIONS(1959), + [sym_raw_string_literal] = ACTIONS(1959), + [sym_float_literal] = ACTIONS(1959), + [sym_block_comment] = ACTIONS(3), + }, + [467] = { + [ts_builtin_sym_end] = ACTIONS(1963), + [sym_identifier] = ACTIONS(1965), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_macro_rules_BANG] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(1963), + [anon_sym_u8] = ACTIONS(1965), + [anon_sym_i8] = ACTIONS(1965), + [anon_sym_u16] = ACTIONS(1965), + [anon_sym_i16] = ACTIONS(1965), + [anon_sym_u32] = ACTIONS(1965), + [anon_sym_i32] = ACTIONS(1965), + [anon_sym_u64] = ACTIONS(1965), + [anon_sym_i64] = ACTIONS(1965), + [anon_sym_u128] = ACTIONS(1965), + [anon_sym_i128] = ACTIONS(1965), + [anon_sym_isize] = ACTIONS(1965), + [anon_sym_usize] = ACTIONS(1965), + [anon_sym_f32] = ACTIONS(1965), + [anon_sym_f64] = ACTIONS(1965), + [anon_sym_bool] = ACTIONS(1965), + [anon_sym_str] = ACTIONS(1965), + [anon_sym_char] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_async] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_default] = ACTIONS(1965), + [anon_sym_enum] = ACTIONS(1965), + [anon_sym_fn] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_impl] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_mod] = ACTIONS(1965), + [anon_sym_pub] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_struct] = ACTIONS(1965), + [anon_sym_trait] = ACTIONS(1965), + [anon_sym_type] = ACTIONS(1965), + [anon_sym_union] = ACTIONS(1965), + [anon_sym_unsafe] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_POUND] = ACTIONS(1963), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1963), + [anon_sym_COLON_COLON] = ACTIONS(1963), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_move] = ACTIONS(1965), + [sym_integer_literal] = ACTIONS(1963), + [aux_sym_string_literal_token1] = ACTIONS(1963), + [sym_char_literal] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1965), + [anon_sym_false] = ACTIONS(1965), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1965), + [sym_super] = ACTIONS(1965), + [sym_crate] = ACTIONS(1965), + [sym_metavariable] = ACTIONS(1963), + [sym_raw_string_literal] = ACTIONS(1963), + [sym_float_literal] = ACTIONS(1963), + [sym_block_comment] = ACTIONS(3), + }, + [468] = { + [ts_builtin_sym_end] = ACTIONS(1967), + [sym_identifier] = ACTIONS(1969), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_macro_rules_BANG] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_u8] = ACTIONS(1969), + [anon_sym_i8] = ACTIONS(1969), + [anon_sym_u16] = ACTIONS(1969), + [anon_sym_i16] = ACTIONS(1969), + [anon_sym_u32] = ACTIONS(1969), + [anon_sym_i32] = ACTIONS(1969), + [anon_sym_u64] = ACTIONS(1969), + [anon_sym_i64] = ACTIONS(1969), + [anon_sym_u128] = ACTIONS(1969), + [anon_sym_i128] = ACTIONS(1969), + [anon_sym_isize] = ACTIONS(1969), + [anon_sym_usize] = ACTIONS(1969), + [anon_sym_f32] = ACTIONS(1969), + [anon_sym_f64] = ACTIONS(1969), + [anon_sym_bool] = ACTIONS(1969), + [anon_sym_str] = ACTIONS(1969), + [anon_sym_char] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1969), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1969), + [anon_sym_enum] = ACTIONS(1969), + [anon_sym_fn] = ACTIONS(1969), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_impl] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_loop] = ACTIONS(1969), + [anon_sym_match] = ACTIONS(1969), + [anon_sym_mod] = ACTIONS(1969), + [anon_sym_pub] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_struct] = ACTIONS(1969), + [anon_sym_trait] = ACTIONS(1969), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_union] = ACTIONS(1969), + [anon_sym_unsafe] = ACTIONS(1969), + [anon_sym_use] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(1967), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1967), + [anon_sym_COLON_COLON] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1967), + [anon_sym_move] = ACTIONS(1969), + [sym_integer_literal] = ACTIONS(1967), + [aux_sym_string_literal_token1] = ACTIONS(1967), + [sym_char_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1969), + [anon_sym_false] = ACTIONS(1969), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1969), + [sym_super] = ACTIONS(1969), + [sym_crate] = ACTIONS(1969), + [sym_metavariable] = ACTIONS(1967), + [sym_raw_string_literal] = ACTIONS(1967), + [sym_float_literal] = ACTIONS(1967), + [sym_block_comment] = ACTIONS(3), + }, + [469] = { + [ts_builtin_sym_end] = ACTIONS(1971), + [sym_identifier] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_macro_rules_BANG] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_u8] = ACTIONS(1973), + [anon_sym_i8] = ACTIONS(1973), + [anon_sym_u16] = ACTIONS(1973), + [anon_sym_i16] = ACTIONS(1973), + [anon_sym_u32] = ACTIONS(1973), + [anon_sym_i32] = ACTIONS(1973), + [anon_sym_u64] = ACTIONS(1973), + [anon_sym_i64] = ACTIONS(1973), + [anon_sym_u128] = ACTIONS(1973), + [anon_sym_i128] = ACTIONS(1973), + [anon_sym_isize] = ACTIONS(1973), + [anon_sym_usize] = ACTIONS(1973), + [anon_sym_f32] = ACTIONS(1973), + [anon_sym_f64] = ACTIONS(1973), + [anon_sym_bool] = ACTIONS(1973), + [anon_sym_str] = ACTIONS(1973), + [anon_sym_char] = ACTIONS(1973), + [anon_sym_SQUOTE] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_default] = ACTIONS(1973), + [anon_sym_enum] = ACTIONS(1973), + [anon_sym_fn] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_impl] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_loop] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_mod] = ACTIONS(1973), + [anon_sym_pub] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_struct] = ACTIONS(1973), + [anon_sym_trait] = ACTIONS(1973), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_union] = ACTIONS(1973), + [anon_sym_unsafe] = ACTIONS(1973), + [anon_sym_use] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_COLON_COLON] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_move] = ACTIONS(1973), + [sym_integer_literal] = ACTIONS(1971), + [aux_sym_string_literal_token1] = ACTIONS(1971), + [sym_char_literal] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1973), + [anon_sym_false] = ACTIONS(1973), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1973), + [sym_super] = ACTIONS(1973), + [sym_crate] = ACTIONS(1973), + [sym_metavariable] = ACTIONS(1971), + [sym_raw_string_literal] = ACTIONS(1971), + [sym_float_literal] = ACTIONS(1971), + [sym_block_comment] = ACTIONS(3), + }, + [470] = { + [ts_builtin_sym_end] = ACTIONS(1975), + [sym_identifier] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_macro_rules_BANG] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_u8] = ACTIONS(1977), + [anon_sym_i8] = ACTIONS(1977), + [anon_sym_u16] = ACTIONS(1977), + [anon_sym_i16] = ACTIONS(1977), + [anon_sym_u32] = ACTIONS(1977), + [anon_sym_i32] = ACTIONS(1977), + [anon_sym_u64] = ACTIONS(1977), + [anon_sym_i64] = ACTIONS(1977), + [anon_sym_u128] = ACTIONS(1977), + [anon_sym_i128] = ACTIONS(1977), + [anon_sym_isize] = ACTIONS(1977), + [anon_sym_usize] = ACTIONS(1977), + [anon_sym_f32] = ACTIONS(1977), + [anon_sym_f64] = ACTIONS(1977), + [anon_sym_bool] = ACTIONS(1977), + [anon_sym_str] = ACTIONS(1977), + [anon_sym_char] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1977), + [anon_sym_async] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_const] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_default] = ACTIONS(1977), + [anon_sym_enum] = ACTIONS(1977), + [anon_sym_fn] = ACTIONS(1977), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_impl] = ACTIONS(1977), + [anon_sym_let] = ACTIONS(1977), + [anon_sym_loop] = ACTIONS(1977), + [anon_sym_match] = ACTIONS(1977), + [anon_sym_mod] = ACTIONS(1977), + [anon_sym_pub] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_static] = ACTIONS(1977), + [anon_sym_struct] = ACTIONS(1977), + [anon_sym_trait] = ACTIONS(1977), + [anon_sym_type] = ACTIONS(1977), + [anon_sym_union] = ACTIONS(1977), + [anon_sym_unsafe] = ACTIONS(1977), + [anon_sym_use] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_POUND] = ACTIONS(1975), + [anon_sym_BANG] = ACTIONS(1975), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_COLON_COLON] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_DOT_DOT] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_move] = ACTIONS(1977), + [sym_integer_literal] = ACTIONS(1975), + [aux_sym_string_literal_token1] = ACTIONS(1975), + [sym_char_literal] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(1977), + [anon_sym_false] = ACTIONS(1977), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1977), + [sym_super] = ACTIONS(1977), + [sym_crate] = ACTIONS(1977), + [sym_metavariable] = ACTIONS(1975), + [sym_raw_string_literal] = ACTIONS(1975), + [sym_float_literal] = ACTIONS(1975), + [sym_block_comment] = ACTIONS(3), + }, + [471] = { + [ts_builtin_sym_end] = ACTIONS(1979), + [sym_identifier] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1979), + [anon_sym_macro_rules_BANG] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_u8] = ACTIONS(1981), + [anon_sym_i8] = ACTIONS(1981), + [anon_sym_u16] = ACTIONS(1981), + [anon_sym_i16] = ACTIONS(1981), + [anon_sym_u32] = ACTIONS(1981), + [anon_sym_i32] = ACTIONS(1981), + [anon_sym_u64] = ACTIONS(1981), + [anon_sym_i64] = ACTIONS(1981), + [anon_sym_u128] = ACTIONS(1981), + [anon_sym_i128] = ACTIONS(1981), + [anon_sym_isize] = ACTIONS(1981), + [anon_sym_usize] = ACTIONS(1981), + [anon_sym_f32] = ACTIONS(1981), + [anon_sym_f64] = ACTIONS(1981), + [anon_sym_bool] = ACTIONS(1981), + [anon_sym_str] = ACTIONS(1981), + [anon_sym_char] = ACTIONS(1981), + [anon_sym_SQUOTE] = ACTIONS(1981), + [anon_sym_async] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1981), + [anon_sym_enum] = ACTIONS(1981), + [anon_sym_fn] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_impl] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_mod] = ACTIONS(1981), + [anon_sym_pub] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_static] = ACTIONS(1981), + [anon_sym_struct] = ACTIONS(1981), + [anon_sym_trait] = ACTIONS(1981), + [anon_sym_type] = ACTIONS(1981), + [anon_sym_union] = ACTIONS(1981), + [anon_sym_unsafe] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_POUND] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_COLON_COLON] = ACTIONS(1979), + [anon_sym_AMP] = ACTIONS(1979), + [anon_sym_DOT_DOT] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_move] = ACTIONS(1981), + [sym_integer_literal] = ACTIONS(1979), + [aux_sym_string_literal_token1] = ACTIONS(1979), + [sym_char_literal] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1981), + [sym_super] = ACTIONS(1981), + [sym_crate] = ACTIONS(1981), + [sym_metavariable] = ACTIONS(1979), + [sym_raw_string_literal] = ACTIONS(1979), + [sym_float_literal] = ACTIONS(1979), + [sym_block_comment] = ACTIONS(3), + }, + [472] = { + [ts_builtin_sym_end] = ACTIONS(1983), + [sym_identifier] = ACTIONS(1985), + [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_macro_rules_BANG] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1983), + [anon_sym_u8] = ACTIONS(1985), + [anon_sym_i8] = ACTIONS(1985), + [anon_sym_u16] = ACTIONS(1985), + [anon_sym_i16] = ACTIONS(1985), + [anon_sym_u32] = ACTIONS(1985), + [anon_sym_i32] = ACTIONS(1985), + [anon_sym_u64] = ACTIONS(1985), + [anon_sym_i64] = ACTIONS(1985), + [anon_sym_u128] = ACTIONS(1985), + [anon_sym_i128] = ACTIONS(1985), + [anon_sym_isize] = ACTIONS(1985), + [anon_sym_usize] = ACTIONS(1985), + [anon_sym_f32] = ACTIONS(1985), + [anon_sym_f64] = ACTIONS(1985), + [anon_sym_bool] = ACTIONS(1985), + [anon_sym_str] = ACTIONS(1985), + [anon_sym_char] = ACTIONS(1985), + [anon_sym_SQUOTE] = ACTIONS(1985), + [anon_sym_async] = ACTIONS(1985), + [anon_sym_break] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1985), + [anon_sym_continue] = ACTIONS(1985), + [anon_sym_default] = ACTIONS(1985), + [anon_sym_enum] = ACTIONS(1985), + [anon_sym_fn] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1985), + [anon_sym_if] = ACTIONS(1985), + [anon_sym_impl] = ACTIONS(1985), + [anon_sym_let] = ACTIONS(1985), + [anon_sym_loop] = ACTIONS(1985), + [anon_sym_match] = ACTIONS(1985), + [anon_sym_mod] = ACTIONS(1985), + [anon_sym_pub] = ACTIONS(1985), + [anon_sym_return] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1985), + [anon_sym_struct] = ACTIONS(1985), + [anon_sym_trait] = ACTIONS(1985), + [anon_sym_type] = ACTIONS(1985), + [anon_sym_union] = ACTIONS(1985), + [anon_sym_unsafe] = ACTIONS(1985), + [anon_sym_use] = ACTIONS(1985), + [anon_sym_while] = ACTIONS(1985), + [anon_sym_POUND] = ACTIONS(1983), + [anon_sym_BANG] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1985), [anon_sym_LT] = ACTIONS(1983), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym__] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1992), - [sym_mutable_specifier] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1998), - [anon_sym_DASH] = ACTIONS(2001), - [sym_integer_literal] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(1983), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1983), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(1983), + [anon_sym_move] = ACTIONS(1985), + [sym_integer_literal] = ACTIONS(1983), + [aux_sym_string_literal_token1] = ACTIONS(1983), + [sym_char_literal] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(1985), + [anon_sym_false] = ACTIONS(1985), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1985), + [sym_super] = ACTIONS(1985), + [sym_crate] = ACTIONS(1985), + [sym_metavariable] = ACTIONS(1983), + [sym_raw_string_literal] = ACTIONS(1983), + [sym_float_literal] = ACTIONS(1983), + [sym_block_comment] = ACTIONS(3), + }, + [473] = { + [ts_builtin_sym_end] = ACTIONS(1987), + [sym_identifier] = ACTIONS(1989), + [anon_sym_SEMI] = ACTIONS(1987), + [anon_sym_macro_rules_BANG] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1987), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_STAR] = ACTIONS(1987), + [anon_sym_u8] = ACTIONS(1989), + [anon_sym_i8] = ACTIONS(1989), + [anon_sym_u16] = ACTIONS(1989), + [anon_sym_i16] = ACTIONS(1989), + [anon_sym_u32] = ACTIONS(1989), + [anon_sym_i32] = ACTIONS(1989), + [anon_sym_u64] = ACTIONS(1989), + [anon_sym_i64] = ACTIONS(1989), + [anon_sym_u128] = ACTIONS(1989), + [anon_sym_i128] = ACTIONS(1989), + [anon_sym_isize] = ACTIONS(1989), + [anon_sym_usize] = ACTIONS(1989), + [anon_sym_f32] = ACTIONS(1989), + [anon_sym_f64] = ACTIONS(1989), + [anon_sym_bool] = ACTIONS(1989), + [anon_sym_str] = ACTIONS(1989), + [anon_sym_char] = ACTIONS(1989), + [anon_sym_SQUOTE] = ACTIONS(1989), + [anon_sym_async] = ACTIONS(1989), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_const] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1989), + [anon_sym_default] = ACTIONS(1989), + [anon_sym_enum] = ACTIONS(1989), + [anon_sym_fn] = ACTIONS(1989), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_impl] = ACTIONS(1989), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_loop] = ACTIONS(1989), + [anon_sym_match] = ACTIONS(1989), + [anon_sym_mod] = ACTIONS(1989), + [anon_sym_pub] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_static] = ACTIONS(1989), + [anon_sym_struct] = ACTIONS(1989), + [anon_sym_trait] = ACTIONS(1989), + [anon_sym_type] = ACTIONS(1989), + [anon_sym_union] = ACTIONS(1989), + [anon_sym_unsafe] = ACTIONS(1989), + [anon_sym_use] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1987), + [anon_sym_extern] = ACTIONS(1989), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_COLON_COLON] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1987), + [anon_sym_DOT_DOT] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_PIPE] = ACTIONS(1987), + [anon_sym_move] = ACTIONS(1989), + [sym_integer_literal] = ACTIONS(1987), + [aux_sym_string_literal_token1] = ACTIONS(1987), + [sym_char_literal] = ACTIONS(1987), + [anon_sym_true] = ACTIONS(1989), + [anon_sym_false] = ACTIONS(1989), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1989), + [sym_super] = ACTIONS(1989), + [sym_crate] = ACTIONS(1989), + [sym_metavariable] = ACTIONS(1987), + [sym_raw_string_literal] = ACTIONS(1987), + [sym_float_literal] = ACTIONS(1987), + [sym_block_comment] = ACTIONS(3), + }, + [474] = { + [ts_builtin_sym_end] = ACTIONS(1991), + [sym_identifier] = ACTIONS(1993), + [anon_sym_SEMI] = ACTIONS(1991), + [anon_sym_macro_rules_BANG] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1991), + [anon_sym_u8] = ACTIONS(1993), + [anon_sym_i8] = ACTIONS(1993), + [anon_sym_u16] = ACTIONS(1993), + [anon_sym_i16] = ACTIONS(1993), + [anon_sym_u32] = ACTIONS(1993), + [anon_sym_i32] = ACTIONS(1993), + [anon_sym_u64] = ACTIONS(1993), + [anon_sym_i64] = ACTIONS(1993), + [anon_sym_u128] = ACTIONS(1993), + [anon_sym_i128] = ACTIONS(1993), + [anon_sym_isize] = ACTIONS(1993), + [anon_sym_usize] = ACTIONS(1993), + [anon_sym_f32] = ACTIONS(1993), + [anon_sym_f64] = ACTIONS(1993), + [anon_sym_bool] = ACTIONS(1993), + [anon_sym_str] = ACTIONS(1993), + [anon_sym_char] = ACTIONS(1993), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_async] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_enum] = ACTIONS(1993), + [anon_sym_fn] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_impl] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_mod] = ACTIONS(1993), + [anon_sym_pub] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_static] = ACTIONS(1993), + [anon_sym_struct] = ACTIONS(1993), + [anon_sym_trait] = ACTIONS(1993), + [anon_sym_type] = ACTIONS(1993), + [anon_sym_union] = ACTIONS(1993), + [anon_sym_unsafe] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(1991), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_COLON_COLON] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_DOT_DOT] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_move] = ACTIONS(1993), + [sym_integer_literal] = ACTIONS(1991), + [aux_sym_string_literal_token1] = ACTIONS(1991), + [sym_char_literal] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1993), + [anon_sym_false] = ACTIONS(1993), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1993), + [sym_super] = ACTIONS(1993), + [sym_crate] = ACTIONS(1993), + [sym_metavariable] = ACTIONS(1991), + [sym_raw_string_literal] = ACTIONS(1991), + [sym_float_literal] = ACTIONS(1991), + [sym_block_comment] = ACTIONS(3), + }, + [475] = { + [ts_builtin_sym_end] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_macro_rules_BANG] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(1995), + [anon_sym_u8] = ACTIONS(1997), + [anon_sym_i8] = ACTIONS(1997), + [anon_sym_u16] = ACTIONS(1997), + [anon_sym_i16] = ACTIONS(1997), + [anon_sym_u32] = ACTIONS(1997), + [anon_sym_i32] = ACTIONS(1997), + [anon_sym_u64] = ACTIONS(1997), + [anon_sym_i64] = ACTIONS(1997), + [anon_sym_u128] = ACTIONS(1997), + [anon_sym_i128] = ACTIONS(1997), + [anon_sym_isize] = ACTIONS(1997), + [anon_sym_usize] = ACTIONS(1997), + [anon_sym_f32] = ACTIONS(1997), + [anon_sym_f64] = ACTIONS(1997), + [anon_sym_bool] = ACTIONS(1997), + [anon_sym_str] = ACTIONS(1997), + [anon_sym_char] = ACTIONS(1997), + [anon_sym_SQUOTE] = ACTIONS(1997), + [anon_sym_async] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1997), + [anon_sym_enum] = ACTIONS(1997), + [anon_sym_fn] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_impl] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_mod] = ACTIONS(1997), + [anon_sym_pub] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_static] = ACTIONS(1997), + [anon_sym_struct] = ACTIONS(1997), + [anon_sym_trait] = ACTIONS(1997), + [anon_sym_type] = ACTIONS(1997), + [anon_sym_union] = ACTIONS(1997), + [anon_sym_unsafe] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_move] = ACTIONS(1997), + [sym_integer_literal] = ACTIONS(1995), + [aux_sym_string_literal_token1] = ACTIONS(1995), + [sym_char_literal] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = ACTIONS(1997), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1997), + [sym_super] = ACTIONS(1997), + [sym_crate] = ACTIONS(1997), + [sym_metavariable] = ACTIONS(1995), + [sym_raw_string_literal] = ACTIONS(1995), + [sym_float_literal] = ACTIONS(1995), + [sym_block_comment] = ACTIONS(3), + }, + [476] = { + [ts_builtin_sym_end] = ACTIONS(1999), + [sym_identifier] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_macro_rules_BANG] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_u8] = ACTIONS(2001), + [anon_sym_i8] = ACTIONS(2001), + [anon_sym_u16] = ACTIONS(2001), + [anon_sym_i16] = ACTIONS(2001), + [anon_sym_u32] = ACTIONS(2001), + [anon_sym_i32] = ACTIONS(2001), + [anon_sym_u64] = ACTIONS(2001), + [anon_sym_i64] = ACTIONS(2001), + [anon_sym_u128] = ACTIONS(2001), + [anon_sym_i128] = ACTIONS(2001), + [anon_sym_isize] = ACTIONS(2001), + [anon_sym_usize] = ACTIONS(2001), + [anon_sym_f32] = ACTIONS(2001), + [anon_sym_f64] = ACTIONS(2001), + [anon_sym_bool] = ACTIONS(2001), + [anon_sym_str] = ACTIONS(2001), + [anon_sym_char] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_async] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_default] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_fn] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_impl] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_mod] = ACTIONS(2001), + [anon_sym_pub] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_trait] = ACTIONS(2001), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_unsafe] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(1999), + [anon_sym_COLON_COLON] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_PIPE] = ACTIONS(1999), + [anon_sym_move] = ACTIONS(2001), + [sym_integer_literal] = ACTIONS(1999), + [aux_sym_string_literal_token1] = ACTIONS(1999), + [sym_char_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2001), + [sym_super] = ACTIONS(2001), + [sym_crate] = ACTIONS(2001), + [sym_metavariable] = ACTIONS(1999), + [sym_raw_string_literal] = ACTIONS(1999), + [sym_float_literal] = ACTIONS(1999), + [sym_block_comment] = ACTIONS(3), + }, + [477] = { + [ts_builtin_sym_end] = ACTIONS(2003), + [sym_identifier] = ACTIONS(2005), + [anon_sym_SEMI] = ACTIONS(2003), + [anon_sym_macro_rules_BANG] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2003), + [anon_sym_u8] = ACTIONS(2005), + [anon_sym_i8] = ACTIONS(2005), + [anon_sym_u16] = ACTIONS(2005), + [anon_sym_i16] = ACTIONS(2005), + [anon_sym_u32] = ACTIONS(2005), + [anon_sym_i32] = ACTIONS(2005), + [anon_sym_u64] = ACTIONS(2005), + [anon_sym_i64] = ACTIONS(2005), + [anon_sym_u128] = ACTIONS(2005), + [anon_sym_i128] = ACTIONS(2005), + [anon_sym_isize] = ACTIONS(2005), + [anon_sym_usize] = ACTIONS(2005), + [anon_sym_f32] = ACTIONS(2005), + [anon_sym_f64] = ACTIONS(2005), + [anon_sym_bool] = ACTIONS(2005), + [anon_sym_str] = ACTIONS(2005), + [anon_sym_char] = ACTIONS(2005), + [anon_sym_SQUOTE] = ACTIONS(2005), + [anon_sym_async] = ACTIONS(2005), + [anon_sym_break] = ACTIONS(2005), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2005), + [anon_sym_enum] = ACTIONS(2005), + [anon_sym_fn] = ACTIONS(2005), + [anon_sym_for] = ACTIONS(2005), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_impl] = ACTIONS(2005), + [anon_sym_let] = ACTIONS(2005), + [anon_sym_loop] = ACTIONS(2005), + [anon_sym_match] = ACTIONS(2005), + [anon_sym_mod] = ACTIONS(2005), + [anon_sym_pub] = ACTIONS(2005), + [anon_sym_return] = ACTIONS(2005), + [anon_sym_static] = ACTIONS(2005), + [anon_sym_struct] = ACTIONS(2005), + [anon_sym_trait] = ACTIONS(2005), + [anon_sym_type] = ACTIONS(2005), + [anon_sym_union] = ACTIONS(2005), + [anon_sym_unsafe] = ACTIONS(2005), + [anon_sym_use] = ACTIONS(2005), + [anon_sym_while] = ACTIONS(2005), + [anon_sym_POUND] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(2003), + [anon_sym_extern] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym_DOT_DOT] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_move] = ACTIONS(2005), + [sym_integer_literal] = ACTIONS(2003), + [aux_sym_string_literal_token1] = ACTIONS(2003), + [sym_char_literal] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(2005), + [anon_sym_false] = ACTIONS(2005), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2005), + [sym_super] = ACTIONS(2005), + [sym_crate] = ACTIONS(2005), + [sym_metavariable] = ACTIONS(2003), + [sym_raw_string_literal] = ACTIONS(2003), + [sym_float_literal] = ACTIONS(2003), + [sym_block_comment] = ACTIONS(3), + }, + [478] = { + [ts_builtin_sym_end] = ACTIONS(2007), + [sym_identifier] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2007), + [anon_sym_macro_rules_BANG] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_u8] = ACTIONS(2009), + [anon_sym_i8] = ACTIONS(2009), + [anon_sym_u16] = ACTIONS(2009), + [anon_sym_i16] = ACTIONS(2009), + [anon_sym_u32] = ACTIONS(2009), + [anon_sym_i32] = ACTIONS(2009), + [anon_sym_u64] = ACTIONS(2009), + [anon_sym_i64] = ACTIONS(2009), + [anon_sym_u128] = ACTIONS(2009), + [anon_sym_i128] = ACTIONS(2009), + [anon_sym_isize] = ACTIONS(2009), + [anon_sym_usize] = ACTIONS(2009), + [anon_sym_f32] = ACTIONS(2009), + [anon_sym_f64] = ACTIONS(2009), + [anon_sym_bool] = ACTIONS(2009), + [anon_sym_str] = ACTIONS(2009), + [anon_sym_char] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2009), + [anon_sym_async] = ACTIONS(2009), + [anon_sym_break] = ACTIONS(2009), + [anon_sym_const] = ACTIONS(2009), + [anon_sym_continue] = ACTIONS(2009), + [anon_sym_default] = ACTIONS(2009), + [anon_sym_enum] = ACTIONS(2009), + [anon_sym_fn] = ACTIONS(2009), + [anon_sym_for] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2009), + [anon_sym_impl] = ACTIONS(2009), + [anon_sym_let] = ACTIONS(2009), + [anon_sym_loop] = ACTIONS(2009), + [anon_sym_match] = ACTIONS(2009), + [anon_sym_mod] = ACTIONS(2009), + [anon_sym_pub] = ACTIONS(2009), + [anon_sym_return] = ACTIONS(2009), + [anon_sym_static] = ACTIONS(2009), + [anon_sym_struct] = ACTIONS(2009), + [anon_sym_trait] = ACTIONS(2009), + [anon_sym_type] = ACTIONS(2009), + [anon_sym_union] = ACTIONS(2009), + [anon_sym_unsafe] = ACTIONS(2009), + [anon_sym_use] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_POUND] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2007), + [anon_sym_extern] = ACTIONS(2009), + [anon_sym_LT] = ACTIONS(2007), + [anon_sym_COLON_COLON] = ACTIONS(2007), + [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_PIPE] = ACTIONS(2007), + [anon_sym_move] = ACTIONS(2009), + [sym_integer_literal] = ACTIONS(2007), [aux_sym_string_literal_token1] = ACTIONS(2007), - [sym_char_literal] = ACTIONS(2004), - [anon_sym_true] = ACTIONS(2010), - [anon_sym_false] = ACTIONS(2010), + [sym_char_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2009), + [anon_sym_false] = ACTIONS(2009), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2007), + [sym_raw_string_literal] = ACTIONS(2007), + [sym_float_literal] = ACTIONS(2007), + [sym_block_comment] = ACTIONS(3), + }, + [479] = { + [ts_builtin_sym_end] = ACTIONS(2011), + [sym_identifier] = ACTIONS(2013), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_macro_rules_BANG] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_u8] = ACTIONS(2013), + [anon_sym_i8] = ACTIONS(2013), + [anon_sym_u16] = ACTIONS(2013), + [anon_sym_i16] = ACTIONS(2013), + [anon_sym_u32] = ACTIONS(2013), + [anon_sym_i32] = ACTIONS(2013), + [anon_sym_u64] = ACTIONS(2013), + [anon_sym_i64] = ACTIONS(2013), + [anon_sym_u128] = ACTIONS(2013), + [anon_sym_i128] = ACTIONS(2013), + [anon_sym_isize] = ACTIONS(2013), + [anon_sym_usize] = ACTIONS(2013), + [anon_sym_f32] = ACTIONS(2013), + [anon_sym_f64] = ACTIONS(2013), + [anon_sym_bool] = ACTIONS(2013), + [anon_sym_str] = ACTIONS(2013), + [anon_sym_char] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_async] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_default] = ACTIONS(2013), + [anon_sym_enum] = ACTIONS(2013), + [anon_sym_fn] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_impl] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(2013), + [anon_sym_loop] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_mod] = ACTIONS(2013), + [anon_sym_pub] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_static] = ACTIONS(2013), + [anon_sym_struct] = ACTIONS(2013), + [anon_sym_trait] = ACTIONS(2013), + [anon_sym_type] = ACTIONS(2013), + [anon_sym_union] = ACTIONS(2013), + [anon_sym_unsafe] = ACTIONS(2013), + [anon_sym_use] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2011), + [anon_sym_extern] = ACTIONS(2013), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_COLON_COLON] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2011), + [anon_sym_DOT_DOT] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_move] = ACTIONS(2013), + [sym_integer_literal] = ACTIONS(2011), + [aux_sym_string_literal_token1] = ACTIONS(2011), + [sym_char_literal] = ACTIONS(2011), + [anon_sym_true] = ACTIONS(2013), + [anon_sym_false] = ACTIONS(2013), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2013), [sym_super] = ACTIONS(2013), [sym_crate] = ACTIONS(2013), - [sym_metavariable] = ACTIONS(2016), - [sym_raw_string_literal] = ACTIONS(2004), - [sym_float_literal] = ACTIONS(2004), + [sym_metavariable] = ACTIONS(2011), + [sym_raw_string_literal] = ACTIONS(2011), + [sym_float_literal] = ACTIONS(2011), [sym_block_comment] = ACTIONS(3), }, - [467] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2027), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [480] = { + [ts_builtin_sym_end] = ACTIONS(2015), + [sym_identifier] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_macro_rules_BANG] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_u8] = ACTIONS(2017), + [anon_sym_i8] = ACTIONS(2017), + [anon_sym_u16] = ACTIONS(2017), + [anon_sym_i16] = ACTIONS(2017), + [anon_sym_u32] = ACTIONS(2017), + [anon_sym_i32] = ACTIONS(2017), + [anon_sym_u64] = ACTIONS(2017), + [anon_sym_i64] = ACTIONS(2017), + [anon_sym_u128] = ACTIONS(2017), + [anon_sym_i128] = ACTIONS(2017), + [anon_sym_isize] = ACTIONS(2017), + [anon_sym_usize] = ACTIONS(2017), + [anon_sym_f32] = ACTIONS(2017), + [anon_sym_f64] = ACTIONS(2017), + [anon_sym_bool] = ACTIONS(2017), + [anon_sym_str] = ACTIONS(2017), + [anon_sym_char] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2017), + [anon_sym_async] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_fn] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_impl] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_mod] = ACTIONS(2017), + [anon_sym_pub] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_trait] = ACTIONS(2017), + [anon_sym_type] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_unsafe] = ACTIONS(2017), + [anon_sym_use] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_POUND] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym_LT] = ACTIONS(2015), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2015), + [anon_sym_move] = ACTIONS(2017), + [sym_integer_literal] = ACTIONS(2015), + [aux_sym_string_literal_token1] = ACTIONS(2015), + [sym_char_literal] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2017), + [anon_sym_false] = ACTIONS(2017), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2017), + [sym_super] = ACTIONS(2017), + [sym_crate] = ACTIONS(2017), + [sym_metavariable] = ACTIONS(2015), + [sym_raw_string_literal] = ACTIONS(2015), + [sym_float_literal] = ACTIONS(2015), [sym_block_comment] = ACTIONS(3), }, - [468] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), + [481] = { + [ts_builtin_sym_end] = ACTIONS(2019), + [sym_identifier] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_macro_rules_BANG] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_u8] = ACTIONS(2021), + [anon_sym_i8] = ACTIONS(2021), + [anon_sym_u16] = ACTIONS(2021), + [anon_sym_i16] = ACTIONS(2021), + [anon_sym_u32] = ACTIONS(2021), + [anon_sym_i32] = ACTIONS(2021), + [anon_sym_u64] = ACTIONS(2021), + [anon_sym_i64] = ACTIONS(2021), + [anon_sym_u128] = ACTIONS(2021), + [anon_sym_i128] = ACTIONS(2021), + [anon_sym_isize] = ACTIONS(2021), + [anon_sym_usize] = ACTIONS(2021), + [anon_sym_f32] = ACTIONS(2021), + [anon_sym_f64] = ACTIONS(2021), + [anon_sym_bool] = ACTIONS(2021), + [anon_sym_str] = ACTIONS(2021), + [anon_sym_char] = ACTIONS(2021), + [anon_sym_SQUOTE] = ACTIONS(2021), + [anon_sym_async] = ACTIONS(2021), + [anon_sym_break] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(2021), + [anon_sym_continue] = ACTIONS(2021), + [anon_sym_default] = ACTIONS(2021), + [anon_sym_enum] = ACTIONS(2021), + [anon_sym_fn] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_impl] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2021), + [anon_sym_loop] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_mod] = ACTIONS(2021), + [anon_sym_pub] = ACTIONS(2021), + [anon_sym_return] = ACTIONS(2021), + [anon_sym_static] = ACTIONS(2021), + [anon_sym_struct] = ACTIONS(2021), + [anon_sym_trait] = ACTIONS(2021), + [anon_sym_type] = ACTIONS(2021), + [anon_sym_union] = ACTIONS(2021), + [anon_sym_unsafe] = ACTIONS(2021), + [anon_sym_use] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_extern] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_COLON_COLON] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_move] = ACTIONS(2021), + [sym_integer_literal] = ACTIONS(2019), + [aux_sym_string_literal_token1] = ACTIONS(2019), + [sym_char_literal] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2021), + [sym_super] = ACTIONS(2021), + [sym_crate] = ACTIONS(2021), + [sym_metavariable] = ACTIONS(2019), + [sym_raw_string_literal] = ACTIONS(2019), + [sym_float_literal] = ACTIONS(2019), + [sym_block_comment] = ACTIONS(3), + }, + [482] = { + [ts_builtin_sym_end] = ACTIONS(2023), + [sym_identifier] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_macro_rules_BANG] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_STAR] = ACTIONS(2023), + [anon_sym_u8] = ACTIONS(2025), + [anon_sym_i8] = ACTIONS(2025), + [anon_sym_u16] = ACTIONS(2025), + [anon_sym_i16] = ACTIONS(2025), + [anon_sym_u32] = ACTIONS(2025), + [anon_sym_i32] = ACTIONS(2025), + [anon_sym_u64] = ACTIONS(2025), + [anon_sym_i64] = ACTIONS(2025), + [anon_sym_u128] = ACTIONS(2025), + [anon_sym_i128] = ACTIONS(2025), + [anon_sym_isize] = ACTIONS(2025), + [anon_sym_usize] = ACTIONS(2025), + [anon_sym_f32] = ACTIONS(2025), + [anon_sym_f64] = ACTIONS(2025), + [anon_sym_bool] = ACTIONS(2025), + [anon_sym_str] = ACTIONS(2025), + [anon_sym_char] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_async] = ACTIONS(2025), + [anon_sym_break] = ACTIONS(2025), + [anon_sym_const] = ACTIONS(2025), + [anon_sym_continue] = ACTIONS(2025), + [anon_sym_default] = ACTIONS(2025), + [anon_sym_enum] = ACTIONS(2025), + [anon_sym_fn] = ACTIONS(2025), + [anon_sym_for] = ACTIONS(2025), + [anon_sym_if] = ACTIONS(2025), + [anon_sym_impl] = ACTIONS(2025), + [anon_sym_let] = ACTIONS(2025), + [anon_sym_loop] = ACTIONS(2025), + [anon_sym_match] = ACTIONS(2025), + [anon_sym_mod] = ACTIONS(2025), + [anon_sym_pub] = ACTIONS(2025), + [anon_sym_return] = ACTIONS(2025), + [anon_sym_static] = ACTIONS(2025), + [anon_sym_struct] = ACTIONS(2025), + [anon_sym_trait] = ACTIONS(2025), + [anon_sym_type] = ACTIONS(2025), + [anon_sym_union] = ACTIONS(2025), + [anon_sym_unsafe] = ACTIONS(2025), + [anon_sym_use] = ACTIONS(2025), + [anon_sym_while] = ACTIONS(2025), + [anon_sym_POUND] = ACTIONS(2023), + [anon_sym_BANG] = ACTIONS(2023), + [anon_sym_extern] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2023), + [anon_sym_COLON_COLON] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2023), + [anon_sym_DOT_DOT] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_move] = ACTIONS(2025), + [sym_integer_literal] = ACTIONS(2023), + [aux_sym_string_literal_token1] = ACTIONS(2023), + [sym_char_literal] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2025), + [anon_sym_false] = ACTIONS(2025), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2025), + [sym_super] = ACTIONS(2025), + [sym_crate] = ACTIONS(2025), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(2023), + [sym_float_literal] = ACTIONS(2023), + [sym_block_comment] = ACTIONS(3), + }, + [483] = { + [ts_builtin_sym_end] = ACTIONS(2027), + [sym_identifier] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_macro_rules_BANG] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2027), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_u8] = ACTIONS(2029), + [anon_sym_i8] = ACTIONS(2029), + [anon_sym_u16] = ACTIONS(2029), + [anon_sym_i16] = ACTIONS(2029), + [anon_sym_u32] = ACTIONS(2029), + [anon_sym_i32] = ACTIONS(2029), + [anon_sym_u64] = ACTIONS(2029), + [anon_sym_i64] = ACTIONS(2029), + [anon_sym_u128] = ACTIONS(2029), + [anon_sym_i128] = ACTIONS(2029), + [anon_sym_isize] = ACTIONS(2029), + [anon_sym_usize] = ACTIONS(2029), + [anon_sym_f32] = ACTIONS(2029), + [anon_sym_f64] = ACTIONS(2029), + [anon_sym_bool] = ACTIONS(2029), + [anon_sym_str] = ACTIONS(2029), + [anon_sym_char] = ACTIONS(2029), + [anon_sym_SQUOTE] = ACTIONS(2029), + [anon_sym_async] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_default] = ACTIONS(2029), + [anon_sym_enum] = ACTIONS(2029), + [anon_sym_fn] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_impl] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2029), + [anon_sym_loop] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_mod] = ACTIONS(2029), + [anon_sym_pub] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_static] = ACTIONS(2029), + [anon_sym_struct] = ACTIONS(2029), + [anon_sym_trait] = ACTIONS(2029), + [anon_sym_type] = ACTIONS(2029), + [anon_sym_union] = ACTIONS(2029), + [anon_sym_unsafe] = ACTIONS(2029), + [anon_sym_use] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_POUND] = ACTIONS(2027), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_extern] = ACTIONS(2029), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_COLON_COLON] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_DOT_DOT] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_move] = ACTIONS(2029), + [sym_integer_literal] = ACTIONS(2027), + [aux_sym_string_literal_token1] = ACTIONS(2027), + [sym_char_literal] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(2029), + [anon_sym_false] = ACTIONS(2029), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2029), + [sym_super] = ACTIONS(2029), + [sym_crate] = ACTIONS(2029), + [sym_metavariable] = ACTIONS(2027), + [sym_raw_string_literal] = ACTIONS(2027), + [sym_float_literal] = ACTIONS(2027), + [sym_block_comment] = ACTIONS(3), + }, + [484] = { + [ts_builtin_sym_end] = ACTIONS(2031), + [sym_identifier] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_macro_rules_BANG] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_u8] = ACTIONS(2033), + [anon_sym_i8] = ACTIONS(2033), + [anon_sym_u16] = ACTIONS(2033), + [anon_sym_i16] = ACTIONS(2033), + [anon_sym_u32] = ACTIONS(2033), + [anon_sym_i32] = ACTIONS(2033), + [anon_sym_u64] = ACTIONS(2033), + [anon_sym_i64] = ACTIONS(2033), + [anon_sym_u128] = ACTIONS(2033), + [anon_sym_i128] = ACTIONS(2033), + [anon_sym_isize] = ACTIONS(2033), + [anon_sym_usize] = ACTIONS(2033), + [anon_sym_f32] = ACTIONS(2033), + [anon_sym_f64] = ACTIONS(2033), + [anon_sym_bool] = ACTIONS(2033), + [anon_sym_str] = ACTIONS(2033), + [anon_sym_char] = ACTIONS(2033), + [anon_sym_SQUOTE] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(2033), + [anon_sym_enum] = ACTIONS(2033), + [anon_sym_fn] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_impl] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2033), + [anon_sym_loop] = ACTIONS(2033), + [anon_sym_match] = ACTIONS(2033), + [anon_sym_mod] = ACTIONS(2033), + [anon_sym_pub] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_static] = ACTIONS(2033), + [anon_sym_struct] = ACTIONS(2033), + [anon_sym_trait] = ACTIONS(2033), + [anon_sym_type] = ACTIONS(2033), + [anon_sym_union] = ACTIONS(2033), + [anon_sym_unsafe] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(2031), + [anon_sym_BANG] = ACTIONS(2031), + [anon_sym_extern] = ACTIONS(2033), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_COLON_COLON] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_move] = ACTIONS(2033), + [sym_integer_literal] = ACTIONS(2031), + [aux_sym_string_literal_token1] = ACTIONS(2031), + [sym_char_literal] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(2033), + [anon_sym_false] = ACTIONS(2033), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2033), + [sym_super] = ACTIONS(2033), + [sym_crate] = ACTIONS(2033), [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(2031), + [sym_float_literal] = ACTIONS(2031), [sym_block_comment] = ACTIONS(3), }, - [469] = { - [sym_token_tree] = STATE(494), - [sym_token_repetition] = STATE(494), - [sym__literal] = STATE(494), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2037), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2035), - [anon_sym_i8] = ACTIONS(2035), - [anon_sym_u16] = ACTIONS(2035), - [anon_sym_i16] = ACTIONS(2035), - [anon_sym_u32] = ACTIONS(2035), - [anon_sym_i32] = ACTIONS(2035), - [anon_sym_u64] = ACTIONS(2035), - [anon_sym_i64] = ACTIONS(2035), - [anon_sym_u128] = ACTIONS(2035), - [anon_sym_i128] = ACTIONS(2035), - [anon_sym_isize] = ACTIONS(2035), - [anon_sym_usize] = ACTIONS(2035), - [anon_sym_f32] = ACTIONS(2035), - [anon_sym_f64] = ACTIONS(2035), - [anon_sym_bool] = ACTIONS(2035), - [anon_sym_str] = ACTIONS(2035), - [anon_sym_char] = ACTIONS(2035), - [aux_sym__non_special_token_token1] = ACTIONS(2035), - [anon_sym_SQUOTE] = ACTIONS(2035), - [anon_sym_as] = ACTIONS(2035), - [anon_sym_async] = ACTIONS(2035), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_default] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [anon_sym_fn] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_impl] = ACTIONS(2035), - [anon_sym_let] = ACTIONS(2035), - [anon_sym_loop] = ACTIONS(2035), - [anon_sym_match] = ACTIONS(2035), - [anon_sym_mod] = ACTIONS(2035), - [anon_sym_pub] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_struct] = ACTIONS(2035), - [anon_sym_trait] = ACTIONS(2035), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_union] = ACTIONS(2035), - [anon_sym_unsafe] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_where] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [sym_mutable_specifier] = ACTIONS(2035), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2035), - [sym_super] = ACTIONS(2035), - [sym_crate] = ACTIONS(2035), - [sym_metavariable] = ACTIONS(2039), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [485] = { + [ts_builtin_sym_end] = ACTIONS(2035), + [sym_identifier] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2035), + [anon_sym_macro_rules_BANG] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2035), + [anon_sym_u8] = ACTIONS(2037), + [anon_sym_i8] = ACTIONS(2037), + [anon_sym_u16] = ACTIONS(2037), + [anon_sym_i16] = ACTIONS(2037), + [anon_sym_u32] = ACTIONS(2037), + [anon_sym_i32] = ACTIONS(2037), + [anon_sym_u64] = ACTIONS(2037), + [anon_sym_i64] = ACTIONS(2037), + [anon_sym_u128] = ACTIONS(2037), + [anon_sym_i128] = ACTIONS(2037), + [anon_sym_isize] = ACTIONS(2037), + [anon_sym_usize] = ACTIONS(2037), + [anon_sym_f32] = ACTIONS(2037), + [anon_sym_f64] = ACTIONS(2037), + [anon_sym_bool] = ACTIONS(2037), + [anon_sym_str] = ACTIONS(2037), + [anon_sym_char] = ACTIONS(2037), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_async] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_default] = ACTIONS(2037), + [anon_sym_enum] = ACTIONS(2037), + [anon_sym_fn] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_impl] = ACTIONS(2037), + [anon_sym_let] = ACTIONS(2037), + [anon_sym_loop] = ACTIONS(2037), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_mod] = ACTIONS(2037), + [anon_sym_pub] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2037), + [anon_sym_struct] = ACTIONS(2037), + [anon_sym_trait] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2037), + [anon_sym_union] = ACTIONS(2037), + [anon_sym_unsafe] = ACTIONS(2037), + [anon_sym_use] = ACTIONS(2037), + [anon_sym_while] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2035), + [anon_sym_extern] = ACTIONS(2037), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_COLON_COLON] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2035), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PIPE] = ACTIONS(2035), + [anon_sym_move] = ACTIONS(2037), + [sym_integer_literal] = ACTIONS(2035), + [aux_sym_string_literal_token1] = ACTIONS(2035), + [sym_char_literal] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2037), + [anon_sym_false] = ACTIONS(2037), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2037), + [sym_super] = ACTIONS(2037), + [sym_crate] = ACTIONS(2037), + [sym_metavariable] = ACTIONS(2035), + [sym_raw_string_literal] = ACTIONS(2035), + [sym_float_literal] = ACTIONS(2035), [sym_block_comment] = ACTIONS(3), }, - [470] = { - [sym_token_tree] = STATE(475), - [sym_token_repetition] = STATE(475), - [sym__literal] = STATE(475), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(475), + [486] = { + [ts_builtin_sym_end] = ACTIONS(2039), [sym_identifier] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2039), + [anon_sym_macro_rules_BANG] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2039), + [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2039), [anon_sym_u8] = ACTIONS(2041), [anon_sym_i8] = ACTIONS(2041), [anon_sym_u16] = ACTIONS(2041), @@ -56583,11 +57313,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2041), [anon_sym_str] = ACTIONS(2041), [anon_sym_char] = ACTIONS(2041), - [aux_sym__non_special_token_token1] = ACTIONS(2041), [anon_sym_SQUOTE] = ACTIONS(2041), - [anon_sym_as] = ACTIONS(2041), [anon_sym_async] = ACTIONS(2041), - [anon_sym_await] = ACTIONS(2041), [anon_sym_break] = ACTIONS(2041), [anon_sym_const] = ACTIONS(2041), [anon_sym_continue] = ACTIONS(2041), @@ -56610,110 +57337,117 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2041), [anon_sym_unsafe] = ACTIONS(2041), [anon_sym_use] = ACTIONS(2041), - [anon_sym_where] = ACTIONS(2041), [anon_sym_while] = ACTIONS(2041), - [sym_mutable_specifier] = ACTIONS(2041), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2039), + [anon_sym_extern] = ACTIONS(2041), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_COLON_COLON] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2039), + [anon_sym_DOT_DOT] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_PIPE] = ACTIONS(2039), + [anon_sym_move] = ACTIONS(2041), + [sym_integer_literal] = ACTIONS(2039), + [aux_sym_string_literal_token1] = ACTIONS(2039), + [sym_char_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = ACTIONS(2041), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2041), [sym_super] = ACTIONS(2041), [sym_crate] = ACTIONS(2041), - [sym_metavariable] = ACTIONS(2045), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(2039), + [sym_raw_string_literal] = ACTIONS(2039), + [sym_float_literal] = ACTIONS(2039), [sym_block_comment] = ACTIONS(3), }, - [471] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2047), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [487] = { + [ts_builtin_sym_end] = ACTIONS(2043), + [sym_identifier] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2043), + [anon_sym_macro_rules_BANG] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_u8] = ACTIONS(2045), + [anon_sym_i8] = ACTIONS(2045), + [anon_sym_u16] = ACTIONS(2045), + [anon_sym_i16] = ACTIONS(2045), + [anon_sym_u32] = ACTIONS(2045), + [anon_sym_i32] = ACTIONS(2045), + [anon_sym_u64] = ACTIONS(2045), + [anon_sym_i64] = ACTIONS(2045), + [anon_sym_u128] = ACTIONS(2045), + [anon_sym_i128] = ACTIONS(2045), + [anon_sym_isize] = ACTIONS(2045), + [anon_sym_usize] = ACTIONS(2045), + [anon_sym_f32] = ACTIONS(2045), + [anon_sym_f64] = ACTIONS(2045), + [anon_sym_bool] = ACTIONS(2045), + [anon_sym_str] = ACTIONS(2045), + [anon_sym_char] = ACTIONS(2045), + [anon_sym_SQUOTE] = ACTIONS(2045), + [anon_sym_async] = ACTIONS(2045), + [anon_sym_break] = ACTIONS(2045), + [anon_sym_const] = ACTIONS(2045), + [anon_sym_continue] = ACTIONS(2045), + [anon_sym_default] = ACTIONS(2045), + [anon_sym_enum] = ACTIONS(2045), + [anon_sym_fn] = ACTIONS(2045), + [anon_sym_for] = ACTIONS(2045), + [anon_sym_if] = ACTIONS(2045), + [anon_sym_impl] = ACTIONS(2045), + [anon_sym_let] = ACTIONS(2045), + [anon_sym_loop] = ACTIONS(2045), + [anon_sym_match] = ACTIONS(2045), + [anon_sym_mod] = ACTIONS(2045), + [anon_sym_pub] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2045), + [anon_sym_static] = ACTIONS(2045), + [anon_sym_struct] = ACTIONS(2045), + [anon_sym_trait] = ACTIONS(2045), + [anon_sym_type] = ACTIONS(2045), + [anon_sym_union] = ACTIONS(2045), + [anon_sym_unsafe] = ACTIONS(2045), + [anon_sym_use] = ACTIONS(2045), + [anon_sym_while] = ACTIONS(2045), + [anon_sym_POUND] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2045), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_COLON_COLON] = ACTIONS(2043), + [anon_sym_AMP] = ACTIONS(2043), + [anon_sym_DOT_DOT] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2045), + [sym_integer_literal] = ACTIONS(2043), + [aux_sym_string_literal_token1] = ACTIONS(2043), + [sym_char_literal] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2045), + [anon_sym_false] = ACTIONS(2045), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2045), + [sym_super] = ACTIONS(2045), + [sym_crate] = ACTIONS(2045), + [sym_metavariable] = ACTIONS(2043), + [sym_raw_string_literal] = ACTIONS(2043), + [sym_float_literal] = ACTIONS(2043), [sym_block_comment] = ACTIONS(3), }, - [472] = { - [sym_token_tree] = STATE(493), - [sym_token_repetition] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(493), + [488] = { + [ts_builtin_sym_end] = ACTIONS(2047), [sym_identifier] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_macro_rules_BANG] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(2047), [anon_sym_u8] = ACTIONS(2049), [anon_sym_i8] = ACTIONS(2049), [anon_sym_u16] = ACTIONS(2049), @@ -56731,11 +57465,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2049), [anon_sym_str] = ACTIONS(2049), [anon_sym_char] = ACTIONS(2049), - [aux_sym__non_special_token_token1] = ACTIONS(2049), [anon_sym_SQUOTE] = ACTIONS(2049), - [anon_sym_as] = ACTIONS(2049), [anon_sym_async] = ACTIONS(2049), - [anon_sym_await] = ACTIONS(2049), [anon_sym_break] = ACTIONS(2049), [anon_sym_const] = ACTIONS(2049), [anon_sym_continue] = ACTIONS(2049), @@ -56758,36 +57489,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2049), [anon_sym_unsafe] = ACTIONS(2049), [anon_sym_use] = ACTIONS(2049), - [anon_sym_where] = ACTIONS(2049), [anon_sym_while] = ACTIONS(2049), - [sym_mutable_specifier] = ACTIONS(2049), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2049), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_COLON_COLON] = ACTIONS(2047), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_PIPE] = ACTIONS(2047), + [anon_sym_move] = ACTIONS(2049), + [sym_integer_literal] = ACTIONS(2047), + [aux_sym_string_literal_token1] = ACTIONS(2047), + [sym_char_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2049), [sym_super] = ACTIONS(2049), [sym_crate] = ACTIONS(2049), - [sym_metavariable] = ACTIONS(2051), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(2047), + [sym_raw_string_literal] = ACTIONS(2047), + [sym_float_literal] = ACTIONS(2047), [sym_block_comment] = ACTIONS(3), }, - [473] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(497), + [489] = { + [ts_builtin_sym_end] = ACTIONS(2051), [sym_identifier] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2051), + [anon_sym_macro_rules_BANG] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2051), + [anon_sym_STAR] = ACTIONS(2051), [anon_sym_u8] = ACTIONS(2053), [anon_sym_i8] = ACTIONS(2053), [anon_sym_u16] = ACTIONS(2053), @@ -56805,11 +57541,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2053), [anon_sym_str] = ACTIONS(2053), [anon_sym_char] = ACTIONS(2053), - [aux_sym__non_special_token_token1] = ACTIONS(2053), [anon_sym_SQUOTE] = ACTIONS(2053), - [anon_sym_as] = ACTIONS(2053), [anon_sym_async] = ACTIONS(2053), - [anon_sym_await] = ACTIONS(2053), [anon_sym_break] = ACTIONS(2053), [anon_sym_const] = ACTIONS(2053), [anon_sym_continue] = ACTIONS(2053), @@ -56832,1812 +57565,119 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2053), [anon_sym_unsafe] = ACTIONS(2053), [anon_sym_use] = ACTIONS(2053), - [anon_sym_where] = ACTIONS(2053), [anon_sym_while] = ACTIONS(2053), - [sym_mutable_specifier] = ACTIONS(2053), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(2051), + [anon_sym_BANG] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2051), + [anon_sym_COLON_COLON] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(2051), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(2051), + [anon_sym_move] = ACTIONS(2053), + [sym_integer_literal] = ACTIONS(2051), + [aux_sym_string_literal_token1] = ACTIONS(2051), + [sym_char_literal] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2053), [sym_super] = ACTIONS(2053), [sym_crate] = ACTIONS(2053), - [sym_metavariable] = ACTIONS(2055), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [474] = { - [sym_token_tree] = STATE(480), - [sym_token_repetition] = STATE(480), - [sym__literal] = STATE(480), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(480), - [sym_identifier] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2057), - [anon_sym_i8] = ACTIONS(2057), - [anon_sym_u16] = ACTIONS(2057), - [anon_sym_i16] = ACTIONS(2057), - [anon_sym_u32] = ACTIONS(2057), - [anon_sym_i32] = ACTIONS(2057), - [anon_sym_u64] = ACTIONS(2057), - [anon_sym_i64] = ACTIONS(2057), - [anon_sym_u128] = ACTIONS(2057), - [anon_sym_i128] = ACTIONS(2057), - [anon_sym_isize] = ACTIONS(2057), - [anon_sym_usize] = ACTIONS(2057), - [anon_sym_f32] = ACTIONS(2057), - [anon_sym_f64] = ACTIONS(2057), - [anon_sym_bool] = ACTIONS(2057), - [anon_sym_str] = ACTIONS(2057), - [anon_sym_char] = ACTIONS(2057), - [aux_sym__non_special_token_token1] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_fn] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_impl] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_loop] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2057), - [anon_sym_mod] = ACTIONS(2057), - [anon_sym_pub] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2057), - [anon_sym_trait] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_union] = ACTIONS(2057), - [anon_sym_unsafe] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_where] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [sym_mutable_specifier] = ACTIONS(2057), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_crate] = ACTIONS(2057), - [sym_metavariable] = ACTIONS(2061), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [475] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [476] = { - [sym_token_tree] = STATE(482), - [sym_token_repetition] = STATE(482), - [sym__literal] = STATE(482), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(482), - [sym_identifier] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2063), - [anon_sym_i8] = ACTIONS(2063), - [anon_sym_u16] = ACTIONS(2063), - [anon_sym_i16] = ACTIONS(2063), - [anon_sym_u32] = ACTIONS(2063), - [anon_sym_i32] = ACTIONS(2063), - [anon_sym_u64] = ACTIONS(2063), - [anon_sym_i64] = ACTIONS(2063), - [anon_sym_u128] = ACTIONS(2063), - [anon_sym_i128] = ACTIONS(2063), - [anon_sym_isize] = ACTIONS(2063), - [anon_sym_usize] = ACTIONS(2063), - [anon_sym_f32] = ACTIONS(2063), - [anon_sym_f64] = ACTIONS(2063), - [anon_sym_bool] = ACTIONS(2063), - [anon_sym_str] = ACTIONS(2063), - [anon_sym_char] = ACTIONS(2063), - [aux_sym__non_special_token_token1] = ACTIONS(2063), - [anon_sym_SQUOTE] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_async] = ACTIONS(2063), - [anon_sym_await] = ACTIONS(2063), - [anon_sym_break] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2063), - [anon_sym_continue] = ACTIONS(2063), - [anon_sym_default] = ACTIONS(2063), - [anon_sym_enum] = ACTIONS(2063), - [anon_sym_fn] = ACTIONS(2063), - [anon_sym_for] = ACTIONS(2063), - [anon_sym_if] = ACTIONS(2063), - [anon_sym_impl] = ACTIONS(2063), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_loop] = ACTIONS(2063), - [anon_sym_match] = ACTIONS(2063), - [anon_sym_mod] = ACTIONS(2063), - [anon_sym_pub] = ACTIONS(2063), - [anon_sym_return] = ACTIONS(2063), - [anon_sym_static] = ACTIONS(2063), - [anon_sym_struct] = ACTIONS(2063), - [anon_sym_trait] = ACTIONS(2063), - [anon_sym_type] = ACTIONS(2063), - [anon_sym_union] = ACTIONS(2063), - [anon_sym_unsafe] = ACTIONS(2063), - [anon_sym_use] = ACTIONS(2063), - [anon_sym_where] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [sym_mutable_specifier] = ACTIONS(2063), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2063), - [sym_super] = ACTIONS(2063), - [sym_crate] = ACTIONS(2063), - [sym_metavariable] = ACTIONS(2065), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [477] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2033), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [478] = { - [sym_token_tree] = STATE(495), - [sym_token_repetition] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2067), - [anon_sym_i8] = ACTIONS(2067), - [anon_sym_u16] = ACTIONS(2067), - [anon_sym_i16] = ACTIONS(2067), - [anon_sym_u32] = ACTIONS(2067), - [anon_sym_i32] = ACTIONS(2067), - [anon_sym_u64] = ACTIONS(2067), - [anon_sym_i64] = ACTIONS(2067), - [anon_sym_u128] = ACTIONS(2067), - [anon_sym_i128] = ACTIONS(2067), - [anon_sym_isize] = ACTIONS(2067), - [anon_sym_usize] = ACTIONS(2067), - [anon_sym_f32] = ACTIONS(2067), - [anon_sym_f64] = ACTIONS(2067), - [anon_sym_bool] = ACTIONS(2067), - [anon_sym_str] = ACTIONS(2067), - [anon_sym_char] = ACTIONS(2067), - [aux_sym__non_special_token_token1] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [anon_sym_fn] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_impl] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_loop] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_mod] = ACTIONS(2067), - [anon_sym_pub] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_struct] = ACTIONS(2067), - [anon_sym_trait] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_union] = ACTIONS(2067), - [anon_sym_unsafe] = ACTIONS(2067), - [anon_sym_use] = ACTIONS(2067), - [anon_sym_where] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [sym_mutable_specifier] = ACTIONS(2067), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_crate] = ACTIONS(2067), - [sym_metavariable] = ACTIONS(2071), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [479] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [480] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [481] = { - [sym_token_tree] = STATE(477), - [sym_token_repetition] = STATE(477), - [sym__literal] = STATE(477), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(2075), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2077), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2075), - [anon_sym_i8] = ACTIONS(2075), - [anon_sym_u16] = ACTIONS(2075), - [anon_sym_i16] = ACTIONS(2075), - [anon_sym_u32] = ACTIONS(2075), - [anon_sym_i32] = ACTIONS(2075), - [anon_sym_u64] = ACTIONS(2075), - [anon_sym_i64] = ACTIONS(2075), - [anon_sym_u128] = ACTIONS(2075), - [anon_sym_i128] = ACTIONS(2075), - [anon_sym_isize] = ACTIONS(2075), - [anon_sym_usize] = ACTIONS(2075), - [anon_sym_f32] = ACTIONS(2075), - [anon_sym_f64] = ACTIONS(2075), - [anon_sym_bool] = ACTIONS(2075), - [anon_sym_str] = ACTIONS(2075), - [anon_sym_char] = ACTIONS(2075), - [aux_sym__non_special_token_token1] = ACTIONS(2075), - [anon_sym_SQUOTE] = ACTIONS(2075), - [anon_sym_as] = ACTIONS(2075), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_break] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2075), - [anon_sym_continue] = ACTIONS(2075), - [anon_sym_default] = ACTIONS(2075), - [anon_sym_enum] = ACTIONS(2075), - [anon_sym_fn] = ACTIONS(2075), - [anon_sym_for] = ACTIONS(2075), - [anon_sym_if] = ACTIONS(2075), - [anon_sym_impl] = ACTIONS(2075), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_loop] = ACTIONS(2075), - [anon_sym_match] = ACTIONS(2075), - [anon_sym_mod] = ACTIONS(2075), - [anon_sym_pub] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2075), - [anon_sym_static] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(2075), - [anon_sym_trait] = ACTIONS(2075), - [anon_sym_type] = ACTIONS(2075), - [anon_sym_union] = ACTIONS(2075), - [anon_sym_unsafe] = ACTIONS(2075), - [anon_sym_use] = ACTIONS(2075), - [anon_sym_where] = ACTIONS(2075), - [anon_sym_while] = ACTIONS(2075), - [sym_mutable_specifier] = ACTIONS(2075), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2075), - [sym_super] = ACTIONS(2075), - [sym_crate] = ACTIONS(2075), - [sym_metavariable] = ACTIONS(2079), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [482] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [483] = { - [sym_token_tree] = STATE(488), - [sym_token_repetition] = STATE(488), - [sym__literal] = STATE(488), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2083), - [anon_sym_i8] = ACTIONS(2083), - [anon_sym_u16] = ACTIONS(2083), - [anon_sym_i16] = ACTIONS(2083), - [anon_sym_u32] = ACTIONS(2083), - [anon_sym_i32] = ACTIONS(2083), - [anon_sym_u64] = ACTIONS(2083), - [anon_sym_i64] = ACTIONS(2083), - [anon_sym_u128] = ACTIONS(2083), - [anon_sym_i128] = ACTIONS(2083), - [anon_sym_isize] = ACTIONS(2083), - [anon_sym_usize] = ACTIONS(2083), - [anon_sym_f32] = ACTIONS(2083), - [anon_sym_f64] = ACTIONS(2083), - [anon_sym_bool] = ACTIONS(2083), - [anon_sym_str] = ACTIONS(2083), - [anon_sym_char] = ACTIONS(2083), - [aux_sym__non_special_token_token1] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_as] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_default] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [anon_sym_fn] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_impl] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_loop] = ACTIONS(2083), - [anon_sym_match] = ACTIONS(2083), - [anon_sym_mod] = ACTIONS(2083), - [anon_sym_pub] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_static] = ACTIONS(2083), - [anon_sym_struct] = ACTIONS(2083), - [anon_sym_trait] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_union] = ACTIONS(2083), - [anon_sym_unsafe] = ACTIONS(2083), - [anon_sym_use] = ACTIONS(2083), - [anon_sym_where] = ACTIONS(2083), - [anon_sym_while] = ACTIONS(2083), - [sym_mutable_specifier] = ACTIONS(2083), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2083), - [sym_super] = ACTIONS(2083), - [sym_crate] = ACTIONS(2083), - [sym_metavariable] = ACTIONS(2087), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [484] = { - [sym_token_tree] = STATE(468), - [sym_token_repetition] = STATE(468), - [sym__literal] = STATE(468), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(468), - [sym_identifier] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2089), - [anon_sym_i8] = ACTIONS(2089), - [anon_sym_u16] = ACTIONS(2089), - [anon_sym_i16] = ACTIONS(2089), - [anon_sym_u32] = ACTIONS(2089), - [anon_sym_i32] = ACTIONS(2089), - [anon_sym_u64] = ACTIONS(2089), - [anon_sym_i64] = ACTIONS(2089), - [anon_sym_u128] = ACTIONS(2089), - [anon_sym_i128] = ACTIONS(2089), - [anon_sym_isize] = ACTIONS(2089), - [anon_sym_usize] = ACTIONS(2089), - [anon_sym_f32] = ACTIONS(2089), - [anon_sym_f64] = ACTIONS(2089), - [anon_sym_bool] = ACTIONS(2089), - [anon_sym_str] = ACTIONS(2089), - [anon_sym_char] = ACTIONS(2089), - [aux_sym__non_special_token_token1] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_default] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [anon_sym_fn] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_impl] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_mod] = ACTIONS(2089), - [anon_sym_pub] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_struct] = ACTIONS(2089), - [anon_sym_trait] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_union] = ACTIONS(2089), - [anon_sym_unsafe] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_where] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [sym_mutable_specifier] = ACTIONS(2089), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_crate] = ACTIONS(2089), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [485] = { - [sym_token_tree] = STATE(491), - [sym_token_repetition] = STATE(491), - [sym__literal] = STATE(491), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(491), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2093), - [anon_sym_i8] = ACTIONS(2093), - [anon_sym_u16] = ACTIONS(2093), - [anon_sym_i16] = ACTIONS(2093), - [anon_sym_u32] = ACTIONS(2093), - [anon_sym_i32] = ACTIONS(2093), - [anon_sym_u64] = ACTIONS(2093), - [anon_sym_i64] = ACTIONS(2093), - [anon_sym_u128] = ACTIONS(2093), - [anon_sym_i128] = ACTIONS(2093), - [anon_sym_isize] = ACTIONS(2093), - [anon_sym_usize] = ACTIONS(2093), - [anon_sym_f32] = ACTIONS(2093), - [anon_sym_f64] = ACTIONS(2093), - [anon_sym_bool] = ACTIONS(2093), - [anon_sym_str] = ACTIONS(2093), - [anon_sym_char] = ACTIONS(2093), - [aux_sym__non_special_token_token1] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_impl] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_loop] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_mod] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_trait] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_use] = ACTIONS(2093), - [anon_sym_where] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [sym_mutable_specifier] = ACTIONS(2093), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_crate] = ACTIONS(2093), - [sym_metavariable] = ACTIONS(2095), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [486] = { - [sym_token_tree] = STATE(479), - [sym_token_repetition] = STATE(479), - [sym__literal] = STATE(479), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(479), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2099), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [487] = { - [sym_token_tree] = STATE(467), - [sym_token_repetition] = STATE(467), - [sym__literal] = STATE(467), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(467), - [sym_identifier] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2085), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2101), - [anon_sym_i8] = ACTIONS(2101), - [anon_sym_u16] = ACTIONS(2101), - [anon_sym_i16] = ACTIONS(2101), - [anon_sym_u32] = ACTIONS(2101), - [anon_sym_i32] = ACTIONS(2101), - [anon_sym_u64] = ACTIONS(2101), - [anon_sym_i64] = ACTIONS(2101), - [anon_sym_u128] = ACTIONS(2101), - [anon_sym_i128] = ACTIONS(2101), - [anon_sym_isize] = ACTIONS(2101), - [anon_sym_usize] = ACTIONS(2101), - [anon_sym_f32] = ACTIONS(2101), - [anon_sym_f64] = ACTIONS(2101), - [anon_sym_bool] = ACTIONS(2101), - [anon_sym_str] = ACTIONS(2101), - [anon_sym_char] = ACTIONS(2101), - [aux_sym__non_special_token_token1] = ACTIONS(2101), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_as] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_await] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_default] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_fn] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_impl] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_mod] = ACTIONS(2101), - [anon_sym_pub] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_struct] = ACTIONS(2101), - [anon_sym_trait] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_union] = ACTIONS(2101), - [anon_sym_unsafe] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_where] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [sym_mutable_specifier] = ACTIONS(2101), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2101), - [sym_super] = ACTIONS(2101), - [sym_crate] = ACTIONS(2101), - [sym_metavariable] = ACTIONS(2103), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [488] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [489] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2105), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(2051), + [sym_raw_string_literal] = ACTIONS(2051), + [sym_float_literal] = ACTIONS(2051), [sym_block_comment] = ACTIONS(3), }, [490] = { - [sym_token_tree] = STATE(471), - [sym_token_repetition] = STATE(471), - [sym__literal] = STATE(471), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(471), - [sym_identifier] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2107), - [anon_sym_i8] = ACTIONS(2107), - [anon_sym_u16] = ACTIONS(2107), - [anon_sym_i16] = ACTIONS(2107), - [anon_sym_u32] = ACTIONS(2107), - [anon_sym_i32] = ACTIONS(2107), - [anon_sym_u64] = ACTIONS(2107), - [anon_sym_i64] = ACTIONS(2107), - [anon_sym_u128] = ACTIONS(2107), - [anon_sym_i128] = ACTIONS(2107), - [anon_sym_isize] = ACTIONS(2107), - [anon_sym_usize] = ACTIONS(2107), - [anon_sym_f32] = ACTIONS(2107), - [anon_sym_f64] = ACTIONS(2107), - [anon_sym_bool] = ACTIONS(2107), - [anon_sym_str] = ACTIONS(2107), - [anon_sym_char] = ACTIONS(2107), - [aux_sym__non_special_token_token1] = ACTIONS(2107), - [anon_sym_SQUOTE] = ACTIONS(2107), - [anon_sym_as] = ACTIONS(2107), - [anon_sym_async] = ACTIONS(2107), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_const] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2107), - [anon_sym_default] = ACTIONS(2107), - [anon_sym_enum] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(2107), - [anon_sym_for] = ACTIONS(2107), - [anon_sym_if] = ACTIONS(2107), - [anon_sym_impl] = ACTIONS(2107), - [anon_sym_let] = ACTIONS(2107), - [anon_sym_loop] = ACTIONS(2107), - [anon_sym_match] = ACTIONS(2107), - [anon_sym_mod] = ACTIONS(2107), - [anon_sym_pub] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(2107), - [anon_sym_static] = ACTIONS(2107), - [anon_sym_struct] = ACTIONS(2107), - [anon_sym_trait] = ACTIONS(2107), - [anon_sym_type] = ACTIONS(2107), - [anon_sym_union] = ACTIONS(2107), - [anon_sym_unsafe] = ACTIONS(2107), - [anon_sym_use] = ACTIONS(2107), - [anon_sym_where] = ACTIONS(2107), - [anon_sym_while] = ACTIONS(2107), - [sym_mutable_specifier] = ACTIONS(2107), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2107), - [sym_super] = ACTIONS(2107), - [sym_crate] = ACTIONS(2107), - [sym_metavariable] = ACTIONS(2109), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_attribute_item] = STATE(524), + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_macro_invocation] = STATE(2313), + [sym_scoped_identifier] = STATE(1556), + [sym_scoped_type_identifier] = STATE(1971), + [sym_match_arm] = STATE(490), + [sym_match_pattern] = STATE(2313), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2065), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_enum_variant_list_repeat1] = STATE(524), + [aux_sym_match_block_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_u8] = ACTIONS(2064), + [anon_sym_i8] = ACTIONS(2064), + [anon_sym_u16] = ACTIONS(2064), + [anon_sym_i16] = ACTIONS(2064), + [anon_sym_u32] = ACTIONS(2064), + [anon_sym_i32] = ACTIONS(2064), + [anon_sym_u64] = ACTIONS(2064), + [anon_sym_i64] = ACTIONS(2064), + [anon_sym_u128] = ACTIONS(2064), + [anon_sym_i128] = ACTIONS(2064), + [anon_sym_isize] = ACTIONS(2064), + [anon_sym_usize] = ACTIONS(2064), + [anon_sym_f32] = ACTIONS(2064), + [anon_sym_f64] = ACTIONS(2064), + [anon_sym_bool] = ACTIONS(2064), + [anon_sym_str] = ACTIONS(2064), + [anon_sym_char] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2070), + [anon_sym_union] = ACTIONS(2070), + [anon_sym_POUND] = ACTIONS(2073), + [anon_sym_ref] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_COLON_COLON] = ACTIONS(2082), + [anon_sym__] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2088), + [sym_mutable_specifier] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2097), + [sym_integer_literal] = ACTIONS(2100), + [aux_sym_string_literal_token1] = ACTIONS(2103), + [sym_char_literal] = ACTIONS(2100), + [anon_sym_true] = ACTIONS(2106), + [anon_sym_false] = ACTIONS(2106), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_crate] = ACTIONS(2109), + [sym_metavariable] = ACTIONS(2112), + [sym_raw_string_literal] = ACTIONS(2100), + [sym_float_literal] = ACTIONS(2100), [sym_block_comment] = ACTIONS(3), }, [491] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [492] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [493] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [494] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [495] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [496] = { - [sym_token_tree] = STATE(492), - [sym_token_repetition] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2111), - [anon_sym_i8] = ACTIONS(2111), - [anon_sym_u16] = ACTIONS(2111), - [anon_sym_i16] = ACTIONS(2111), - [anon_sym_u32] = ACTIONS(2111), - [anon_sym_i32] = ACTIONS(2111), - [anon_sym_u64] = ACTIONS(2111), - [anon_sym_i64] = ACTIONS(2111), - [anon_sym_u128] = ACTIONS(2111), - [anon_sym_i128] = ACTIONS(2111), - [anon_sym_isize] = ACTIONS(2111), - [anon_sym_usize] = ACTIONS(2111), - [anon_sym_f32] = ACTIONS(2111), - [anon_sym_f64] = ACTIONS(2111), - [anon_sym_bool] = ACTIONS(2111), - [anon_sym_str] = ACTIONS(2111), - [anon_sym_char] = ACTIONS(2111), - [aux_sym__non_special_token_token1] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_as] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [anon_sym_fn] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_impl] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_loop] = ACTIONS(2111), - [anon_sym_match] = ACTIONS(2111), - [anon_sym_mod] = ACTIONS(2111), - [anon_sym_pub] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(2111), - [anon_sym_trait] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_union] = ACTIONS(2111), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_use] = ACTIONS(2111), - [anon_sym_where] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [sym_mutable_specifier] = ACTIONS(2111), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(2113), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [497] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [aux_sym__non_special_token_token1] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [498] = { - [sym_token_tree] = STATE(489), - [sym_token_repetition] = STATE(489), - [sym__literal] = STATE(489), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(489), + [sym_token_tree] = STATE(520), + [sym_token_repetition] = STATE(520), + [sym__literal] = STATE(520), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(520), [sym_identifier] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2069), - [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), [anon_sym_u8] = ACTIONS(2115), [anon_sym_i8] = ACTIONS(2115), [anon_sym_u16] = ACTIONS(2115), @@ -58685,752 +57725,329 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2115), [anon_sym_while] = ACTIONS(2115), [sym_mutable_specifier] = ACTIONS(2115), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), [sym_self] = ACTIONS(2115), [sym_super] = ACTIONS(2115), [sym_crate] = ACTIONS(2115), - [sym_metavariable] = ACTIONS(2117), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [499] = { - [sym_attribute_item] = STATE(592), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2261), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_pattern] = STATE(2261), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(592), - [sym_identifier] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_u8] = ACTIONS(1084), - [anon_sym_i8] = ACTIONS(1084), - [anon_sym_u16] = ACTIONS(1084), - [anon_sym_i16] = ACTIONS(1084), - [anon_sym_u32] = ACTIONS(1084), - [anon_sym_i32] = ACTIONS(1084), - [anon_sym_u64] = ACTIONS(1084), - [anon_sym_i64] = ACTIONS(1084), - [anon_sym_u128] = ACTIONS(1084), - [anon_sym_i128] = ACTIONS(1084), - [anon_sym_isize] = ACTIONS(1084), - [anon_sym_usize] = ACTIONS(1084), - [anon_sym_f32] = ACTIONS(1084), - [anon_sym_f64] = ACTIONS(1084), - [anon_sym_bool] = ACTIONS(1084), - [anon_sym_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [500] = { - [sym_attribute_item] = STATE(592), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2261), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_pattern] = STATE(2260), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(592), - [sym_identifier] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_u8] = ACTIONS(1084), - [anon_sym_i8] = ACTIONS(1084), - [anon_sym_u16] = ACTIONS(1084), - [anon_sym_i16] = ACTIONS(1084), - [anon_sym_u32] = ACTIONS(1084), - [anon_sym_i32] = ACTIONS(1084), - [anon_sym_u64] = ACTIONS(1084), - [anon_sym_i64] = ACTIONS(1084), - [anon_sym_u128] = ACTIONS(1084), - [anon_sym_i128] = ACTIONS(1084), - [anon_sym_isize] = ACTIONS(1084), - [anon_sym_usize] = ACTIONS(1084), - [anon_sym_f32] = ACTIONS(1084), - [anon_sym_f64] = ACTIONS(1084), - [anon_sym_bool] = ACTIONS(1084), - [anon_sym_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [501] = { - [sym_attribute_item] = STATE(510), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(683), - [sym__type] = STATE(1720), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(510), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(2129), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [502] = { - [sym_attribute_item] = STATE(511), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(511), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [503] = { - [sym_attribute_item] = STATE(511), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(511), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [504] = { - [sym_attribute_item] = STATE(511), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(511), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [sym_metavariable] = ACTIONS(2127), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [505] = { - [sym_attribute_item] = STATE(511), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(511), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [492] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [506] = { - [sym_attribute_item] = STATE(511), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(511), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [493] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_RBRACK] = ACTIONS(2135), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [507] = { - [sym_attribute_item] = STATE(511), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(511), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [494] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_RBRACK] = ACTIONS(2137), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [508] = { - [sym_attribute_item] = STATE(511), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(511), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [495] = { + [sym_token_tree] = STATE(501), + [sym_token_repetition] = STATE(501), + [sym__literal] = STATE(501), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(501), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_RPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [aux_sym__non_special_token_token1] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [sym_mutable_specifier] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2143), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [509] = { + [496] = { + [sym_token_tree] = STATE(492), + [sym_token_repetition] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(492), [sym_identifier] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_RPAREN] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_RBRACK] = ACTIONS(2147), - [anon_sym_COLON] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), [anon_sym_u8] = ACTIONS(2145), [anon_sym_i8] = ACTIONS(2145), [anon_sym_u16] = ACTIONS(2145), @@ -59478,241 +58095,551 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2145), [anon_sym_while] = ACTIONS(2145), [sym_mutable_specifier] = ACTIONS(2145), - [sym_integer_literal] = ACTIONS(2147), - [aux_sym_string_literal_token1] = ACTIONS(2147), - [sym_char_literal] = ACTIONS(2147), - [anon_sym_true] = ACTIONS(2145), - [anon_sym_false] = ACTIONS(2145), - [sym_line_comment] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), [sym_self] = ACTIONS(2145), [sym_super] = ACTIONS(2145), [sym_crate] = ACTIONS(2145), [sym_metavariable] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2147), - [sym_float_literal] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [510] = { - [sym_attribute_item] = STATE(1077), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(614), - [sym__type] = STATE(1748), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(1077), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [497] = { + [sym_token_tree] = STATE(503), + [sym_token_repetition] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_RBRACK] = ACTIONS(2141), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2149), + [anon_sym_i8] = ACTIONS(2149), + [anon_sym_u16] = ACTIONS(2149), + [anon_sym_i16] = ACTIONS(2149), + [anon_sym_u32] = ACTIONS(2149), + [anon_sym_i32] = ACTIONS(2149), + [anon_sym_u64] = ACTIONS(2149), + [anon_sym_i64] = ACTIONS(2149), + [anon_sym_u128] = ACTIONS(2149), + [anon_sym_i128] = ACTIONS(2149), + [anon_sym_isize] = ACTIONS(2149), + [anon_sym_usize] = ACTIONS(2149), + [anon_sym_f32] = ACTIONS(2149), + [anon_sym_f64] = ACTIONS(2149), + [anon_sym_bool] = ACTIONS(2149), + [anon_sym_str] = ACTIONS(2149), + [anon_sym_char] = ACTIONS(2149), + [aux_sym__non_special_token_token1] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_as] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_default] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [anon_sym_fn] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_impl] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_loop] = ACTIONS(2149), + [anon_sym_match] = ACTIONS(2149), + [anon_sym_mod] = ACTIONS(2149), + [anon_sym_pub] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_struct] = ACTIONS(2149), + [anon_sym_trait] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_union] = ACTIONS(2149), + [anon_sym_unsafe] = ACTIONS(2149), + [anon_sym_use] = ACTIONS(2149), + [anon_sym_where] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [sym_mutable_specifier] = ACTIONS(2149), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2149), + [sym_super] = ACTIONS(2149), + [sym_crate] = ACTIONS(2149), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [511] = { - [sym_attribute_item] = STATE(1077), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(689), - [sym__type] = STATE(1902), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(1077), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [498] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [512] = { - [sym_identifier] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), + [499] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [500] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_RPAREN] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [501] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_RPAREN] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [502] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), [anon_sym_RPAREN] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2153), - [anon_sym_RBRACK] = ACTIONS(2153), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2151), - [anon_sym_i8] = ACTIONS(2151), - [anon_sym_u16] = ACTIONS(2151), - [anon_sym_i16] = ACTIONS(2151), - [anon_sym_u32] = ACTIONS(2151), - [anon_sym_i32] = ACTIONS(2151), - [anon_sym_u64] = ACTIONS(2151), - [anon_sym_i64] = ACTIONS(2151), - [anon_sym_u128] = ACTIONS(2151), - [anon_sym_i128] = ACTIONS(2151), - [anon_sym_isize] = ACTIONS(2151), - [anon_sym_usize] = ACTIONS(2151), - [anon_sym_f32] = ACTIONS(2151), - [anon_sym_f64] = ACTIONS(2151), - [anon_sym_bool] = ACTIONS(2151), - [anon_sym_str] = ACTIONS(2151), - [anon_sym_char] = ACTIONS(2151), - [aux_sym__non_special_token_token1] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_default] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), - [anon_sym_fn] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_impl] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_loop] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_mod] = ACTIONS(2151), - [anon_sym_pub] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2151), - [anon_sym_trait] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_union] = ACTIONS(2151), - [anon_sym_unsafe] = ACTIONS(2151), - [anon_sym_use] = ACTIONS(2151), - [anon_sym_where] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [sym_mutable_specifier] = ACTIONS(2151), - [sym_integer_literal] = ACTIONS(2153), - [aux_sym_string_literal_token1] = ACTIONS(2153), - [sym_char_literal] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(2151), - [anon_sym_false] = ACTIONS(2151), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_crate] = ACTIONS(2151), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2153), - [sym_float_literal] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [513] = { + [503] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_RBRACK] = ACTIONS(2131), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [504] = { + [sym_token_tree] = STATE(502), + [sym_token_repetition] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(502), [sym_identifier] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2117), [anon_sym_RPAREN] = ACTIONS(2157), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_RBRACK] = ACTIONS(2157), - [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), [anon_sym_u8] = ACTIONS(2155), [anon_sym_i8] = ACTIONS(2155), [anon_sym_u16] = ACTIONS(2155), @@ -59760,169 +58687,181 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2155), [anon_sym_while] = ACTIONS(2155), [sym_mutable_specifier] = ACTIONS(2155), - [sym_integer_literal] = ACTIONS(2157), - [aux_sym_string_literal_token1] = ACTIONS(2157), - [sym_char_literal] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [sym_line_comment] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), [sym_self] = ACTIONS(2155), [sym_super] = ACTIONS(2155), [sym_crate] = ACTIONS(2155), - [sym_metavariable] = ACTIONS(2157), - [sym_raw_string_literal] = ACTIONS(2157), - [sym_float_literal] = ACTIONS(2157), + [sym_metavariable] = ACTIONS(2159), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [514] = { - [sym_identifier] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2161), - [anon_sym_RPAREN] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2161), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_RBRACK] = ACTIONS(2161), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_u8] = ACTIONS(2159), - [anon_sym_i8] = ACTIONS(2159), - [anon_sym_u16] = ACTIONS(2159), - [anon_sym_i16] = ACTIONS(2159), - [anon_sym_u32] = ACTIONS(2159), - [anon_sym_i32] = ACTIONS(2159), - [anon_sym_u64] = ACTIONS(2159), - [anon_sym_i64] = ACTIONS(2159), - [anon_sym_u128] = ACTIONS(2159), - [anon_sym_i128] = ACTIONS(2159), - [anon_sym_isize] = ACTIONS(2159), - [anon_sym_usize] = ACTIONS(2159), - [anon_sym_f32] = ACTIONS(2159), - [anon_sym_f64] = ACTIONS(2159), - [anon_sym_bool] = ACTIONS(2159), - [anon_sym_str] = ACTIONS(2159), - [anon_sym_char] = ACTIONS(2159), - [aux_sym__non_special_token_token1] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_default] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_impl] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_loop] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_mod] = ACTIONS(2159), - [anon_sym_pub] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_trait] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_union] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_use] = ACTIONS(2159), - [anon_sym_where] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [sym_mutable_specifier] = ACTIONS(2159), - [sym_integer_literal] = ACTIONS(2161), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2161), - [anon_sym_true] = ACTIONS(2159), - [anon_sym_false] = ACTIONS(2159), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_crate] = ACTIONS(2159), - [sym_metavariable] = ACTIONS(2161), - [sym_raw_string_literal] = ACTIONS(2161), - [sym_float_literal] = ACTIONS(2161), + [505] = { + [sym_token_tree] = STATE(498), + [sym_token_repetition] = STATE(498), + [sym__literal] = STATE(498), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(498), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2161), + [anon_sym_i8] = ACTIONS(2161), + [anon_sym_u16] = ACTIONS(2161), + [anon_sym_i16] = ACTIONS(2161), + [anon_sym_u32] = ACTIONS(2161), + [anon_sym_i32] = ACTIONS(2161), + [anon_sym_u64] = ACTIONS(2161), + [anon_sym_i64] = ACTIONS(2161), + [anon_sym_u128] = ACTIONS(2161), + [anon_sym_i128] = ACTIONS(2161), + [anon_sym_isize] = ACTIONS(2161), + [anon_sym_usize] = ACTIONS(2161), + [anon_sym_f32] = ACTIONS(2161), + [anon_sym_f64] = ACTIONS(2161), + [anon_sym_bool] = ACTIONS(2161), + [anon_sym_str] = ACTIONS(2161), + [anon_sym_char] = ACTIONS(2161), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2163), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [515] = { - [sym_function_modifiers] = STATE(2308), - [sym_const_parameter] = STATE(1830), - [sym_constrained_type_parameter] = STATE(1728), - [sym_optional_type_parameter] = STATE(1830), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1943), - [sym_bracketed_type] = STATE(2289), - [sym_qualified_type] = STATE(2357), - [sym_lifetime] = STATE(1596), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), + [506] = { + [sym_token_tree] = STATE(516), + [sym_token_repetition] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_RBRACK] = ACTIONS(2157), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2165), + [anon_sym_i8] = ACTIONS(2165), + [anon_sym_u16] = ACTIONS(2165), + [anon_sym_i16] = ACTIONS(2165), + [anon_sym_u32] = ACTIONS(2165), + [anon_sym_i32] = ACTIONS(2165), + [anon_sym_u64] = ACTIONS(2165), + [anon_sym_i64] = ACTIONS(2165), + [anon_sym_u128] = ACTIONS(2165), + [anon_sym_i128] = ACTIONS(2165), + [anon_sym_isize] = ACTIONS(2165), + [anon_sym_usize] = ACTIONS(2165), + [anon_sym_f32] = ACTIONS(2165), + [anon_sym_f64] = ACTIONS(2165), + [anon_sym_bool] = ACTIONS(2165), + [anon_sym_str] = ACTIONS(2165), + [anon_sym_char] = ACTIONS(2165), + [aux_sym__non_special_token_token1] = ACTIONS(2165), + [anon_sym_SQUOTE] = ACTIONS(2165), + [anon_sym_as] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), [anon_sym_const] = ACTIONS(2165), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_default] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(2165), + [anon_sym_fn] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_impl] = ACTIONS(2165), + [anon_sym_let] = ACTIONS(2165), + [anon_sym_loop] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_mod] = ACTIONS(2165), + [anon_sym_pub] = ACTIONS(2165), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_static] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2165), + [anon_sym_trait] = ACTIONS(2165), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_union] = ACTIONS(2165), + [anon_sym_unsafe] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_where] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [sym_mutable_specifier] = ACTIONS(2165), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2165), + [sym_super] = ACTIONS(2165), + [sym_crate] = ACTIONS(2165), [sym_metavariable] = ACTIONS(2167), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [516] = { + [507] = { + [sym_token_tree] = STATE(494), + [sym_token_repetition] = STATE(494), + [sym__literal] = STATE(494), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(494), [sym_identifier] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_RPAREN] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), [anon_sym_RBRACK] = ACTIONS(2171), - [anon_sym_DOLLAR] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2125), [anon_sym_u8] = ACTIONS(2169), [anon_sym_i8] = ACTIONS(2169), [anon_sym_u16] = ACTIONS(2169), @@ -59970,169 +58909,107 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2169), [anon_sym_while] = ACTIONS(2169), [sym_mutable_specifier] = ACTIONS(2169), - [sym_integer_literal] = ACTIONS(2171), - [aux_sym_string_literal_token1] = ACTIONS(2171), - [sym_char_literal] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(2169), - [anon_sym_false] = ACTIONS(2169), - [sym_line_comment] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), [sym_self] = ACTIONS(2169), [sym_super] = ACTIONS(2169), [sym_crate] = ACTIONS(2169), - [sym_metavariable] = ACTIONS(2171), - [sym_raw_string_literal] = ACTIONS(2171), - [sym_float_literal] = ACTIONS(2171), - [sym_block_comment] = ACTIONS(3), - }, - [517] = { - [sym_identifier] = ACTIONS(429), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(427), - [anon_sym_RBRACK] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_u8] = ACTIONS(429), - [anon_sym_i8] = ACTIONS(429), - [anon_sym_u16] = ACTIONS(429), - [anon_sym_i16] = ACTIONS(429), - [anon_sym_u32] = ACTIONS(429), - [anon_sym_i32] = ACTIONS(429), - [anon_sym_u64] = ACTIONS(429), - [anon_sym_i64] = ACTIONS(429), - [anon_sym_u128] = ACTIONS(429), - [anon_sym_i128] = ACTIONS(429), - [anon_sym_isize] = ACTIONS(429), - [anon_sym_usize] = ACTIONS(429), - [anon_sym_f32] = ACTIONS(429), - [anon_sym_f64] = ACTIONS(429), - [anon_sym_bool] = ACTIONS(429), - [anon_sym_str] = ACTIONS(429), - [anon_sym_char] = ACTIONS(429), - [aux_sym__non_special_token_token1] = ACTIONS(429), - [anon_sym_SQUOTE] = ACTIONS(429), - [anon_sym_as] = ACTIONS(429), - [anon_sym_async] = ACTIONS(429), - [anon_sym_await] = ACTIONS(429), - [anon_sym_break] = ACTIONS(429), - [anon_sym_const] = ACTIONS(429), - [anon_sym_continue] = ACTIONS(429), - [anon_sym_default] = ACTIONS(429), - [anon_sym_enum] = ACTIONS(429), - [anon_sym_fn] = ACTIONS(429), - [anon_sym_for] = ACTIONS(429), - [anon_sym_if] = ACTIONS(429), - [anon_sym_impl] = ACTIONS(429), - [anon_sym_let] = ACTIONS(429), - [anon_sym_loop] = ACTIONS(429), - [anon_sym_match] = ACTIONS(429), - [anon_sym_mod] = ACTIONS(429), - [anon_sym_pub] = ACTIONS(429), - [anon_sym_return] = ACTIONS(429), - [anon_sym_static] = ACTIONS(429), - [anon_sym_struct] = ACTIONS(429), - [anon_sym_trait] = ACTIONS(429), - [anon_sym_type] = ACTIONS(429), - [anon_sym_union] = ACTIONS(429), - [anon_sym_unsafe] = ACTIONS(429), - [anon_sym_use] = ACTIONS(429), - [anon_sym_where] = ACTIONS(429), - [anon_sym_while] = ACTIONS(429), - [sym_mutable_specifier] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [aux_sym_string_literal_token1] = ACTIONS(427), - [sym_char_literal] = ACTIONS(427), - [anon_sym_true] = ACTIONS(429), - [anon_sym_false] = ACTIONS(429), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_crate] = ACTIONS(429), - [sym_metavariable] = ACTIONS(427), - [sym_raw_string_literal] = ACTIONS(427), - [sym_float_literal] = ACTIONS(427), + [sym_metavariable] = ACTIONS(2173), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [518] = { - [sym_identifier] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), + [508] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), [anon_sym_RBRACK] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2173), - [anon_sym_u8] = ACTIONS(2173), - [anon_sym_i8] = ACTIONS(2173), - [anon_sym_u16] = ACTIONS(2173), - [anon_sym_i16] = ACTIONS(2173), - [anon_sym_u32] = ACTIONS(2173), - [anon_sym_i32] = ACTIONS(2173), - [anon_sym_u64] = ACTIONS(2173), - [anon_sym_i64] = ACTIONS(2173), - [anon_sym_u128] = ACTIONS(2173), - [anon_sym_i128] = ACTIONS(2173), - [anon_sym_isize] = ACTIONS(2173), - [anon_sym_usize] = ACTIONS(2173), - [anon_sym_f32] = ACTIONS(2173), - [anon_sym_f64] = ACTIONS(2173), - [anon_sym_bool] = ACTIONS(2173), - [anon_sym_str] = ACTIONS(2173), - [anon_sym_char] = ACTIONS(2173), - [aux_sym__non_special_token_token1] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_default] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_fn] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_impl] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_loop] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_mod] = ACTIONS(2173), - [anon_sym_pub] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_trait] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_union] = ACTIONS(2173), - [anon_sym_unsafe] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_where] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [sym_mutable_specifier] = ACTIONS(2173), - [sym_integer_literal] = ACTIONS(2175), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2175), - [anon_sym_true] = ACTIONS(2173), - [anon_sym_false] = ACTIONS(2173), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2173), - [sym_super] = ACTIONS(2173), - [sym_crate] = ACTIONS(2173), - [sym_metavariable] = ACTIONS(2175), - [sym_raw_string_literal] = ACTIONS(2175), - [sym_float_literal] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [519] = { + [509] = { + [sym_token_tree] = STATE(499), + [sym_token_repetition] = STATE(499), + [sym__literal] = STATE(499), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(499), [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_RBRACK] = ACTIONS(2179), - [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), [anon_sym_u8] = ACTIONS(2177), [anon_sym_i8] = ACTIONS(2177), [anon_sym_u16] = ACTIONS(2177), @@ -60180,29 +59057,181 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2177), [anon_sym_while] = ACTIONS(2177), [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2179), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [sym_line_comment] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), [sym_metavariable] = ACTIONS(2179), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [520] = { + [510] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [511] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_RPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [512] = { + [sym_token_tree] = STATE(508), + [sym_token_repetition] = STATE(508), + [sym__literal] = STATE(508), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(508), [sym_identifier] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_RPAREN] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), [anon_sym_RBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2125), [anon_sym_u8] = ACTIONS(2181), [anon_sym_i8] = ACTIONS(2181), [anon_sym_u16] = ACTIONS(2181), @@ -60250,46 +59279,789 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2181), [anon_sym_while] = ACTIONS(2181), [sym_mutable_specifier] = ACTIONS(2181), - [sym_integer_literal] = ACTIONS(2183), - [aux_sym_string_literal_token1] = ACTIONS(2183), - [sym_char_literal] = ACTIONS(2183), - [anon_sym_true] = ACTIONS(2181), - [anon_sym_false] = ACTIONS(2181), - [sym_line_comment] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), [sym_self] = ACTIONS(2181), [sym_super] = ACTIONS(2181), [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2183), - [sym_raw_string_literal] = ACTIONS(2183), - [sym_float_literal] = ACTIONS(2183), + [sym_metavariable] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [513] = { + [sym_token_tree] = STATE(500), + [sym_token_repetition] = STATE(500), + [sym__literal] = STATE(500), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2187), + [anon_sym_i8] = ACTIONS(2187), + [anon_sym_u16] = ACTIONS(2187), + [anon_sym_i16] = ACTIONS(2187), + [anon_sym_u32] = ACTIONS(2187), + [anon_sym_i32] = ACTIONS(2187), + [anon_sym_u64] = ACTIONS(2187), + [anon_sym_i64] = ACTIONS(2187), + [anon_sym_u128] = ACTIONS(2187), + [anon_sym_i128] = ACTIONS(2187), + [anon_sym_isize] = ACTIONS(2187), + [anon_sym_usize] = ACTIONS(2187), + [anon_sym_f32] = ACTIONS(2187), + [anon_sym_f64] = ACTIONS(2187), + [anon_sym_bool] = ACTIONS(2187), + [anon_sym_str] = ACTIONS(2187), + [anon_sym_char] = ACTIONS(2187), + [aux_sym__non_special_token_token1] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_default] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_impl] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_loop] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_mod] = ACTIONS(2187), + [anon_sym_pub] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_trait] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_use] = ACTIONS(2187), + [anon_sym_where] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [sym_mutable_specifier] = ACTIONS(2187), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_crate] = ACTIONS(2187), + [sym_metavariable] = ACTIONS(2189), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [514] = { + [sym_token_tree] = STATE(519), + [sym_token_repetition] = STATE(519), + [sym__literal] = STATE(519), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(519), + [sym_identifier] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_RPAREN] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2191), + [anon_sym_i8] = ACTIONS(2191), + [anon_sym_u16] = ACTIONS(2191), + [anon_sym_i16] = ACTIONS(2191), + [anon_sym_u32] = ACTIONS(2191), + [anon_sym_i32] = ACTIONS(2191), + [anon_sym_u64] = ACTIONS(2191), + [anon_sym_i64] = ACTIONS(2191), + [anon_sym_u128] = ACTIONS(2191), + [anon_sym_i128] = ACTIONS(2191), + [anon_sym_isize] = ACTIONS(2191), + [anon_sym_usize] = ACTIONS(2191), + [anon_sym_f32] = ACTIONS(2191), + [anon_sym_f64] = ACTIONS(2191), + [anon_sym_bool] = ACTIONS(2191), + [anon_sym_str] = ACTIONS(2191), + [anon_sym_char] = ACTIONS(2191), + [aux_sym__non_special_token_token1] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_impl] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_loop] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_mod] = ACTIONS(2191), + [anon_sym_pub] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_trait] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_use] = ACTIONS(2191), + [anon_sym_where] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [sym_mutable_specifier] = ACTIONS(2191), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_crate] = ACTIONS(2191), + [sym_metavariable] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [515] = { + [sym_token_tree] = STATE(510), + [sym_token_repetition] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2197), + [anon_sym_i8] = ACTIONS(2197), + [anon_sym_u16] = ACTIONS(2197), + [anon_sym_i16] = ACTIONS(2197), + [anon_sym_u32] = ACTIONS(2197), + [anon_sym_i32] = ACTIONS(2197), + [anon_sym_u64] = ACTIONS(2197), + [anon_sym_i64] = ACTIONS(2197), + [anon_sym_u128] = ACTIONS(2197), + [anon_sym_i128] = ACTIONS(2197), + [anon_sym_isize] = ACTIONS(2197), + [anon_sym_usize] = ACTIONS(2197), + [anon_sym_f32] = ACTIONS(2197), + [anon_sym_f64] = ACTIONS(2197), + [anon_sym_bool] = ACTIONS(2197), + [anon_sym_str] = ACTIONS(2197), + [anon_sym_char] = ACTIONS(2197), + [aux_sym__non_special_token_token1] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_impl] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_mod] = ACTIONS(2197), + [anon_sym_pub] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_trait] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_union] = ACTIONS(2197), + [anon_sym_unsafe] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_where] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [sym_mutable_specifier] = ACTIONS(2197), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_metavariable] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [516] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_RBRACK] = ACTIONS(2153), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [517] = { + [sym_token_tree] = STATE(511), + [sym_token_repetition] = STATE(511), + [sym__literal] = STATE(511), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(511), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_RPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2201), + [anon_sym_i8] = ACTIONS(2201), + [anon_sym_u16] = ACTIONS(2201), + [anon_sym_i16] = ACTIONS(2201), + [anon_sym_u32] = ACTIONS(2201), + [anon_sym_i32] = ACTIONS(2201), + [anon_sym_u64] = ACTIONS(2201), + [anon_sym_i64] = ACTIONS(2201), + [anon_sym_u128] = ACTIONS(2201), + [anon_sym_i128] = ACTIONS(2201), + [anon_sym_isize] = ACTIONS(2201), + [anon_sym_usize] = ACTIONS(2201), + [anon_sym_f32] = ACTIONS(2201), + [anon_sym_f64] = ACTIONS(2201), + [anon_sym_bool] = ACTIONS(2201), + [anon_sym_str] = ACTIONS(2201), + [anon_sym_char] = ACTIONS(2201), + [aux_sym__non_special_token_token1] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(2201), + [anon_sym_as] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_default] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_fn] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_impl] = ACTIONS(2201), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_loop] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_mod] = ACTIONS(2201), + [anon_sym_pub] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_struct] = ACTIONS(2201), + [anon_sym_trait] = ACTIONS(2201), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_union] = ACTIONS(2201), + [anon_sym_unsafe] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_where] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [sym_mutable_specifier] = ACTIONS(2201), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2201), + [sym_super] = ACTIONS(2201), + [sym_crate] = ACTIONS(2201), + [sym_metavariable] = ACTIONS(2203), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [518] = { + [sym_token_tree] = STATE(521), + [sym_token_repetition] = STATE(521), + [sym__literal] = STATE(521), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_RPAREN] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2205), + [anon_sym_i8] = ACTIONS(2205), + [anon_sym_u16] = ACTIONS(2205), + [anon_sym_i16] = ACTIONS(2205), + [anon_sym_u32] = ACTIONS(2205), + [anon_sym_i32] = ACTIONS(2205), + [anon_sym_u64] = ACTIONS(2205), + [anon_sym_i64] = ACTIONS(2205), + [anon_sym_u128] = ACTIONS(2205), + [anon_sym_i128] = ACTIONS(2205), + [anon_sym_isize] = ACTIONS(2205), + [anon_sym_usize] = ACTIONS(2205), + [anon_sym_f32] = ACTIONS(2205), + [anon_sym_f64] = ACTIONS(2205), + [anon_sym_bool] = ACTIONS(2205), + [anon_sym_str] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [aux_sym__non_special_token_token1] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_where] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [sym_mutable_specifier] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2207), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [519] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_RPAREN] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [520] = { + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [521] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1750), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [sym_token_tree] = STATE(440), + [sym_token_repetition] = STATE(440), + [sym__literal] = STATE(440), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_RPAREN] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [aux_sym__non_special_token_token1] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [sym_mutable_specifier] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [522] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_RBRACK] = ACTIONS(2121), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2211), + [anon_sym_i8] = ACTIONS(2211), + [anon_sym_u16] = ACTIONS(2211), + [anon_sym_i16] = ACTIONS(2211), + [anon_sym_u32] = ACTIONS(2211), + [anon_sym_i32] = ACTIONS(2211), + [anon_sym_u64] = ACTIONS(2211), + [anon_sym_i64] = ACTIONS(2211), + [anon_sym_u128] = ACTIONS(2211), + [anon_sym_i128] = ACTIONS(2211), + [anon_sym_isize] = ACTIONS(2211), + [anon_sym_usize] = ACTIONS(2211), + [anon_sym_f32] = ACTIONS(2211), + [anon_sym_f64] = ACTIONS(2211), + [anon_sym_bool] = ACTIONS(2211), + [anon_sym_str] = ACTIONS(2211), + [anon_sym_char] = ACTIONS(2211), + [aux_sym__non_special_token_token1] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2211), + [anon_sym_as] = ACTIONS(2211), + [anon_sym_async] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_default] = ACTIONS(2211), + [anon_sym_enum] = ACTIONS(2211), + [anon_sym_fn] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_impl] = ACTIONS(2211), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_loop] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_mod] = ACTIONS(2211), + [anon_sym_pub] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_static] = ACTIONS(2211), + [anon_sym_struct] = ACTIONS(2211), + [anon_sym_trait] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2211), + [anon_sym_union] = ACTIONS(2211), + [anon_sym_unsafe] = ACTIONS(2211), + [anon_sym_use] = ACTIONS(2211), + [anon_sym_where] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [sym_mutable_specifier] = ACTIONS(2211), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2211), + [sym_super] = ACTIONS(2211), + [sym_crate] = ACTIONS(2211), + [sym_metavariable] = ACTIONS(2213), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + [sym_block_comment] = ACTIONS(3), + }, + [523] = { + [sym_attribute_item] = STATE(609), + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_macro_invocation] = STATE(2406), + [sym_scoped_identifier] = STATE(1556), + [sym_scoped_type_identifier] = STATE(1971), + [sym_match_pattern] = STATE(2407), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2065), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_enum_variant_list_repeat1] = STATE(609), + [sym_identifier] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(2187), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), [anon_sym_i8] = ACTIONS(1084), @@ -60309,58 +60081,1900 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [522] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1755), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [524] = { + [sym_attribute_item] = STATE(609), + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_macro_invocation] = STATE(2406), + [sym_scoped_identifier] = STATE(1556), + [sym_scoped_type_identifier] = STATE(1971), + [sym_match_pattern] = STATE(2406), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2065), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [aux_sym_enum_variant_list_repeat1] = STATE(609), + [sym_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(680), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), + [sym_block_comment] = ACTIONS(3), + }, + [525] = { + [sym_attribute_item] = STATE(533), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(686), + [sym__type] = STATE(1742), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_enum_variant_list_repeat1] = STATE(533), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(2225), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [526] = { + [sym_attribute_item] = STATE(535), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(685), + [sym__type] = STATE(2008), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_enum_variant_list_repeat1] = STATE(535), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [527] = { + [sym_attribute_item] = STATE(535), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(685), + [sym__type] = STATE(2008), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_enum_variant_list_repeat1] = STATE(535), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [528] = { + [sym_attribute_item] = STATE(535), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(685), + [sym__type] = STATE(2008), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_enum_variant_list_repeat1] = STATE(535), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [529] = { + [sym_attribute_item] = STATE(535), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(685), + [sym__type] = STATE(2008), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_enum_variant_list_repeat1] = STATE(535), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [530] = { + [sym_attribute_item] = STATE(535), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(685), + [sym__type] = STATE(2008), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_enum_variant_list_repeat1] = STATE(535), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [531] = { + [sym_attribute_item] = STATE(535), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(685), + [sym__type] = STATE(2008), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_enum_variant_list_repeat1] = STATE(535), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [532] = { + [sym_attribute_item] = STATE(535), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(685), + [sym__type] = STATE(2008), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_enum_variant_list_repeat1] = STATE(535), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [533] = { + [sym_attribute_item] = STATE(1090), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(633), + [sym__type] = STATE(1823), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_enum_variant_list_repeat1] = STATE(1090), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [534] = { + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_RPAREN] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_RBRACK] = ACTIONS(2243), + [anon_sym_COLON] = ACTIONS(2245), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2241), + [anon_sym_i8] = ACTIONS(2241), + [anon_sym_u16] = ACTIONS(2241), + [anon_sym_i16] = ACTIONS(2241), + [anon_sym_u32] = ACTIONS(2241), + [anon_sym_i32] = ACTIONS(2241), + [anon_sym_u64] = ACTIONS(2241), + [anon_sym_i64] = ACTIONS(2241), + [anon_sym_u128] = ACTIONS(2241), + [anon_sym_i128] = ACTIONS(2241), + [anon_sym_isize] = ACTIONS(2241), + [anon_sym_usize] = ACTIONS(2241), + [anon_sym_f32] = ACTIONS(2241), + [anon_sym_f64] = ACTIONS(2241), + [anon_sym_bool] = ACTIONS(2241), + [anon_sym_str] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [aux_sym__non_special_token_token1] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_mod] = ACTIONS(2241), + [anon_sym_pub] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_union] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_where] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [sym_mutable_specifier] = ACTIONS(2241), + [sym_integer_literal] = ACTIONS(2243), + [aux_sym_string_literal_token1] = ACTIONS(2243), + [sym_char_literal] = ACTIONS(2243), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_crate] = ACTIONS(2241), + [sym_metavariable] = ACTIONS(2243), + [sym_raw_string_literal] = ACTIONS(2243), + [sym_float_literal] = ACTIONS(2243), + [sym_block_comment] = ACTIONS(3), + }, + [535] = { + [sym_attribute_item] = STATE(1090), + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(677), + [sym__type] = STATE(2066), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_enum_variant_list_repeat1] = STATE(1090), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [536] = { + [sym_identifier] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_RPAREN] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_RBRACK] = ACTIONS(2249), + [anon_sym_DOLLAR] = ACTIONS(2247), + [anon_sym_u8] = ACTIONS(2247), + [anon_sym_i8] = ACTIONS(2247), + [anon_sym_u16] = ACTIONS(2247), + [anon_sym_i16] = ACTIONS(2247), + [anon_sym_u32] = ACTIONS(2247), + [anon_sym_i32] = ACTIONS(2247), + [anon_sym_u64] = ACTIONS(2247), + [anon_sym_i64] = ACTIONS(2247), + [anon_sym_u128] = ACTIONS(2247), + [anon_sym_i128] = ACTIONS(2247), + [anon_sym_isize] = ACTIONS(2247), + [anon_sym_usize] = ACTIONS(2247), + [anon_sym_f32] = ACTIONS(2247), + [anon_sym_f64] = ACTIONS(2247), + [anon_sym_bool] = ACTIONS(2247), + [anon_sym_str] = ACTIONS(2247), + [anon_sym_char] = ACTIONS(2247), + [aux_sym__non_special_token_token1] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2247), + [anon_sym_as] = ACTIONS(2247), + [anon_sym_async] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2247), + [anon_sym_break] = ACTIONS(2247), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_continue] = ACTIONS(2247), + [anon_sym_default] = ACTIONS(2247), + [anon_sym_enum] = ACTIONS(2247), + [anon_sym_fn] = ACTIONS(2247), + [anon_sym_for] = ACTIONS(2247), + [anon_sym_if] = ACTIONS(2247), + [anon_sym_impl] = ACTIONS(2247), + [anon_sym_let] = ACTIONS(2247), + [anon_sym_loop] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2247), + [anon_sym_mod] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_static] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2247), + [anon_sym_trait] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(2247), + [anon_sym_unsafe] = ACTIONS(2247), + [anon_sym_use] = ACTIONS(2247), + [anon_sym_where] = ACTIONS(2247), + [anon_sym_while] = ACTIONS(2247), + [sym_mutable_specifier] = ACTIONS(2247), + [sym_integer_literal] = ACTIONS(2249), + [aux_sym_string_literal_token1] = ACTIONS(2249), + [sym_char_literal] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2247), + [anon_sym_false] = ACTIONS(2247), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2247), + [sym_super] = ACTIONS(2247), + [sym_crate] = ACTIONS(2247), + [sym_metavariable] = ACTIONS(2249), + [sym_raw_string_literal] = ACTIONS(2249), + [sym_float_literal] = ACTIONS(2249), + [sym_block_comment] = ACTIONS(3), + }, + [537] = { + [sym_identifier] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_RPAREN] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_RBRACK] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2251), + [anon_sym_u8] = ACTIONS(2251), + [anon_sym_i8] = ACTIONS(2251), + [anon_sym_u16] = ACTIONS(2251), + [anon_sym_i16] = ACTIONS(2251), + [anon_sym_u32] = ACTIONS(2251), + [anon_sym_i32] = ACTIONS(2251), + [anon_sym_u64] = ACTIONS(2251), + [anon_sym_i64] = ACTIONS(2251), + [anon_sym_u128] = ACTIONS(2251), + [anon_sym_i128] = ACTIONS(2251), + [anon_sym_isize] = ACTIONS(2251), + [anon_sym_usize] = ACTIONS(2251), + [anon_sym_f32] = ACTIONS(2251), + [anon_sym_f64] = ACTIONS(2251), + [anon_sym_bool] = ACTIONS(2251), + [anon_sym_str] = ACTIONS(2251), + [anon_sym_char] = ACTIONS(2251), + [aux_sym__non_special_token_token1] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_impl] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_mod] = ACTIONS(2251), + [anon_sym_pub] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_trait] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_union] = ACTIONS(2251), + [anon_sym_unsafe] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_where] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [sym_mutable_specifier] = ACTIONS(2251), + [sym_integer_literal] = ACTIONS(2253), + [aux_sym_string_literal_token1] = ACTIONS(2253), + [sym_char_literal] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(2251), + [anon_sym_false] = ACTIONS(2251), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), + [sym_metavariable] = ACTIONS(2253), + [sym_raw_string_literal] = ACTIONS(2253), + [sym_float_literal] = ACTIONS(2253), + [sym_block_comment] = ACTIONS(3), + }, + [538] = { + [sym_identifier] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_RPAREN] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2257), + [anon_sym_RBRACK] = ACTIONS(2257), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_u8] = ACTIONS(2255), + [anon_sym_i8] = ACTIONS(2255), + [anon_sym_u16] = ACTIONS(2255), + [anon_sym_i16] = ACTIONS(2255), + [anon_sym_u32] = ACTIONS(2255), + [anon_sym_i32] = ACTIONS(2255), + [anon_sym_u64] = ACTIONS(2255), + [anon_sym_i64] = ACTIONS(2255), + [anon_sym_u128] = ACTIONS(2255), + [anon_sym_i128] = ACTIONS(2255), + [anon_sym_isize] = ACTIONS(2255), + [anon_sym_usize] = ACTIONS(2255), + [anon_sym_f32] = ACTIONS(2255), + [anon_sym_f64] = ACTIONS(2255), + [anon_sym_bool] = ACTIONS(2255), + [anon_sym_str] = ACTIONS(2255), + [anon_sym_char] = ACTIONS(2255), + [aux_sym__non_special_token_token1] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_as] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_fn] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_impl] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_loop] = ACTIONS(2255), + [anon_sym_match] = ACTIONS(2255), + [anon_sym_mod] = ACTIONS(2255), + [anon_sym_pub] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_trait] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [anon_sym_unsafe] = ACTIONS(2255), + [anon_sym_use] = ACTIONS(2255), + [anon_sym_where] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [sym_mutable_specifier] = ACTIONS(2255), + [sym_integer_literal] = ACTIONS(2257), + [aux_sym_string_literal_token1] = ACTIONS(2257), + [sym_char_literal] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(2255), + [anon_sym_false] = ACTIONS(2255), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_crate] = ACTIONS(2255), + [sym_metavariable] = ACTIONS(2257), + [sym_raw_string_literal] = ACTIONS(2257), + [sym_float_literal] = ACTIONS(2257), + [sym_block_comment] = ACTIONS(3), + }, + [539] = { + [sym_identifier] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_RPAREN] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2261), + [anon_sym_RBRACK] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2259), + [anon_sym_u8] = ACTIONS(2259), + [anon_sym_i8] = ACTIONS(2259), + [anon_sym_u16] = ACTIONS(2259), + [anon_sym_i16] = ACTIONS(2259), + [anon_sym_u32] = ACTIONS(2259), + [anon_sym_i32] = ACTIONS(2259), + [anon_sym_u64] = ACTIONS(2259), + [anon_sym_i64] = ACTIONS(2259), + [anon_sym_u128] = ACTIONS(2259), + [anon_sym_i128] = ACTIONS(2259), + [anon_sym_isize] = ACTIONS(2259), + [anon_sym_usize] = ACTIONS(2259), + [anon_sym_f32] = ACTIONS(2259), + [anon_sym_f64] = ACTIONS(2259), + [anon_sym_bool] = ACTIONS(2259), + [anon_sym_str] = ACTIONS(2259), + [anon_sym_char] = ACTIONS(2259), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [anon_sym_fn] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_impl] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_loop] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2259), + [anon_sym_mod] = ACTIONS(2259), + [anon_sym_pub] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_struct] = ACTIONS(2259), + [anon_sym_trait] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_union] = ACTIONS(2259), + [anon_sym_unsafe] = ACTIONS(2259), + [anon_sym_use] = ACTIONS(2259), + [anon_sym_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), + [sym_integer_literal] = ACTIONS(2261), + [aux_sym_string_literal_token1] = ACTIONS(2261), + [sym_char_literal] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(2259), + [anon_sym_false] = ACTIONS(2259), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), + [sym_metavariable] = ACTIONS(2261), + [sym_raw_string_literal] = ACTIONS(2261), + [sym_float_literal] = ACTIONS(2261), + [sym_block_comment] = ACTIONS(3), + }, + [540] = { + [sym_identifier] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_RPAREN] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_RBRACK] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [aux_sym__non_special_token_token1] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(582), + [aux_sym_string_literal_token1] = ACTIONS(582), + [sym_char_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(584), + [anon_sym_false] = ACTIONS(584), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_metavariable] = ACTIONS(582), + [sym_raw_string_literal] = ACTIONS(582), + [sym_float_literal] = ACTIONS(582), + [sym_block_comment] = ACTIONS(3), + }, + [541] = { + [sym_function_modifiers] = STATE(2384), + [sym_const_parameter] = STATE(2092), + [sym_constrained_type_parameter] = STATE(1743), + [sym_optional_type_parameter] = STATE(2092), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(2058), + [sym_bracketed_type] = STATE(2327), + [sym_qualified_type] = STATE(2308), + [sym_lifetime] = STATE(1658), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(2267), + [sym_block_comment] = ACTIONS(3), + }, + [542] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1795), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(2271), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_COMMA] = ACTIONS(2275), + [anon_sym_ref] = ACTIONS(680), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), + [sym_block_comment] = ACTIONS(3), + }, + [543] = { + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_RBRACK] = ACTIONS(2279), + [anon_sym_DOLLAR] = ACTIONS(2277), + [anon_sym_u8] = ACTIONS(2277), + [anon_sym_i8] = ACTIONS(2277), + [anon_sym_u16] = ACTIONS(2277), + [anon_sym_i16] = ACTIONS(2277), + [anon_sym_u32] = ACTIONS(2277), + [anon_sym_i32] = ACTIONS(2277), + [anon_sym_u64] = ACTIONS(2277), + [anon_sym_i64] = ACTIONS(2277), + [anon_sym_u128] = ACTIONS(2277), + [anon_sym_i128] = ACTIONS(2277), + [anon_sym_isize] = ACTIONS(2277), + [anon_sym_usize] = ACTIONS(2277), + [anon_sym_f32] = ACTIONS(2277), + [anon_sym_f64] = ACTIONS(2277), + [anon_sym_bool] = ACTIONS(2277), + [anon_sym_str] = ACTIONS(2277), + [anon_sym_char] = ACTIONS(2277), + [aux_sym__non_special_token_token1] = ACTIONS(2277), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_as] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_await] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_default] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), + [anon_sym_fn] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_impl] = ACTIONS(2277), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_loop] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_mod] = ACTIONS(2277), + [anon_sym_pub] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_struct] = ACTIONS(2277), + [anon_sym_trait] = ACTIONS(2277), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_union] = ACTIONS(2277), + [anon_sym_unsafe] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_where] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [sym_mutable_specifier] = ACTIONS(2277), + [sym_integer_literal] = ACTIONS(2279), + [aux_sym_string_literal_token1] = ACTIONS(2279), + [sym_char_literal] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(2277), + [anon_sym_false] = ACTIONS(2277), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2277), + [sym_super] = ACTIONS(2277), + [sym_crate] = ACTIONS(2277), + [sym_metavariable] = ACTIONS(2279), + [sym_raw_string_literal] = ACTIONS(2279), + [sym_float_literal] = ACTIONS(2279), + [sym_block_comment] = ACTIONS(3), + }, + [544] = { + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_RBRACK] = ACTIONS(2283), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_u8] = ACTIONS(2281), + [anon_sym_i8] = ACTIONS(2281), + [anon_sym_u16] = ACTIONS(2281), + [anon_sym_i16] = ACTIONS(2281), + [anon_sym_u32] = ACTIONS(2281), + [anon_sym_i32] = ACTIONS(2281), + [anon_sym_u64] = ACTIONS(2281), + [anon_sym_i64] = ACTIONS(2281), + [anon_sym_u128] = ACTIONS(2281), + [anon_sym_i128] = ACTIONS(2281), + [anon_sym_isize] = ACTIONS(2281), + [anon_sym_usize] = ACTIONS(2281), + [anon_sym_f32] = ACTIONS(2281), + [anon_sym_f64] = ACTIONS(2281), + [anon_sym_bool] = ACTIONS(2281), + [anon_sym_str] = ACTIONS(2281), + [anon_sym_char] = ACTIONS(2281), + [aux_sym__non_special_token_token1] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_fn] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_impl] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_mod] = ACTIONS(2281), + [anon_sym_pub] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_struct] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), + [anon_sym_unsafe] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_where] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [sym_mutable_specifier] = ACTIONS(2281), + [sym_integer_literal] = ACTIONS(2283), + [aux_sym_string_literal_token1] = ACTIONS(2283), + [sym_char_literal] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_crate] = ACTIONS(2281), + [sym_metavariable] = ACTIONS(2283), + [sym_raw_string_literal] = ACTIONS(2283), + [sym_float_literal] = ACTIONS(2283), + [sym_block_comment] = ACTIONS(3), + }, + [545] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1820), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_RBRACK] = ACTIONS(792), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_ref] = ACTIONS(680), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), + [sym_block_comment] = ACTIONS(3), + }, + [546] = { + [sym_identifier] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_RPAREN] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_RBRACK] = ACTIONS(2287), + [anon_sym_DOLLAR] = ACTIONS(2285), + [anon_sym_u8] = ACTIONS(2285), + [anon_sym_i8] = ACTIONS(2285), + [anon_sym_u16] = ACTIONS(2285), + [anon_sym_i16] = ACTIONS(2285), + [anon_sym_u32] = ACTIONS(2285), + [anon_sym_i32] = ACTIONS(2285), + [anon_sym_u64] = ACTIONS(2285), + [anon_sym_i64] = ACTIONS(2285), + [anon_sym_u128] = ACTIONS(2285), + [anon_sym_i128] = ACTIONS(2285), + [anon_sym_isize] = ACTIONS(2285), + [anon_sym_usize] = ACTIONS(2285), + [anon_sym_f32] = ACTIONS(2285), + [anon_sym_f64] = ACTIONS(2285), + [anon_sym_bool] = ACTIONS(2285), + [anon_sym_str] = ACTIONS(2285), + [anon_sym_char] = ACTIONS(2285), + [aux_sym__non_special_token_token1] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_as] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [anon_sym_fn] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_impl] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_loop] = ACTIONS(2285), + [anon_sym_match] = ACTIONS(2285), + [anon_sym_mod] = ACTIONS(2285), + [anon_sym_pub] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_struct] = ACTIONS(2285), + [anon_sym_trait] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_union] = ACTIONS(2285), + [anon_sym_unsafe] = ACTIONS(2285), + [anon_sym_use] = ACTIONS(2285), + [anon_sym_where] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [sym_mutable_specifier] = ACTIONS(2285), + [sym_integer_literal] = ACTIONS(2287), + [aux_sym_string_literal_token1] = ACTIONS(2287), + [sym_char_literal] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(2285), + [anon_sym_false] = ACTIONS(2285), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_crate] = ACTIONS(2285), + [sym_metavariable] = ACTIONS(2287), + [sym_raw_string_literal] = ACTIONS(2287), + [sym_float_literal] = ACTIONS(2287), + [sym_block_comment] = ACTIONS(3), + }, + [547] = { + [sym_identifier] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_RPAREN] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_RBRACK] = ACTIONS(2291), + [anon_sym_DOLLAR] = ACTIONS(2289), + [anon_sym_u8] = ACTIONS(2289), + [anon_sym_i8] = ACTIONS(2289), + [anon_sym_u16] = ACTIONS(2289), + [anon_sym_i16] = ACTIONS(2289), + [anon_sym_u32] = ACTIONS(2289), + [anon_sym_i32] = ACTIONS(2289), + [anon_sym_u64] = ACTIONS(2289), + [anon_sym_i64] = ACTIONS(2289), + [anon_sym_u128] = ACTIONS(2289), + [anon_sym_i128] = ACTIONS(2289), + [anon_sym_isize] = ACTIONS(2289), + [anon_sym_usize] = ACTIONS(2289), + [anon_sym_f32] = ACTIONS(2289), + [anon_sym_f64] = ACTIONS(2289), + [anon_sym_bool] = ACTIONS(2289), + [anon_sym_str] = ACTIONS(2289), + [anon_sym_char] = ACTIONS(2289), + [aux_sym__non_special_token_token1] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [anon_sym_fn] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_impl] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_loop] = ACTIONS(2289), + [anon_sym_match] = ACTIONS(2289), + [anon_sym_mod] = ACTIONS(2289), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_struct] = ACTIONS(2289), + [anon_sym_trait] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(2289), + [anon_sym_unsafe] = ACTIONS(2289), + [anon_sym_use] = ACTIONS(2289), + [anon_sym_where] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [sym_mutable_specifier] = ACTIONS(2289), + [sym_integer_literal] = ACTIONS(2291), + [aux_sym_string_literal_token1] = ACTIONS(2291), + [sym_char_literal] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_crate] = ACTIONS(2289), + [sym_metavariable] = ACTIONS(2291), + [sym_raw_string_literal] = ACTIONS(2291), + [sym_float_literal] = ACTIONS(2291), + [sym_block_comment] = ACTIONS(3), + }, + [548] = { + [sym_identifier] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(437), + [anon_sym_RPAREN] = ACTIONS(437), + [anon_sym_LBRACE] = ACTIONS(437), + [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_RBRACK] = ACTIONS(437), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_u8] = ACTIONS(439), + [anon_sym_i8] = ACTIONS(439), + [anon_sym_u16] = ACTIONS(439), + [anon_sym_i16] = ACTIONS(439), + [anon_sym_u32] = ACTIONS(439), + [anon_sym_i32] = ACTIONS(439), + [anon_sym_u64] = ACTIONS(439), + [anon_sym_i64] = ACTIONS(439), + [anon_sym_u128] = ACTIONS(439), + [anon_sym_i128] = ACTIONS(439), + [anon_sym_isize] = ACTIONS(439), + [anon_sym_usize] = ACTIONS(439), + [anon_sym_f32] = ACTIONS(439), + [anon_sym_f64] = ACTIONS(439), + [anon_sym_bool] = ACTIONS(439), + [anon_sym_str] = ACTIONS(439), + [anon_sym_char] = ACTIONS(439), + [aux_sym__non_special_token_token1] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(439), + [anon_sym_as] = ACTIONS(439), + [anon_sym_async] = ACTIONS(439), + [anon_sym_await] = ACTIONS(439), + [anon_sym_break] = ACTIONS(439), + [anon_sym_const] = ACTIONS(439), + [anon_sym_continue] = ACTIONS(439), + [anon_sym_default] = ACTIONS(439), + [anon_sym_enum] = ACTIONS(439), + [anon_sym_fn] = ACTIONS(439), + [anon_sym_for] = ACTIONS(439), + [anon_sym_if] = ACTIONS(439), + [anon_sym_impl] = ACTIONS(439), + [anon_sym_let] = ACTIONS(439), + [anon_sym_loop] = ACTIONS(439), + [anon_sym_match] = ACTIONS(439), + [anon_sym_mod] = ACTIONS(439), + [anon_sym_pub] = ACTIONS(439), + [anon_sym_return] = ACTIONS(439), + [anon_sym_static] = ACTIONS(439), + [anon_sym_struct] = ACTIONS(439), + [anon_sym_trait] = ACTIONS(439), + [anon_sym_type] = ACTIONS(439), + [anon_sym_union] = ACTIONS(439), + [anon_sym_unsafe] = ACTIONS(439), + [anon_sym_use] = ACTIONS(439), + [anon_sym_where] = ACTIONS(439), + [anon_sym_while] = ACTIONS(439), + [sym_mutable_specifier] = ACTIONS(439), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(437), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(439), + [anon_sym_false] = ACTIONS(439), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(437), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), + [sym_block_comment] = ACTIONS(3), + }, + [549] = { + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_RPAREN] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2295), + [anon_sym_DOLLAR] = ACTIONS(2293), + [anon_sym_u8] = ACTIONS(2293), + [anon_sym_i8] = ACTIONS(2293), + [anon_sym_u16] = ACTIONS(2293), + [anon_sym_i16] = ACTIONS(2293), + [anon_sym_u32] = ACTIONS(2293), + [anon_sym_i32] = ACTIONS(2293), + [anon_sym_u64] = ACTIONS(2293), + [anon_sym_i64] = ACTIONS(2293), + [anon_sym_u128] = ACTIONS(2293), + [anon_sym_i128] = ACTIONS(2293), + [anon_sym_isize] = ACTIONS(2293), + [anon_sym_usize] = ACTIONS(2293), + [anon_sym_f32] = ACTIONS(2293), + [anon_sym_f64] = ACTIONS(2293), + [anon_sym_bool] = ACTIONS(2293), + [anon_sym_str] = ACTIONS(2293), + [anon_sym_char] = ACTIONS(2293), + [aux_sym__non_special_token_token1] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_as] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_fn] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_impl] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_loop] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_mod] = ACTIONS(2293), + [anon_sym_pub] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_struct] = ACTIONS(2293), + [anon_sym_trait] = ACTIONS(2293), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_union] = ACTIONS(2293), + [anon_sym_unsafe] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_where] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [sym_mutable_specifier] = ACTIONS(2293), + [sym_integer_literal] = ACTIONS(2295), + [aux_sym_string_literal_token1] = ACTIONS(2295), + [sym_char_literal] = ACTIONS(2295), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2293), + [sym_super] = ACTIONS(2293), + [sym_crate] = ACTIONS(2293), + [sym_metavariable] = ACTIONS(2295), + [sym_raw_string_literal] = ACTIONS(2295), + [sym_float_literal] = ACTIONS(2295), + [sym_block_comment] = ACTIONS(3), + }, + [550] = { + [sym_parameter] = STATE(2006), + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1775), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_RBRACK] = ACTIONS(810), [anon_sym_u8] = ACTIONS(1084), [anon_sym_i8] = ACTIONS(1084), [anon_sym_u16] = ACTIONS(1084), @@ -60379,57 +61993,337 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_union] = ACTIONS(2297), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), + [sym_mutable_specifier] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_PIPE] = ACTIONS(2301), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2303), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [523] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1786), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [551] = { + [sym_identifier] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_RPAREN] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_RBRACK] = ACTIONS(2307), + [anon_sym_DOLLAR] = ACTIONS(2305), + [anon_sym_u8] = ACTIONS(2305), + [anon_sym_i8] = ACTIONS(2305), + [anon_sym_u16] = ACTIONS(2305), + [anon_sym_i16] = ACTIONS(2305), + [anon_sym_u32] = ACTIONS(2305), + [anon_sym_i32] = ACTIONS(2305), + [anon_sym_u64] = ACTIONS(2305), + [anon_sym_i64] = ACTIONS(2305), + [anon_sym_u128] = ACTIONS(2305), + [anon_sym_i128] = ACTIONS(2305), + [anon_sym_isize] = ACTIONS(2305), + [anon_sym_usize] = ACTIONS(2305), + [anon_sym_f32] = ACTIONS(2305), + [anon_sym_f64] = ACTIONS(2305), + [anon_sym_bool] = ACTIONS(2305), + [anon_sym_str] = ACTIONS(2305), + [anon_sym_char] = ACTIONS(2305), + [aux_sym__non_special_token_token1] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_as] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_await] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_default] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), + [anon_sym_fn] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_impl] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_mod] = ACTIONS(2305), + [anon_sym_pub] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_struct] = ACTIONS(2305), + [anon_sym_trait] = ACTIONS(2305), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_union] = ACTIONS(2305), + [anon_sym_unsafe] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_where] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [sym_mutable_specifier] = ACTIONS(2305), + [sym_integer_literal] = ACTIONS(2307), + [aux_sym_string_literal_token1] = ACTIONS(2307), + [sym_char_literal] = ACTIONS(2307), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2305), + [sym_super] = ACTIONS(2305), + [sym_crate] = ACTIONS(2305), + [sym_metavariable] = ACTIONS(2307), + [sym_raw_string_literal] = ACTIONS(2307), + [sym_float_literal] = ACTIONS(2307), + [sym_block_comment] = ACTIONS(3), + }, + [552] = { + [sym_identifier] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_RPAREN] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_RBRACK] = ACTIONS(2311), + [anon_sym_DOLLAR] = ACTIONS(2309), + [anon_sym_u8] = ACTIONS(2309), + [anon_sym_i8] = ACTIONS(2309), + [anon_sym_u16] = ACTIONS(2309), + [anon_sym_i16] = ACTIONS(2309), + [anon_sym_u32] = ACTIONS(2309), + [anon_sym_i32] = ACTIONS(2309), + [anon_sym_u64] = ACTIONS(2309), + [anon_sym_i64] = ACTIONS(2309), + [anon_sym_u128] = ACTIONS(2309), + [anon_sym_i128] = ACTIONS(2309), + [anon_sym_isize] = ACTIONS(2309), + [anon_sym_usize] = ACTIONS(2309), + [anon_sym_f32] = ACTIONS(2309), + [anon_sym_f64] = ACTIONS(2309), + [anon_sym_bool] = ACTIONS(2309), + [anon_sym_str] = ACTIONS(2309), + [anon_sym_char] = ACTIONS(2309), + [aux_sym__non_special_token_token1] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2309), + [anon_sym_as] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_await] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_default] = ACTIONS(2309), + [anon_sym_enum] = ACTIONS(2309), + [anon_sym_fn] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_impl] = ACTIONS(2309), + [anon_sym_let] = ACTIONS(2309), + [anon_sym_loop] = ACTIONS(2309), + [anon_sym_match] = ACTIONS(2309), + [anon_sym_mod] = ACTIONS(2309), + [anon_sym_pub] = ACTIONS(2309), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2309), + [anon_sym_struct] = ACTIONS(2309), + [anon_sym_trait] = ACTIONS(2309), + [anon_sym_type] = ACTIONS(2309), + [anon_sym_union] = ACTIONS(2309), + [anon_sym_unsafe] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_where] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [sym_mutable_specifier] = ACTIONS(2309), + [sym_integer_literal] = ACTIONS(2311), + [aux_sym_string_literal_token1] = ACTIONS(2311), + [sym_char_literal] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2309), + [sym_super] = ACTIONS(2309), + [sym_crate] = ACTIONS(2309), + [sym_metavariable] = ACTIONS(2311), + [sym_raw_string_literal] = ACTIONS(2311), + [sym_float_literal] = ACTIONS(2311), + [sym_block_comment] = ACTIONS(3), + }, + [553] = { + [sym_identifier] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_RPAREN] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(2315), + [anon_sym_RBRACK] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_u8] = ACTIONS(2313), + [anon_sym_i8] = ACTIONS(2313), + [anon_sym_u16] = ACTIONS(2313), + [anon_sym_i16] = ACTIONS(2313), + [anon_sym_u32] = ACTIONS(2313), + [anon_sym_i32] = ACTIONS(2313), + [anon_sym_u64] = ACTIONS(2313), + [anon_sym_i64] = ACTIONS(2313), + [anon_sym_u128] = ACTIONS(2313), + [anon_sym_i128] = ACTIONS(2313), + [anon_sym_isize] = ACTIONS(2313), + [anon_sym_usize] = ACTIONS(2313), + [anon_sym_f32] = ACTIONS(2313), + [anon_sym_f64] = ACTIONS(2313), + [anon_sym_bool] = ACTIONS(2313), + [anon_sym_str] = ACTIONS(2313), + [anon_sym_char] = ACTIONS(2313), + [aux_sym__non_special_token_token1] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_as] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(2313), + [anon_sym_await] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_default] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_fn] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_impl] = ACTIONS(2313), + [anon_sym_let] = ACTIONS(2313), + [anon_sym_loop] = ACTIONS(2313), + [anon_sym_match] = ACTIONS(2313), + [anon_sym_mod] = ACTIONS(2313), + [anon_sym_pub] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2313), + [anon_sym_trait] = ACTIONS(2313), + [anon_sym_type] = ACTIONS(2313), + [anon_sym_union] = ACTIONS(2313), + [anon_sym_unsafe] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_where] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [sym_mutable_specifier] = ACTIONS(2313), + [sym_integer_literal] = ACTIONS(2315), + [aux_sym_string_literal_token1] = ACTIONS(2315), + [sym_char_literal] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2313), + [sym_super] = ACTIONS(2313), + [sym_crate] = ACTIONS(2313), + [sym_metavariable] = ACTIONS(2315), + [sym_raw_string_literal] = ACTIONS(2315), + [sym_float_literal] = ACTIONS(2315), + [sym_block_comment] = ACTIONS(3), + }, + [554] = { + [sym_identifier] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_RPAREN] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_RBRACK] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2317), + [anon_sym_u8] = ACTIONS(2317), + [anon_sym_i8] = ACTIONS(2317), + [anon_sym_u16] = ACTIONS(2317), + [anon_sym_i16] = ACTIONS(2317), + [anon_sym_u32] = ACTIONS(2317), + [anon_sym_i32] = ACTIONS(2317), + [anon_sym_u64] = ACTIONS(2317), + [anon_sym_i64] = ACTIONS(2317), + [anon_sym_u128] = ACTIONS(2317), + [anon_sym_i128] = ACTIONS(2317), + [anon_sym_isize] = ACTIONS(2317), + [anon_sym_usize] = ACTIONS(2317), + [anon_sym_f32] = ACTIONS(2317), + [anon_sym_f64] = ACTIONS(2317), + [anon_sym_bool] = ACTIONS(2317), + [anon_sym_str] = ACTIONS(2317), + [anon_sym_char] = ACTIONS(2317), + [aux_sym__non_special_token_token1] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_as] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_fn] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_impl] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_loop] = ACTIONS(2317), + [anon_sym_match] = ACTIONS(2317), + [anon_sym_mod] = ACTIONS(2317), + [anon_sym_pub] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_trait] = ACTIONS(2317), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [anon_sym_unsafe] = ACTIONS(2317), + [anon_sym_use] = ACTIONS(2317), + [anon_sym_where] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [sym_mutable_specifier] = ACTIONS(2317), + [sym_integer_literal] = ACTIONS(2319), + [aux_sym_string_literal_token1] = ACTIONS(2319), + [sym_char_literal] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_crate] = ACTIONS(2317), + [sym_metavariable] = ACTIONS(2319), + [sym_raw_string_literal] = ACTIONS(2319), + [sym_float_literal] = ACTIONS(2319), + [sym_block_comment] = ACTIONS(3), + }, + [555] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(2191), + [anon_sym_RPAREN] = ACTIONS(2321), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), [anon_sym_i8] = ACTIONS(1084), @@ -60449,197 +62343,127 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2193), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_COMMA] = ACTIONS(822), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [524] = { - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_RBRACK] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2195), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2197), - [aux_sym_string_literal_token1] = ACTIONS(2197), - [sym_char_literal] = ACTIONS(2197), - [anon_sym_true] = ACTIONS(2195), - [anon_sym_false] = ACTIONS(2195), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_metavariable] = ACTIONS(2197), - [sym_raw_string_literal] = ACTIONS(2197), - [sym_float_literal] = ACTIONS(2197), - [sym_block_comment] = ACTIONS(3), - }, - [525] = { - [sym_identifier] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2201), - [anon_sym_RPAREN] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_RBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2199), - [anon_sym_i8] = ACTIONS(2199), - [anon_sym_u16] = ACTIONS(2199), - [anon_sym_i16] = ACTIONS(2199), - [anon_sym_u32] = ACTIONS(2199), - [anon_sym_i32] = ACTIONS(2199), - [anon_sym_u64] = ACTIONS(2199), - [anon_sym_i64] = ACTIONS(2199), - [anon_sym_u128] = ACTIONS(2199), - [anon_sym_i128] = ACTIONS(2199), - [anon_sym_isize] = ACTIONS(2199), - [anon_sym_usize] = ACTIONS(2199), - [anon_sym_f32] = ACTIONS(2199), - [anon_sym_f64] = ACTIONS(2199), - [anon_sym_bool] = ACTIONS(2199), - [anon_sym_str] = ACTIONS(2199), - [anon_sym_char] = ACTIONS(2199), - [aux_sym__non_special_token_token1] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2199), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_async] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_default] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [anon_sym_fn] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_impl] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_loop] = ACTIONS(2199), - [anon_sym_match] = ACTIONS(2199), - [anon_sym_mod] = ACTIONS(2199), - [anon_sym_pub] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_struct] = ACTIONS(2199), - [anon_sym_trait] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_union] = ACTIONS(2199), - [anon_sym_unsafe] = ACTIONS(2199), - [anon_sym_use] = ACTIONS(2199), - [anon_sym_where] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [sym_mutable_specifier] = ACTIONS(2199), - [sym_integer_literal] = ACTIONS(2201), - [aux_sym_string_literal_token1] = ACTIONS(2201), - [sym_char_literal] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(2199), - [anon_sym_false] = ACTIONS(2199), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2199), - [sym_super] = ACTIONS(2199), - [sym_crate] = ACTIONS(2199), - [sym_metavariable] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2201), - [sym_float_literal] = ACTIONS(2201), + [556] = { + [sym_identifier] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(2325), + [anon_sym_RPAREN] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2325), + [anon_sym_RBRACE] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_RBRACK] = ACTIONS(2325), + [anon_sym_DOLLAR] = ACTIONS(2323), + [anon_sym_u8] = ACTIONS(2323), + [anon_sym_i8] = ACTIONS(2323), + [anon_sym_u16] = ACTIONS(2323), + [anon_sym_i16] = ACTIONS(2323), + [anon_sym_u32] = ACTIONS(2323), + [anon_sym_i32] = ACTIONS(2323), + [anon_sym_u64] = ACTIONS(2323), + [anon_sym_i64] = ACTIONS(2323), + [anon_sym_u128] = ACTIONS(2323), + [anon_sym_i128] = ACTIONS(2323), + [anon_sym_isize] = ACTIONS(2323), + [anon_sym_usize] = ACTIONS(2323), + [anon_sym_f32] = ACTIONS(2323), + [anon_sym_f64] = ACTIONS(2323), + [anon_sym_bool] = ACTIONS(2323), + [anon_sym_str] = ACTIONS(2323), + [anon_sym_char] = ACTIONS(2323), + [aux_sym__non_special_token_token1] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_as] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_await] = ACTIONS(2323), + [anon_sym_break] = ACTIONS(2323), + [anon_sym_const] = ACTIONS(2323), + [anon_sym_continue] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2323), + [anon_sym_enum] = ACTIONS(2323), + [anon_sym_fn] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_impl] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(2323), + [anon_sym_loop] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_mod] = ACTIONS(2323), + [anon_sym_pub] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_static] = ACTIONS(2323), + [anon_sym_struct] = ACTIONS(2323), + [anon_sym_trait] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2323), + [anon_sym_union] = ACTIONS(2323), + [anon_sym_unsafe] = ACTIONS(2323), + [anon_sym_use] = ACTIONS(2323), + [anon_sym_where] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [sym_mutable_specifier] = ACTIONS(2323), + [sym_integer_literal] = ACTIONS(2325), + [aux_sym_string_literal_token1] = ACTIONS(2325), + [sym_char_literal] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(2323), + [anon_sym_false] = ACTIONS(2323), + [sym_line_comment] = ACTIONS(1065), + [sym_self] = ACTIONS(2323), + [sym_super] = ACTIONS(2323), + [sym_crate] = ACTIONS(2323), + [sym_metavariable] = ACTIONS(2325), + [sym_raw_string_literal] = ACTIONS(2325), + [sym_float_literal] = ACTIONS(2325), [sym_block_comment] = ACTIONS(3), }, - [526] = { - [sym_parameter] = STATE(1914), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1768), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [557] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1831), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(2327), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), [anon_sym_i8] = ACTIONS(1084), @@ -60659,477 +62483,125 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_PIPE] = ACTIONS(2207), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [527] = { - [sym_identifier] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_RPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_RBRACK] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(2211), - [anon_sym_i8] = ACTIONS(2211), - [anon_sym_u16] = ACTIONS(2211), - [anon_sym_i16] = ACTIONS(2211), - [anon_sym_u32] = ACTIONS(2211), - [anon_sym_i32] = ACTIONS(2211), - [anon_sym_u64] = ACTIONS(2211), - [anon_sym_i64] = ACTIONS(2211), - [anon_sym_u128] = ACTIONS(2211), - [anon_sym_i128] = ACTIONS(2211), - [anon_sym_isize] = ACTIONS(2211), - [anon_sym_usize] = ACTIONS(2211), - [anon_sym_f32] = ACTIONS(2211), - [anon_sym_f64] = ACTIONS(2211), - [anon_sym_bool] = ACTIONS(2211), - [anon_sym_str] = ACTIONS(2211), - [anon_sym_char] = ACTIONS(2211), - [aux_sym__non_special_token_token1] = ACTIONS(2211), - [anon_sym_SQUOTE] = ACTIONS(2211), - [anon_sym_as] = ACTIONS(2211), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_await] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_enum] = ACTIONS(2211), - [anon_sym_fn] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_impl] = ACTIONS(2211), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_loop] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_mod] = ACTIONS(2211), - [anon_sym_pub] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2211), - [anon_sym_trait] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_union] = ACTIONS(2211), - [anon_sym_unsafe] = ACTIONS(2211), - [anon_sym_use] = ACTIONS(2211), - [anon_sym_where] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [sym_mutable_specifier] = ACTIONS(2211), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2213), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2211), - [anon_sym_false] = ACTIONS(2211), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2211), - [sym_super] = ACTIONS(2211), - [sym_crate] = ACTIONS(2211), - [sym_metavariable] = ACTIONS(2213), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [528] = { + [558] = { + [sym_function_modifiers] = STATE(2384), + [sym_higher_ranked_trait_bound] = STATE(1524), + [sym_removed_trait_bound] = STATE(1524), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1526), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(1527), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2217), - [anon_sym_RBRACK] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2215), - [anon_sym_u8] = ACTIONS(2215), - [anon_sym_i8] = ACTIONS(2215), - [anon_sym_u16] = ACTIONS(2215), - [anon_sym_i16] = ACTIONS(2215), - [anon_sym_u32] = ACTIONS(2215), - [anon_sym_i32] = ACTIONS(2215), - [anon_sym_u64] = ACTIONS(2215), - [anon_sym_i64] = ACTIONS(2215), - [anon_sym_u128] = ACTIONS(2215), - [anon_sym_i128] = ACTIONS(2215), - [anon_sym_isize] = ACTIONS(2215), - [anon_sym_usize] = ACTIONS(2215), - [anon_sym_f32] = ACTIONS(2215), - [anon_sym_f64] = ACTIONS(2215), - [anon_sym_bool] = ACTIONS(2215), - [anon_sym_str] = ACTIONS(2215), - [anon_sym_char] = ACTIONS(2215), - [aux_sym__non_special_token_token1] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2215), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_async] = ACTIONS(2215), - [anon_sym_await] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_default] = ACTIONS(2215), - [anon_sym_enum] = ACTIONS(2215), - [anon_sym_fn] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_impl] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_loop] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_mod] = ACTIONS(2215), - [anon_sym_pub] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_static] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2215), - [anon_sym_trait] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2215), - [anon_sym_union] = ACTIONS(2215), - [anon_sym_unsafe] = ACTIONS(2215), - [anon_sym_use] = ACTIONS(2215), - [anon_sym_where] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [sym_mutable_specifier] = ACTIONS(2215), - [sym_integer_literal] = ACTIONS(2217), - [aux_sym_string_literal_token1] = ACTIONS(2217), - [sym_char_literal] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2215), - [anon_sym_false] = ACTIONS(2215), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2215), - [sym_super] = ACTIONS(2215), - [sym_crate] = ACTIONS(2215), - [sym_metavariable] = ACTIONS(2217), - [sym_raw_string_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2217), - [sym_block_comment] = ACTIONS(3), - }, - [529] = { - [sym_identifier] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_RBRACK] = ACTIONS(2221), - [anon_sym_DOLLAR] = ACTIONS(2219), - [anon_sym_u8] = ACTIONS(2219), - [anon_sym_i8] = ACTIONS(2219), - [anon_sym_u16] = ACTIONS(2219), - [anon_sym_i16] = ACTIONS(2219), - [anon_sym_u32] = ACTIONS(2219), - [anon_sym_i32] = ACTIONS(2219), - [anon_sym_u64] = ACTIONS(2219), - [anon_sym_i64] = ACTIONS(2219), - [anon_sym_u128] = ACTIONS(2219), - [anon_sym_i128] = ACTIONS(2219), - [anon_sym_isize] = ACTIONS(2219), - [anon_sym_usize] = ACTIONS(2219), - [anon_sym_f32] = ACTIONS(2219), - [anon_sym_f64] = ACTIONS(2219), - [anon_sym_bool] = ACTIONS(2219), - [anon_sym_str] = ACTIONS(2219), - [anon_sym_char] = ACTIONS(2219), - [aux_sym__non_special_token_token1] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_QMARK] = ACTIONS(2329), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2219), - [anon_sym_as] = ACTIONS(2219), - [anon_sym_async] = ACTIONS(2219), - [anon_sym_await] = ACTIONS(2219), - [anon_sym_break] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2219), - [anon_sym_continue] = ACTIONS(2219), - [anon_sym_default] = ACTIONS(2219), - [anon_sym_enum] = ACTIONS(2219), - [anon_sym_fn] = ACTIONS(2219), - [anon_sym_for] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2219), - [anon_sym_impl] = ACTIONS(2219), - [anon_sym_let] = ACTIONS(2219), - [anon_sym_loop] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2219), - [anon_sym_mod] = ACTIONS(2219), - [anon_sym_pub] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2219), - [anon_sym_static] = ACTIONS(2219), - [anon_sym_struct] = ACTIONS(2219), - [anon_sym_trait] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2219), - [anon_sym_union] = ACTIONS(2219), - [anon_sym_unsafe] = ACTIONS(2219), - [anon_sym_use] = ACTIONS(2219), - [anon_sym_where] = ACTIONS(2219), - [anon_sym_while] = ACTIONS(2219), - [sym_mutable_specifier] = ACTIONS(2219), - [sym_integer_literal] = ACTIONS(2221), - [aux_sym_string_literal_token1] = ACTIONS(2221), - [sym_char_literal] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2219), - [sym_super] = ACTIONS(2219), - [sym_crate] = ACTIONS(2219), - [sym_metavariable] = ACTIONS(2221), - [sym_raw_string_literal] = ACTIONS(2221), - [sym_float_literal] = ACTIONS(2221), - [sym_block_comment] = ACTIONS(3), - }, - [530] = { - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_RBRACK] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_u8] = ACTIONS(2223), - [anon_sym_i8] = ACTIONS(2223), - [anon_sym_u16] = ACTIONS(2223), - [anon_sym_i16] = ACTIONS(2223), - [anon_sym_u32] = ACTIONS(2223), - [anon_sym_i32] = ACTIONS(2223), - [anon_sym_u64] = ACTIONS(2223), - [anon_sym_i64] = ACTIONS(2223), - [anon_sym_u128] = ACTIONS(2223), - [anon_sym_i128] = ACTIONS(2223), - [anon_sym_isize] = ACTIONS(2223), - [anon_sym_usize] = ACTIONS(2223), - [anon_sym_f32] = ACTIONS(2223), - [anon_sym_f64] = ACTIONS(2223), - [anon_sym_bool] = ACTIONS(2223), - [anon_sym_str] = ACTIONS(2223), - [anon_sym_char] = ACTIONS(2223), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_default] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_fn] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_impl] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_loop] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_mod] = ACTIONS(2223), - [anon_sym_pub] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_trait] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_union] = ACTIONS(2223), - [anon_sym_unsafe] = ACTIONS(2223), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2225), - [aux_sym_string_literal_token1] = ACTIONS(2225), - [sym_char_literal] = ACTIONS(2225), - [anon_sym_true] = ACTIONS(2223), - [anon_sym_false] = ACTIONS(2223), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_metavariable] = ACTIONS(2225), - [sym_raw_string_literal] = ACTIONS(2225), - [sym_float_literal] = ACTIONS(2225), - [sym_block_comment] = ACTIONS(3), - }, - [531] = { - [sym_identifier] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_RBRACE] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(596), - [anon_sym_DOLLAR] = ACTIONS(598), - [anon_sym_u8] = ACTIONS(598), - [anon_sym_i8] = ACTIONS(598), - [anon_sym_u16] = ACTIONS(598), - [anon_sym_i16] = ACTIONS(598), - [anon_sym_u32] = ACTIONS(598), - [anon_sym_i32] = ACTIONS(598), - [anon_sym_u64] = ACTIONS(598), - [anon_sym_i64] = ACTIONS(598), - [anon_sym_u128] = ACTIONS(598), - [anon_sym_i128] = ACTIONS(598), - [anon_sym_isize] = ACTIONS(598), - [anon_sym_usize] = ACTIONS(598), - [anon_sym_f32] = ACTIONS(598), - [anon_sym_f64] = ACTIONS(598), - [anon_sym_bool] = ACTIONS(598), - [anon_sym_str] = ACTIONS(598), - [anon_sym_char] = ACTIONS(598), - [aux_sym__non_special_token_token1] = ACTIONS(598), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_as] = ACTIONS(598), - [anon_sym_async] = ACTIONS(598), - [anon_sym_await] = ACTIONS(598), - [anon_sym_break] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(598), - [anon_sym_default] = ACTIONS(598), - [anon_sym_enum] = ACTIONS(598), - [anon_sym_fn] = ACTIONS(598), - [anon_sym_for] = ACTIONS(598), - [anon_sym_if] = ACTIONS(598), - [anon_sym_impl] = ACTIONS(598), - [anon_sym_let] = ACTIONS(598), - [anon_sym_loop] = ACTIONS(598), - [anon_sym_match] = ACTIONS(598), - [anon_sym_mod] = ACTIONS(598), - [anon_sym_pub] = ACTIONS(598), - [anon_sym_return] = ACTIONS(598), - [anon_sym_static] = ACTIONS(598), - [anon_sym_struct] = ACTIONS(598), - [anon_sym_trait] = ACTIONS(598), - [anon_sym_type] = ACTIONS(598), - [anon_sym_union] = ACTIONS(598), - [anon_sym_unsafe] = ACTIONS(598), - [anon_sym_use] = ACTIONS(598), - [anon_sym_where] = ACTIONS(598), - [anon_sym_while] = ACTIONS(598), - [sym_mutable_specifier] = ACTIONS(598), - [sym_integer_literal] = ACTIONS(596), - [aux_sym_string_literal_token1] = ACTIONS(596), - [sym_char_literal] = ACTIONS(596), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(598), - [sym_super] = ACTIONS(598), - [sym_crate] = ACTIONS(598), - [sym_metavariable] = ACTIONS(596), - [sym_raw_string_literal] = ACTIONS(596), - [sym_float_literal] = ACTIONS(596), - [sym_block_comment] = ACTIONS(3), - }, - [532] = { - [sym_identifier] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_RBRACK] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u128] = ACTIONS(2227), - [anon_sym_i128] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_str] = ACTIONS(2227), - [anon_sym_char] = ACTIONS(2227), - [aux_sym__non_special_token_token1] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_as] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [anon_sym_fn] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_impl] = ACTIONS(2227), - [anon_sym_let] = ACTIONS(2227), - [anon_sym_loop] = ACTIONS(2227), - [anon_sym_match] = ACTIONS(2227), - [anon_sym_mod] = ACTIONS(2227), - [anon_sym_pub] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_trait] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2227), - [anon_sym_unsafe] = ACTIONS(2227), - [anon_sym_use] = ACTIONS(2227), - [anon_sym_where] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [sym_mutable_specifier] = ACTIONS(2227), - [sym_integer_literal] = ACTIONS(2229), - [aux_sym_string_literal_token1] = ACTIONS(2229), - [sym_char_literal] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2227), - [anon_sym_false] = ACTIONS(2227), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_crate] = ACTIONS(2227), - [sym_metavariable] = ACTIONS(2229), - [sym_raw_string_literal] = ACTIONS(2229), - [sym_float_literal] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [533] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [559] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1831), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(2231), + [anon_sym_RPAREN] = ACTIONS(2333), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), [anon_sym_i8] = ACTIONS(1084), @@ -61149,195 +62621,195 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [534] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_u8] = ACTIONS(1084), - [anon_sym_i8] = ACTIONS(1084), - [anon_sym_u16] = ACTIONS(1084), - [anon_sym_i16] = ACTIONS(1084), - [anon_sym_u32] = ACTIONS(1084), - [anon_sym_i32] = ACTIONS(1084), - [anon_sym_u64] = ACTIONS(1084), - [anon_sym_i64] = ACTIONS(1084), - [anon_sym_u128] = ACTIONS(1084), - [anon_sym_i128] = ACTIONS(1084), - [anon_sym_isize] = ACTIONS(1084), - [anon_sym_usize] = ACTIONS(1084), - [anon_sym_f32] = ACTIONS(1084), - [anon_sym_f64] = ACTIONS(1084), - [anon_sym_bool] = ACTIONS(1084), - [anon_sym_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [560] = { + [sym_function_modifiers] = STATE(2384), + [sym_higher_ranked_trait_bound] = STATE(1590), + [sym_removed_trait_bound] = STATE(1590), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1592), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(1595), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_QMARK] = ACTIONS(2329), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [535] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(2235), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_u8] = ACTIONS(1084), - [anon_sym_i8] = ACTIONS(1084), - [anon_sym_u16] = ACTIONS(1084), - [anon_sym_i16] = ACTIONS(1084), - [anon_sym_u32] = ACTIONS(1084), - [anon_sym_i32] = ACTIONS(1084), - [anon_sym_u64] = ACTIONS(1084), - [anon_sym_i64] = ACTIONS(1084), - [anon_sym_u128] = ACTIONS(1084), - [anon_sym_i128] = ACTIONS(1084), - [anon_sym_isize] = ACTIONS(1084), - [anon_sym_usize] = ACTIONS(1084), - [anon_sym_f32] = ACTIONS(1084), - [anon_sym_f64] = ACTIONS(1084), - [anon_sym_bool] = ACTIONS(1084), - [anon_sym_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [561] = { + [sym_function_modifiers] = STATE(2384), + [sym_higher_ranked_trait_bound] = STATE(1590), + [sym_removed_trait_bound] = STATE(1590), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1601), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(1595), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_QMARK] = ACTIONS(2329), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [536] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [562] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1831), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(2335), [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_RBRACK] = ACTIONS(2237), [anon_sym_u8] = ACTIONS(1084), [anon_sym_i8] = ACTIONS(1084), [anon_sym_u16] = ACTIONS(1084), @@ -61356,195 +62828,126 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [537] = { - [sym_function_modifiers] = STATE(2308), - [sym_higher_ranked_trait_bound] = STATE(1487), - [sym_removed_trait_bound] = STATE(1487), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1485), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(1483), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(2239), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [538] = { - [sym_function_modifiers] = STATE(2308), - [sym_higher_ranked_trait_bound] = STATE(1539), - [sym_removed_trait_bound] = STATE(1539), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1538), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(1537), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(2239), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [563] = { + [sym_function_modifiers] = STATE(2384), + [sym_higher_ranked_trait_bound] = STATE(1590), + [sym_removed_trait_bound] = STATE(1590), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1601), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(1602), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_QMARK] = ACTIONS(2329), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [539] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [564] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1831), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(2243), [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_RBRACK] = ACTIONS(2337), [anon_sym_u8] = ACTIONS(1084), [anon_sym_i8] = ACTIONS(1084), [anon_sym_u16] = ACTIONS(1084), @@ -61563,57 +62966,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [540] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [565] = { + [sym_parameter] = STATE(2261), + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1930), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_RBRACK] = ACTIONS(2245), [anon_sym_u8] = ACTIONS(1084), [anon_sym_i8] = ACTIONS(1084), [anon_sym_u16] = ACTIONS(1084), @@ -61632,194 +63035,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_union] = ACTIONS(2297), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), + [sym_mutable_specifier] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2303), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [541] = { - [sym_function_modifiers] = STATE(2308), - [sym_higher_ranked_trait_bound] = STATE(1539), - [sym_removed_trait_bound] = STATE(1539), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1535), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(1534), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(2239), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [542] = { - [sym_function_modifiers] = STATE(2308), - [sym_higher_ranked_trait_bound] = STATE(1539), - [sym_removed_trait_bound] = STATE(1539), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1535), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(1537), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(2239), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [543] = { - [sym_parameter] = STATE(2102), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1824), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [566] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1831), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(2339), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), [anon_sym_i8] = ACTIONS(1084), @@ -61839,56 +63104,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [544] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1383), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [567] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1831), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_RBRACK] = ACTIONS(2341), [anon_sym_u8] = ACTIONS(1084), [anon_sym_i8] = ACTIONS(1084), [anon_sym_u16] = ACTIONS(1084), @@ -61907,54 +63173,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [545] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1858), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [568] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1806), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -61975,54 +63241,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2343), + [anon_sym_union] = ACTIONS(2343), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2345), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [546] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [569] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2232), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -62043,54 +63309,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [547] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2099), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [570] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2173), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -62111,122 +63377,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [548] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1325), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(2249), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2251), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [549] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1708), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [571] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1457), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -62247,54 +63445,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [550] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2114), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [572] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1447), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -62315,54 +63513,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [551] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2133), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [573] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2160), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -62383,54 +63581,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [552] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2079), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [574] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2149), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -62451,54 +63649,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [553] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2217), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [575] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1805), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -62519,54 +63717,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(2349), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [554] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2080), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [576] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2246), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -62587,190 +63785,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [555] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(2253), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [556] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1015), - [sym_bracketed_type] = STATE(2391), - [sym_lifetime] = STATE(2247), - [sym_array_type] = STATE(1060), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1060), - [sym_tuple_type] = STATE(1060), - [sym_unit_type] = STATE(1060), - [sym_generic_type] = STATE(799), - [sym_generic_type_with_turbofish] = STATE(2392), - [sym_bounded_type] = STATE(1060), - [sym_reference_type] = STATE(1060), - [sym_pointer_type] = STATE(1060), - [sym_empty_type] = STATE(1060), - [sym_abstract_type] = STATE(1060), - [sym_dynamic_type] = STATE(1060), - [sym_macro_invocation] = STATE(1060), - [sym_scoped_identifier] = STATE(2222), - [sym_scoped_type_identifier] = STATE(715), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2263), - [anon_sym_u8] = ACTIONS(2265), - [anon_sym_i8] = ACTIONS(2265), - [anon_sym_u16] = ACTIONS(2265), - [anon_sym_i16] = ACTIONS(2265), - [anon_sym_u32] = ACTIONS(2265), - [anon_sym_i32] = ACTIONS(2265), - [anon_sym_u64] = ACTIONS(2265), - [anon_sym_i64] = ACTIONS(2265), - [anon_sym_u128] = ACTIONS(2265), - [anon_sym_i128] = ACTIONS(2265), - [anon_sym_isize] = ACTIONS(2265), - [anon_sym_usize] = ACTIONS(2265), - [anon_sym_f32] = ACTIONS(2265), - [anon_sym_f64] = ACTIONS(2265), - [anon_sym_bool] = ACTIONS(2265), - [anon_sym_str] = ACTIONS(2265), - [anon_sym_char] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(2267), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_dyn] = ACTIONS(2281), - [sym_mutable_specifier] = ACTIONS(2283), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2285), - [sym_super] = ACTIONS(2285), - [sym_crate] = ACTIONS(2285), - [sym_metavariable] = ACTIONS(2287), - [sym_block_comment] = ACTIONS(3), - }, - [557] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1775), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [577] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1975), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -62791,54 +63853,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(2289), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [558] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2077), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [578] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1770), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -62859,54 +63921,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [559] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2148), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [579] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1430), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -62927,54 +63989,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [560] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2019), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [580] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1788), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -62995,54 +64057,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(2351), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [561] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1763), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [581] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2183), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -63063,54 +64125,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2293), + [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [562] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2082), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [582] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2202), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -63131,54 +64193,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [563] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2219), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [583] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -63199,54 +64261,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [564] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2088), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [584] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1806), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -63267,54 +64329,122 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2343), + [anon_sym_union] = ACTIONS(2343), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2353), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [565] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1753), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [585] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1367), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(2357), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2359), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [586] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2145), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -63335,54 +64465,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [566] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2097), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [587] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1426), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -63403,54 +64533,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [567] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1404), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [588] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2144), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -63471,122 +64601,122 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [568] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1325), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [589] = { + [sym_function_modifiers] = STATE(2333), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1029), + [sym_bracketed_type] = STATE(2436), + [sym_lifetime] = STATE(2443), + [sym_array_type] = STATE(1039), + [sym_for_lifetimes] = STATE(1258), + [sym_function_type] = STATE(1039), + [sym_tuple_type] = STATE(1039), + [sym_unit_type] = STATE(1039), + [sym_generic_type] = STATE(788), + [sym_generic_type_with_turbofish] = STATE(2437), + [sym_bounded_type] = STATE(1039), + [sym_reference_type] = STATE(1039), + [sym_pointer_type] = STATE(1039), + [sym_empty_type] = STATE(1039), + [sym_abstract_type] = STATE(1039), + [sym_dynamic_type] = STATE(1039), + [sym_macro_invocation] = STATE(1039), + [sym_scoped_identifier] = STATE(2274), + [sym_scoped_type_identifier] = STATE(740), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_STAR] = ACTIONS(2369), + [anon_sym_u8] = ACTIONS(2371), + [anon_sym_i8] = ACTIONS(2371), + [anon_sym_u16] = ACTIONS(2371), + [anon_sym_i16] = ACTIONS(2371), + [anon_sym_u32] = ACTIONS(2371), + [anon_sym_i32] = ACTIONS(2371), + [anon_sym_u64] = ACTIONS(2371), + [anon_sym_i64] = ACTIONS(2371), + [anon_sym_u128] = ACTIONS(2371), + [anon_sym_i128] = ACTIONS(2371), + [anon_sym_isize] = ACTIONS(2371), + [anon_sym_usize] = ACTIONS(2371), + [anon_sym_f32] = ACTIONS(2371), + [anon_sym_f64] = ACTIONS(2371), + [anon_sym_bool] = ACTIONS(2371), + [anon_sym_str] = ACTIONS(2371), + [anon_sym_char] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(2381), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(2297), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2385), + [anon_sym_dyn] = ACTIONS(2387), + [sym_mutable_specifier] = ACTIONS(2389), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(2391), + [sym_super] = ACTIONS(2391), + [sym_crate] = ACTIONS(2391), + [sym_metavariable] = ACTIONS(2393), [sym_block_comment] = ACTIONS(3), }, - [569] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1909), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [590] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1753), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -63607,54 +64737,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [570] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2083), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [591] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1461), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -63675,54 +64805,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [571] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2072), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [592] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2102), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -63743,54 +64873,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [572] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1376), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [593] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2130), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -63811,54 +64941,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [573] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), + [sym_block_comment] = ACTIONS(3), + }, + [594] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1831), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -63879,54 +65009,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(2299), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [574] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1763), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), + [sym_block_comment] = ACTIONS(3), + }, + [595] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2139), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -63947,54 +65077,122 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2301), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [575] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1395), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), + [sym_block_comment] = ACTIONS(3), + }, + [596] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(2247), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(2395), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [597] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(1445), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -64015,54 +65213,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [576] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1393), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), + [sym_block_comment] = ACTIONS(3), + }, + [598] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2190), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -64083,54 +65281,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [577] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1700), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), + [sym_block_comment] = ACTIONS(3), + }, + [599] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2138), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -64151,54 +65349,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), [sym_block_comment] = ACTIONS(3), }, - [578] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2084), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), + [600] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_u8] = ACTIONS(1084), @@ -64219,1033 +65417,1169 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1084), [anon_sym_char] = ACTIONS(1084), [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1094), [sym_super] = ACTIONS(1094), [sym_crate] = ACTIONS(1094), [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [579] = { - [sym_function_modifiers] = STATE(2308), - [sym_type_parameters] = STATE(680), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1639), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1638), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1498), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [580] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(2063), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(555), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2307), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), + [sym_block_comment] = ACTIONS(3), + }, + [601] = { + [sym_bracketed_type] = STATE(2400), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1971), + [sym_const_block] = STATE(1427), + [sym__pattern] = STATE(2055), + [sym_tuple_pattern] = STATE(1427), + [sym_slice_pattern] = STATE(1427), + [sym_tuple_struct_pattern] = STATE(1427), + [sym_struct_pattern] = STATE(1427), + [sym_remaining_field_pattern] = STATE(1427), + [sym_mut_pattern] = STATE(1427), + [sym_range_pattern] = STATE(1427), + [sym_ref_pattern] = STATE(1427), + [sym_captured_pattern] = STATE(1427), + [sym_reference_pattern] = STATE(1427), + [sym_or_pattern] = STATE(1427), + [sym__literal_pattern] = STATE(1387), + [sym_negative_literal] = STATE(1392), + [sym_string_literal] = STATE(1392), + [sym_boolean_literal] = STATE(1392), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_ref] = ACTIONS(680), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(2309), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(698), + [aux_sym_string_literal_token1] = ACTIONS(700), + [sym_char_literal] = ACTIONS(698), + [anon_sym_true] = ACTIONS(702), + [anon_sym_false] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [581] = { - [sym_function_modifiers] = STATE(2308), - [sym_type_parameters] = STATE(656), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1680), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1673), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1468), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [582] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1718), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(698), + [sym_float_literal] = ACTIONS(698), + [sym_block_comment] = ACTIONS(3), + }, + [602] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1367), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [583] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1875), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(2397), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [603] = { + [sym_function_modifiers] = STATE(2384), + [sym_type_parameters] = STATE(626), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1661), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1505), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [604] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(602), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [584] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1875), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(2405), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [605] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(2058), + [sym_bracketed_type] = STATE(2327), + [sym_qualified_type] = STATE(2308), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [585] = { - [sym_function_modifiers] = STATE(2308), - [sym_type_parameters] = STATE(685), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1648), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1656), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1471), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [586] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1875), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [606] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1925), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [587] = { - [sym_function_modifiers] = STATE(2308), - [sym_type_parameters] = STATE(687), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1660), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1667), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1495), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [588] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1059), - [sym_bracketed_type] = STATE(2391), - [sym_lifetime] = STATE(556), - [sym_array_type] = STATE(1060), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1060), - [sym_tuple_type] = STATE(1060), - [sym_unit_type] = STATE(1060), - [sym_generic_type] = STATE(799), - [sym_generic_type_with_turbofish] = STATE(2392), - [sym_bounded_type] = STATE(1060), - [sym_reference_type] = STATE(1060), - [sym_pointer_type] = STATE(1060), - [sym_empty_type] = STATE(1060), - [sym_abstract_type] = STATE(1060), - [sym_dynamic_type] = STATE(1060), - [sym_macro_invocation] = STATE(1060), - [sym_scoped_identifier] = STATE(2222), - [sym_scoped_type_identifier] = STATE(715), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(2263), - [anon_sym_u8] = ACTIONS(2265), - [anon_sym_i8] = ACTIONS(2265), - [anon_sym_u16] = ACTIONS(2265), - [anon_sym_i16] = ACTIONS(2265), - [anon_sym_u32] = ACTIONS(2265), - [anon_sym_i32] = ACTIONS(2265), - [anon_sym_u64] = ACTIONS(2265), - [anon_sym_i64] = ACTIONS(2265), - [anon_sym_u128] = ACTIONS(2265), - [anon_sym_i128] = ACTIONS(2265), - [anon_sym_isize] = ACTIONS(2265), - [anon_sym_usize] = ACTIONS(2265), - [anon_sym_f32] = ACTIONS(2265), - [anon_sym_f64] = ACTIONS(2265), - [anon_sym_bool] = ACTIONS(2265), - [anon_sym_str] = ACTIONS(2265), - [anon_sym_char] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2307), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(2267), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [607] = { + [sym_function_modifiers] = STATE(2384), + [sym_type_parameters] = STATE(698), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1692), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1611), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1517), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [608] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1925), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_dyn] = ACTIONS(2281), - [sym_mutable_specifier] = ACTIONS(2325), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2285), - [sym_super] = ACTIONS(2285), - [sym_crate] = ACTIONS(2285), - [sym_metavariable] = ACTIONS(2287), - [sym_block_comment] = ACTIONS(3), - }, - [589] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [609] = { + [sym_attribute_item] = STATE(609), + [aux_sym_enum_variant_list_repeat1] = STATE(609), + [sym_identifier] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_RBRACK] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_u8] = ACTIONS(2413), + [anon_sym_i8] = ACTIONS(2413), + [anon_sym_u16] = ACTIONS(2413), + [anon_sym_i16] = ACTIONS(2413), + [anon_sym_u32] = ACTIONS(2413), + [anon_sym_i32] = ACTIONS(2413), + [anon_sym_u64] = ACTIONS(2413), + [anon_sym_i64] = ACTIONS(2413), + [anon_sym_u128] = ACTIONS(2413), + [anon_sym_i128] = ACTIONS(2413), + [anon_sym_isize] = ACTIONS(2413), + [anon_sym_usize] = ACTIONS(2413), + [anon_sym_f32] = ACTIONS(2413), + [anon_sym_f64] = ACTIONS(2413), + [anon_sym_bool] = ACTIONS(2413), + [anon_sym_str] = ACTIONS(2413), + [anon_sym_char] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_union] = ACTIONS(2413), + [anon_sym_unsafe] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(2417), + [anon_sym_BANG] = ACTIONS(2415), + [anon_sym_COMMA] = ACTIONS(2415), + [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_COLON_COLON] = ACTIONS(2415), + [anon_sym__] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2415), + [sym_mutable_specifier] = ACTIONS(2413), + [anon_sym_DOT_DOT] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PIPE] = ACTIONS(2415), + [anon_sym_move] = ACTIONS(2413), + [sym_integer_literal] = ACTIONS(2415), + [aux_sym_string_literal_token1] = ACTIONS(2415), + [sym_char_literal] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2413), + [sym_super] = ACTIONS(2413), + [sym_crate] = ACTIONS(2413), + [sym_metavariable] = ACTIONS(2415), + [sym_raw_string_literal] = ACTIONS(2415), + [sym_float_literal] = ACTIONS(2415), + [sym_block_comment] = ACTIONS(3), + }, + [610] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(2260), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(596), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [590] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1340), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(568), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2307), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_mutable_specifier] = ACTIONS(2420), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [611] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1776), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(2329), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [591] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1943), - [sym_bracketed_type] = STATE(2289), - [sym_qualified_type] = STATE(2357), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [612] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1925), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [592] = { - [sym_attribute_item] = STATE(592), - [aux_sym_enum_variant_list_repeat1] = STATE(592), - [sym_identifier] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_LBRACE] = ACTIONS(2333), - [anon_sym_LBRACK] = ACTIONS(2333), - [anon_sym_RBRACK] = ACTIONS(2333), - [anon_sym_STAR] = ACTIONS(2333), - [anon_sym_u8] = ACTIONS(2331), - [anon_sym_i8] = ACTIONS(2331), - [anon_sym_u16] = ACTIONS(2331), - [anon_sym_i16] = ACTIONS(2331), - [anon_sym_u32] = ACTIONS(2331), - [anon_sym_i32] = ACTIONS(2331), - [anon_sym_u64] = ACTIONS(2331), - [anon_sym_i64] = ACTIONS(2331), - [anon_sym_u128] = ACTIONS(2331), - [anon_sym_i128] = ACTIONS(2331), - [anon_sym_isize] = ACTIONS(2331), - [anon_sym_usize] = ACTIONS(2331), - [anon_sym_f32] = ACTIONS(2331), - [anon_sym_f64] = ACTIONS(2331), - [anon_sym_bool] = ACTIONS(2331), - [anon_sym_str] = ACTIONS(2331), - [anon_sym_char] = ACTIONS(2331), - [anon_sym_SQUOTE] = ACTIONS(2331), - [anon_sym_async] = ACTIONS(2331), - [anon_sym_break] = ACTIONS(2331), - [anon_sym_const] = ACTIONS(2331), - [anon_sym_continue] = ACTIONS(2331), - [anon_sym_default] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_loop] = ACTIONS(2331), - [anon_sym_match] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(2331), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_while] = ACTIONS(2331), - [anon_sym_POUND] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_COMMA] = ACTIONS(2333), - [anon_sym_ref] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym__] = ACTIONS(2331), - [anon_sym_AMP] = ACTIONS(2333), - [sym_mutable_specifier] = ACTIONS(2331), - [anon_sym_DOT_DOT] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_PIPE] = ACTIONS(2333), - [anon_sym_move] = ACTIONS(2331), - [sym_integer_literal] = ACTIONS(2333), - [aux_sym_string_literal_token1] = ACTIONS(2333), - [sym_char_literal] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(2331), - [anon_sym_false] = ACTIONS(2331), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2331), - [sym_super] = ACTIONS(2331), - [sym_crate] = ACTIONS(2331), - [sym_metavariable] = ACTIONS(2333), - [sym_raw_string_literal] = ACTIONS(2333), - [sym_float_literal] = ACTIONS(2333), - [sym_block_comment] = ACTIONS(3), - }, - [593] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1875), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [613] = { + [sym_function_modifiers] = STATE(2384), + [sym_type_parameters] = STATE(655), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1638), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1625), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1490), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [614] = { + [sym_function_modifiers] = STATE(2333), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1117), + [sym_bracketed_type] = STATE(2436), + [sym_lifetime] = STATE(589), + [sym_array_type] = STATE(1039), + [sym_for_lifetimes] = STATE(1258), + [sym_function_type] = STATE(1039), + [sym_tuple_type] = STATE(1039), + [sym_unit_type] = STATE(1039), + [sym_generic_type] = STATE(788), + [sym_generic_type_with_turbofish] = STATE(2437), + [sym_bounded_type] = STATE(1039), + [sym_reference_type] = STATE(1039), + [sym_pointer_type] = STATE(1039), + [sym_empty_type] = STATE(1039), + [sym_abstract_type] = STATE(1039), + [sym_dynamic_type] = STATE(1039), + [sym_macro_invocation] = STATE(1039), + [sym_scoped_identifier] = STATE(2274), + [sym_scoped_type_identifier] = STATE(740), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(2369), + [anon_sym_u8] = ACTIONS(2371), + [anon_sym_i8] = ACTIONS(2371), + [anon_sym_u16] = ACTIONS(2371), + [anon_sym_i16] = ACTIONS(2371), + [anon_sym_u32] = ACTIONS(2371), + [anon_sym_i32] = ACTIONS(2371), + [anon_sym_u64] = ACTIONS(2371), + [anon_sym_i64] = ACTIONS(2371), + [anon_sym_u128] = ACTIONS(2371), + [anon_sym_i128] = ACTIONS(2371), + [anon_sym_isize] = ACTIONS(2371), + [anon_sym_usize] = ACTIONS(2371), + [anon_sym_f32] = ACTIONS(2371), + [anon_sym_f64] = ACTIONS(2371), + [anon_sym_bool] = ACTIONS(2371), + [anon_sym_str] = ACTIONS(2371), + [anon_sym_char] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(2381), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2385), + [anon_sym_dyn] = ACTIONS(2387), + [sym_mutable_specifier] = ACTIONS(2428), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2391), + [sym_super] = ACTIONS(2391), + [sym_crate] = ACTIONS(2391), + [sym_metavariable] = ACTIONS(2393), + [sym_block_comment] = ACTIONS(3), + }, + [615] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1925), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2430), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [616] = { + [sym_function_modifiers] = STATE(2384), + [sym_type_parameters] = STATE(723), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1666), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1645), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1515), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [617] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1772), + [sym_bracketed_type] = STATE(2327), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(1389), + [sym_for_lifetimes] = STATE(1274), + [sym_function_type] = STATE(1389), + [sym_tuple_type] = STATE(1389), + [sym_unit_type] = STATE(1389), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2328), + [sym_bounded_type] = STATE(1389), + [sym_reference_type] = STATE(1389), + [sym_pointer_type] = STATE(1389), + [sym_empty_type] = STATE(1389), + [sym_abstract_type] = STATE(1389), + [sym_dynamic_type] = STATE(1389), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(1317), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(668), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(678), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(690), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, }; @@ -65254,71 +66588,1235 @@ static uint16_t ts_small_parse_table[] = { [0] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_LBRACK, + ACTIONS(2369), 1, + anon_sym_STAR, + ACTIONS(2373), 1, + anon_sym_default, + ACTIONS(2375), 1, + anon_sym_fn, + ACTIONS(2377), 1, + anon_sym_impl, + ACTIONS(2379), 1, + anon_sym_union, + ACTIONS(2381), 1, + anon_sym_BANG, + ACTIONS(2383), 1, + anon_sym_COLON_COLON, + ACTIONS(2385), 1, + anon_sym_AMP, + ACTIONS(2387), 1, + anon_sym_dyn, + ACTIONS(2393), 1, + sym_metavariable, + STATE(740), 1, + sym_scoped_type_identifier, + STATE(788), 1, + sym_generic_type, + STATE(1131), 1, + sym__type, + STATE(1258), 1, + sym_for_lifetimes, + STATE(2274), 1, + sym_scoped_identifier, + STATE(2333), 1, + sym_function_modifiers, + STATE(2436), 1, + sym_bracketed_type, + STATE(2437), 1, + sym_generic_type_with_turbofish, + STATE(2443), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2391), 3, + sym_self, + sym_super, + sym_crate, + STATE(1039), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2371), 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, + [129] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym_generic_type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2263), 1, + sym__type, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [258] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_LBRACK, + ACTIONS(2369), 1, + anon_sym_STAR, + ACTIONS(2373), 1, + anon_sym_default, + ACTIONS(2375), 1, + anon_sym_fn, + ACTIONS(2377), 1, + anon_sym_impl, + ACTIONS(2379), 1, + anon_sym_union, + ACTIONS(2381), 1, + anon_sym_BANG, + ACTIONS(2383), 1, + anon_sym_COLON_COLON, + ACTIONS(2385), 1, + anon_sym_AMP, + ACTIONS(2387), 1, + anon_sym_dyn, + ACTIONS(2393), 1, + sym_metavariable, + STATE(740), 1, + sym_scoped_type_identifier, + STATE(788), 1, + sym_generic_type, + STATE(1107), 1, + sym__type, + STATE(1258), 1, + sym_for_lifetimes, + STATE(2274), 1, + sym_scoped_identifier, + STATE(2333), 1, + sym_function_modifiers, + STATE(2436), 1, + sym_bracketed_type, + STATE(2437), 1, + sym_generic_type_with_turbofish, + STATE(2443), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2391), 3, + sym_self, + sym_super, + sym_crate, + STATE(1039), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2371), 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, + [387] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym_generic_type, + STATE(1622), 1, + sym__type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [516] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_LBRACK, + ACTIONS(2369), 1, + anon_sym_STAR, + ACTIONS(2373), 1, + anon_sym_default, + ACTIONS(2375), 1, + anon_sym_fn, + ACTIONS(2377), 1, + anon_sym_impl, + ACTIONS(2379), 1, + anon_sym_union, + ACTIONS(2381), 1, + anon_sym_BANG, + ACTIONS(2383), 1, + anon_sym_COLON_COLON, + ACTIONS(2385), 1, + anon_sym_AMP, + ACTIONS(2387), 1, + anon_sym_dyn, + ACTIONS(2393), 1, + sym_metavariable, + STATE(740), 1, + sym_scoped_type_identifier, + STATE(788), 1, + sym_generic_type, + STATE(1089), 1, + sym__type, + STATE(1258), 1, + sym_for_lifetimes, + STATE(2274), 1, + sym_scoped_identifier, + STATE(2333), 1, + sym_function_modifiers, + STATE(2436), 1, + sym_bracketed_type, + STATE(2437), 1, + sym_generic_type_with_turbofish, + STATE(2443), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2391), 3, + sym_self, + sym_super, + sym_crate, + STATE(1039), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2371), 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, + [645] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym_generic_type, + STATE(1800), 1, + sym__type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [774] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym_generic_type, + STATE(1621), 1, + sym__type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [903] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_LBRACK, + ACTIONS(2369), 1, + anon_sym_STAR, + ACTIONS(2373), 1, + anon_sym_default, + ACTIONS(2375), 1, + anon_sym_fn, + ACTIONS(2377), 1, + anon_sym_impl, + ACTIONS(2379), 1, + anon_sym_union, + ACTIONS(2381), 1, + anon_sym_BANG, + ACTIONS(2383), 1, + anon_sym_COLON_COLON, + ACTIONS(2385), 1, + anon_sym_AMP, + ACTIONS(2387), 1, + anon_sym_dyn, + ACTIONS(2393), 1, + sym_metavariable, + STATE(740), 1, + sym_scoped_type_identifier, + STATE(788), 1, + sym_generic_type, + STATE(1122), 1, + sym__type, + STATE(1258), 1, + sym_for_lifetimes, + STATE(2274), 1, + sym_scoped_identifier, + STATE(2333), 1, + sym_function_modifiers, + STATE(2436), 1, + sym_bracketed_type, + STATE(2437), 1, + sym_generic_type_with_turbofish, + STATE(2443), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2391), 3, + sym_self, + sym_super, + sym_crate, + STATE(1039), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2371), 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, + [1032] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(2436), 1, + sym_identifier, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1516), 1, + sym_scoped_type_identifier, + STATE(1670), 1, + sym__type, + STATE(1680), 1, + sym_generic_type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [1161] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym_generic_type, + STATE(1605), 1, + sym__type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [1290] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym_generic_type, + STATE(2158), 1, + sym__type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [1419] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym_generic_type, + STATE(1377), 1, + sym__type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [1548] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1691), 1, + STATE(2014), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65330,7 +67828,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65348,74 +67846,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [129] = 32, + [1677] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1591), 1, + STATE(1672), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65427,7 +67925,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65445,74 +67943,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [258] = 32, + [1806] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1981), 1, + STATE(1862), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65524,7 +68022,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65542,74 +68040,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [387] = 32, + [1935] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2092), 1, + STATE(1767), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65621,7 +68119,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65639,74 +68137,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [516] = 32, + [2064] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1784), 1, + STATE(1686), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65718,7 +68216,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65736,74 +68234,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [645] = 32, + [2193] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1334), 1, + STATE(1802), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65815,7 +68313,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65833,74 +68331,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [774] = 32, + [2322] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1672), 1, + STATE(1612), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65912,7 +68410,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65930,74 +68428,171 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [903] = 32, + [2451] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2089), 1, + STATE(2005), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, sym_function_modifiers, - STATE(2332), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [2580] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym_generic_type, + STATE(1637), 1, + sym__type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66009,7 +68604,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66027,74 +68622,462 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1032] = 32, + [2709] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym_generic_type, + STATE(1995), 1, + sym__type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [2838] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym_generic_type, + STATE(1869), 1, + sym__type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [2967] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym_generic_type, + STATE(1851), 1, + sym__type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [3096] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1783), 1, + STATE(1644), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, sym_function_modifiers, - STATE(2332), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [3225] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym_generic_type, + STATE(1386), 1, + sym__type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66106,7 +69089,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66124,74 +69107,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1161] = 32, + [3354] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1823), 1, + STATE(2185), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66203,7 +69186,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66221,74 +69204,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1290] = 32, + [3483] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1573), 1, + STATE(1374), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66300,7 +69283,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66318,74 +69301,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1419] = 32, + [3612] = 33, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + ACTIONS(2438), 1, + sym_self, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1574), 1, + STATE(1386), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + ACTIONS(888), 2, + sym_super, + sym_crate, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66397,7 +69381,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66415,74 +69399,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1548] = 32, + [3743] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2113), 1, + STATE(1618), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66494,7 +69478,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66512,74 +69496,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1677] = 32, + [3872] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2365), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2369), 1, + anon_sym_STAR, + ACTIONS(2373), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2375), 1, + anon_sym_fn, + ACTIONS(2377), 1, + anon_sym_impl, + ACTIONS(2379), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2381), 1, + anon_sym_BANG, + ACTIONS(2383), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2385), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2387), 1, + anon_sym_dyn, + ACTIONS(2393), 1, sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, + STATE(740), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(788), 1, sym_generic_type, - STATE(1325), 1, + STATE(1041), 1, sym__type, - STATE(2194), 1, + STATE(1258), 1, + sym_for_lifetimes, + STATE(2274), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2333), 1, + sym_function_modifiers, + STATE(2436), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2437), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2443), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2391), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1039), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66591,7 +69575,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2371), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66609,74 +69593,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1806] = 32, + [4001] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2162), 1, + STATE(1687), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66688,7 +69672,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66706,74 +69690,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1935] = 32, + [4130] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1520), 1, + STATE(1867), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66785,7 +69769,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66803,74 +69787,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2064] = 32, + [4259] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1645), 1, + STATE(1617), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66882,7 +69866,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66900,74 +69884,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2193] = 32, + [4388] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2365), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2369), 1, + anon_sym_STAR, + ACTIONS(2373), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2375), 1, + anon_sym_fn, + ACTIONS(2377), 1, + anon_sym_impl, + ACTIONS(2379), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2381), 1, + anon_sym_BANG, + ACTIONS(2383), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2385), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2387), 1, + anon_sym_dyn, + ACTIONS(2393), 1, sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, + STATE(740), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(788), 1, sym_generic_type, - STATE(1880), 1, + STATE(1029), 1, sym__type, - STATE(2194), 1, + STATE(1258), 1, + sym_for_lifetimes, + STATE(2274), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2333), 1, + sym_function_modifiers, + STATE(2436), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2437), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2443), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2391), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1039), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66979,7 +69963,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2371), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66997,74 +69981,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2322] = 32, + [4517] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1996), 1, + STATE(1615), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67076,7 +70060,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67094,74 +70078,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2451] = 32, + [4646] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2365), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2369), 1, + anon_sym_STAR, + ACTIONS(2373), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2375), 1, + anon_sym_fn, + ACTIONS(2377), 1, + anon_sym_impl, + ACTIONS(2379), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2381), 1, + anon_sym_BANG, + ACTIONS(2383), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2385), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2387), 1, + anon_sym_dyn, + ACTIONS(2393), 1, sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, + STATE(740), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(788), 1, sym_generic_type, - STATE(1567), 1, + STATE(1030), 1, sym__type, - STATE(2194), 1, + STATE(1258), 1, + sym_for_lifetimes, + STATE(2274), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2333), 1, + sym_function_modifiers, + STATE(2436), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2437), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2443), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2391), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1039), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67173,7 +70157,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2371), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67191,74 +70175,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2580] = 32, + [4775] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + ACTIONS(2440), 1, + sym_identifier, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1496), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1635), 1, sym_generic_type, - STATE(1765), 1, + STATE(1689), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67270,7 +70254,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67288,74 +70272,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2709] = 32, + [4904] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2365), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2369), 1, + anon_sym_STAR, + ACTIONS(2373), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2375), 1, + anon_sym_fn, + ACTIONS(2377), 1, + anon_sym_impl, + ACTIONS(2379), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2381), 1, + anon_sym_BANG, + ACTIONS(2383), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2385), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2387), 1, + anon_sym_dyn, + ACTIONS(2393), 1, sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, + STATE(740), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(788), 1, sym_generic_type, - STATE(1336), 1, + STATE(1028), 1, sym__type, - STATE(1342), 1, - sym_lifetime, - STATE(2194), 1, + STATE(1258), 1, + sym_for_lifetimes, + STATE(2274), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2333), 1, + sym_function_modifiers, + STATE(2436), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2437), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, + STATE(2443), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2391), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1039), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67367,7 +70351,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2371), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67385,74 +70369,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2838] = 32, + [5033] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1675), 1, + STATE(1376), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67464,7 +70448,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67482,74 +70466,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2967] = 32, + [5162] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1683), 1, + STATE(1364), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67561,7 +70545,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67579,74 +70563,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3096] = 32, + [5291] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2003), 1, + STATE(2133), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67658,7 +70642,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67676,74 +70660,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3225] = 32, + [5420] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1599), 1, + STATE(1369), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67755,7 +70739,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67773,74 +70757,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3354] = 32, + [5549] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2091), 1, + STATE(1836), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67852,7 +70836,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67870,74 +70854,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3483] = 32, + [5678] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1973), 1, + STATE(1875), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67949,7 +70933,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67967,74 +70951,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3612] = 32, + [5807] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1659), 1, + STATE(1660), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68046,7 +71030,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68064,74 +71048,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3741] = 32, + [5936] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1992), 1, + STATE(1925), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68143,7 +71127,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68161,74 +71145,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3870] = 32, + [6065] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1663), 1, + STATE(1380), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68240,7 +71224,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68258,74 +71242,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3999] = 32, + [6194] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1579), 1, + STATE(1366), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68337,7 +71321,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68355,74 +71339,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4128] = 32, + [6323] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2140), 1, + STATE(1772), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68434,7 +71418,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68452,74 +71436,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4257] = 32, + [6452] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1589), 1, + STATE(1371), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68531,7 +71515,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68549,74 +71533,268 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4386] = 32, + [6581] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym_generic_type, + STATE(1997), 1, + sym__type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [6710] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1335), 1, + STATE(2059), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, sym_function_modifiers, - STATE(2332), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [6839] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym_generic_type, + STATE(2152), 1, + sym__type, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68628,7 +71806,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68646,74 +71824,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4515] = 32, + [6968] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1661), 1, + STATE(1682), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68725,7 +71903,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68743,74 +71921,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4644] = 32, + [7097] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1954), 1, + STATE(2056), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68822,7 +72000,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68840,171 +72018,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4773] = 32, + [7226] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1881), 1, + STATE(1929), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 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, - [4902] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2279), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(1016), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2384), 1, sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2285), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1060), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69016,7 +72097,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2265), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69034,74 +72115,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5031] = 32, + [7355] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1948), 1, + STATE(2024), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69113,7 +72194,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69131,74 +72212,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5160] = 32, + [7484] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1315), 1, + STATE(1965), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69210,7 +72291,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69228,74 +72309,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5289] = 32, + [7613] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1322), 1, + STATE(2105), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69307,7 +72388,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69325,74 +72406,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5418] = 32, + [7742] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2107), 1, + STATE(1654), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69404,7 +72485,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69422,74 +72503,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5547] = 32, + [7871] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1318), 1, + STATE(1683), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69501,7 +72582,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69519,74 +72600,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5676] = 32, + [8000] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1336), 1, + STATE(1367), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69598,7 +72679,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69616,74 +72697,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5805] = 32, + [8129] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1888), 1, + STATE(1878), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69695,7 +72776,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69713,74 +72794,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5934] = 32, + [8258] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2033), 1, + STATE(1673), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69792,7 +72873,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69810,74 +72891,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6063] = 32, + [8387] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1679), 1, + STATE(2027), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69889,7 +72970,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69907,74 +72988,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6192] = 32, + [8516] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1343), 1, + STATE(1606), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69986,7 +73067,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70004,74 +73085,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6321] = 32, + [8645] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1597), 1, + STATE(2066), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70083,7 +73164,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70101,74 +73182,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6450] = 32, + [8774] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1319), 1, + STATE(1823), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70180,7 +73261,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70198,74 +73279,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6579] = 32, + [8903] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1562), 1, + STATE(2076), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70277,7 +73358,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70295,74 +73376,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6708] = 32, + [9032] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1634), 1, + STATE(1650), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70374,7 +73455,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70392,74 +73473,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6837] = 32, + [9161] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1570), 1, + STATE(1585), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70471,7 +73552,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70489,74 +73570,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6966] = 32, + [9290] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1999), 1, + STATE(1642), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70568,7 +73649,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70586,74 +73667,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7095] = 32, + [9419] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1633), 1, + STATE(2197), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70665,7 +73746,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70683,74 +73764,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7224] = 32, + [9548] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2024), 1, + STATE(1363), 1, sym__type, - STATE(2194), 1, + STATE(1368), 1, + sym_lifetime, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, + STATE(2384), 1, sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70762,7 +73843,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70780,74 +73861,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7353] = 32, + [9677] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1622), 1, + STATE(2136), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70859,7 +73940,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70877,74 +73958,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7482] = 32, + [9806] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(696), 1, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2259), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2279), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(715), 1, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(799), 1, + STATE(1361), 1, sym_generic_type, - STATE(1015), 1, + STATE(2101), 1, sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2392), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2285), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1060), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70956,7 +74037,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2265), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70974,74 +74055,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7611] = 32, + [9935] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1864), 1, + STATE(1363), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71053,7 +74134,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71071,74 +74152,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7740] = 32, + [10064] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2365), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2369), 1, + anon_sym_STAR, + ACTIONS(2373), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2375), 1, + anon_sym_fn, + ACTIONS(2377), 1, + anon_sym_impl, + ACTIONS(2379), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2381), 1, + anon_sym_BANG, + ACTIONS(2383), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2385), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2387), 1, + anon_sym_dyn, + ACTIONS(2393), 1, sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, + STATE(740), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(788), 1, sym_generic_type, - STATE(1685), 1, + STATE(1081), 1, sym__type, - STATE(2194), 1, + STATE(1258), 1, + sym_for_lifetimes, + STATE(2274), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2333), 1, + sym_function_modifiers, + STATE(2436), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2437), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2443), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2391), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1039), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71150,7 +74231,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2371), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71168,74 +74249,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7869] = 32, + [10193] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1601), 1, + STATE(1667), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71247,7 +74328,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71265,74 +74346,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7998] = 32, + [10322] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - ACTIONS(2340), 1, + ACTIONS(2442), 1, sym_identifier, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1467), 1, + STATE(1495), 1, sym_scoped_type_identifier, - STATE(1643), 1, + STATE(1659), 1, sym__type, - STATE(1678), 1, + STATE(1669), 1, sym_generic_type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71344,7 +74425,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71362,171 +74443,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8127] = 32, + [10451] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1324), 1, + STATE(1983), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 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, - [8256] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2279), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(987), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, + STATE(2372), 1, sym_lifetime, - STATE(2292), 1, + STATE(2384), 1, sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2285), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1060), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71538,7 +74522,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2265), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71556,74 +74540,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8385] = 32, + [10580] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1903), 1, + STATE(1657), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71635,7 +74619,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71653,74 +74637,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8514] = 32, + [10709] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2365), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2369), 1, + anon_sym_STAR, + ACTIONS(2373), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2375), 1, + anon_sym_fn, + ACTIONS(2377), 1, + anon_sym_impl, + ACTIONS(2379), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2381), 1, + anon_sym_BANG, + ACTIONS(2383), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2385), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2387), 1, + anon_sym_dyn, + ACTIONS(2393), 1, sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, + STATE(740), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(788), 1, sym_generic_type, - STATE(2051), 1, + STATE(1120), 1, sym__type, - STATE(2194), 1, + STATE(1258), 1, + sym_for_lifetimes, + STATE(2274), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2333), 1, + sym_function_modifiers, + STATE(2436), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2437), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2443), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2391), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1039), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71732,7 +74716,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2371), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71750,74 +74734,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8643] = 32, + [10838] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2023), 1, + STATE(1587), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71829,7 +74813,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71847,74 +74831,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8772] = 32, + [10967] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1657), 1, + STATE(2179), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71926,7 +74910,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71944,74 +74928,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8901] = 32, + [11096] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - ACTIONS(2255), 1, + ACTIONS(2361), 1, sym_identifier, - ACTIONS(2257), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2259), 1, + ACTIONS(2365), 1, anon_sym_LBRACK, - ACTIONS(2263), 1, + ACTIONS(2369), 1, anon_sym_STAR, - ACTIONS(2267), 1, + ACTIONS(2373), 1, anon_sym_default, - ACTIONS(2269), 1, + ACTIONS(2375), 1, anon_sym_fn, - ACTIONS(2271), 1, + ACTIONS(2377), 1, anon_sym_impl, - ACTIONS(2273), 1, + ACTIONS(2379), 1, anon_sym_union, - ACTIONS(2275), 1, + ACTIONS(2381), 1, anon_sym_BANG, - ACTIONS(2277), 1, + ACTIONS(2383), 1, anon_sym_COLON_COLON, - ACTIONS(2279), 1, + ACTIONS(2385), 1, anon_sym_AMP, - ACTIONS(2281), 1, + ACTIONS(2387), 1, anon_sym_dyn, - ACTIONS(2287), 1, + ACTIONS(2393), 1, sym_metavariable, - STATE(715), 1, + STATE(740), 1, sym_scoped_type_identifier, - STATE(799), 1, + STATE(788), 1, sym_generic_type, - STATE(1012), 1, + STATE(1094), 1, sym__type, - STATE(1211), 1, + STATE(1258), 1, sym_for_lifetimes, - STATE(2222), 1, + STATE(2274), 1, sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2333), 1, sym_function_modifiers, - STATE(2391), 1, + STATE(2436), 1, sym_bracketed_type, - STATE(2392), 1, + STATE(2437), 1, sym_generic_type_with_turbofish, + STATE(2443), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2285), 3, + ACTIONS(2391), 3, sym_self, sym_super, sym_crate, - STATE(1060), 11, + STATE(1039), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72023,7 +75007,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2265), 17, + ACTIONS(2371), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72041,74 +75025,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9030] = 32, + [11225] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1958), 1, + STATE(1655), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72120,7 +75104,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72138,75 +75122,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9159] = 33, + [11354] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - ACTIONS(2342), 1, - sym_self, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1343), 1, + STATE(2093), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(892), 2, - sym_super, - sym_crate, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - STATE(1333), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72218,7 +75201,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72236,74 +75219,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9290] = 32, + [11483] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2015), 1, + STATE(1651), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72315,7 +75298,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72333,74 +75316,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9419] = 32, + [11612] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1665), 1, + STATE(1656), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72412,7 +75395,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72430,74 +75413,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9548] = 32, + [11741] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1689), 1, + STATE(2235), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72509,7 +75492,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72527,74 +75510,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9677] = 32, + [11870] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1846), 1, + STATE(1912), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72606,7 +75589,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72624,171 +75607,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9806] = 32, + [11999] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1875), 1, + STATE(2091), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 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, - [9935] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2279), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(982), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2384), 1, sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2285), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1060), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72800,7 +75686,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2265), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72818,74 +75704,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10064] = 32, + [12128] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1733), 1, + STATE(1915), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72897,7 +75783,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72915,74 +75801,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10193] = 32, + [12257] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(696), 1, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2259), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2279), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(715), 1, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(799), 1, + STATE(1361), 1, sym_generic_type, - STATE(988), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, + STATE(2268), 1, + sym__type, + STATE(2327), 1, sym_bracketed_type, - STATE(2392), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2285), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1060), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72994,7 +75880,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2265), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73012,74 +75898,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10322] = 32, + [12386] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2061), 1, + STATE(2247), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73091,7 +75977,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73109,74 +75995,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10451] = 32, + [12515] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1332), 1, + STATE(2222), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73188,7 +76074,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73206,74 +76092,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10580] = 32, + [12644] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(696), 1, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2259), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2279), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(715), 1, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(799), 1, + STATE(1361), 1, sym_generic_type, - STATE(989), 1, + STATE(1794), 1, sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2392), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2285), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1060), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73285,7 +76171,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2265), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73303,74 +76189,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10709] = 32, + [12773] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(696), 1, + ACTIONS(668), 1, + anon_sym_impl, + ACTIONS(674), 1, + anon_sym_BANG, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, + ACTIONS(690), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2259), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2279), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(715), 1, + ACTIONS(2215), 1, + sym_identifier, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(799), 1, + STATE(1361), 1, sym_generic_type, - STATE(993), 1, + STATE(2250), 1, sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2392), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, + STATE(2372), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2285), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1060), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73382,7 +76268,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2265), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73400,74 +76286,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10838] = 32, + [12902] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1913), 1, + STATE(1792), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73479,7 +76365,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73497,74 +76383,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10967] = 32, + [13031] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2137), 1, + STATE(1630), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73576,7 +76462,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73594,74 +76480,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11096] = 32, + [13160] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2344), 1, + ACTIONS(2215), 1, sym_identifier, - STATE(1179), 1, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(1274), 1, sym_for_lifetimes, - STATE(1477), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1647), 1, - sym__type, - STATE(1650), 1, + STATE(1361), 1, sym_generic_type, - STATE(2194), 1, + STATE(1996), 1, + sym__type, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73673,7 +76559,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73691,74 +76577,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11225] = 32, + [13289] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(1982), 1, + STATE(1633), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73770,7 +76656,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73788,74 +76674,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11354] = 32, + [13418] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2210), 1, + STATE(2099), 1, sym__type, - STATE(2289), 1, + STATE(2254), 1, + sym_scoped_identifier, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73867,7 +76753,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73885,74 +76771,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11483] = 32, + [13547] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + ACTIONS(2444), 1, + sym_identifier, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1492), 1, sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1748), 1, + STATE(1639), 1, sym__type, - STATE(2194), 1, + STATE(1640), 1, + sym_generic_type, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73964,7 +76850,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73982,74 +76868,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11612] = 32, + [13676] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, + ACTIONS(668), 1, anon_sym_impl, - ACTIONS(692), 1, + ACTIONS(674), 1, anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, + ACTIONS(690), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(2215), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - STATE(1179), 1, + STATE(1274), 1, sym_for_lifetimes, - STATE(1269), 1, + STATE(1317), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(1361), 1, sym_generic_type, - STATE(2156), 1, + STATE(1631), 1, sym__type, - STATE(2194), 1, + STATE(2254), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2372), 1, sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1389), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74061,7 +76947,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74079,74 +76965,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11741] = 32, + [13805] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2365), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2369), 1, + anon_sym_STAR, + ACTIONS(2373), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2375), 1, + anon_sym_fn, + ACTIONS(2377), 1, + anon_sym_impl, + ACTIONS(2379), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2381), 1, + anon_sym_BANG, + ACTIONS(2383), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2385), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2387), 1, + anon_sym_dyn, + ACTIONS(2393), 1, sym_metavariable, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2346), 1, - sym_identifier, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1469), 1, + STATE(740), 1, sym_scoped_type_identifier, - STATE(1619), 1, - sym__type, - STATE(1670), 1, + STATE(788), 1, sym_generic_type, - STATE(2194), 1, + STATE(1035), 1, + sym__type, + STATE(1258), 1, + sym_for_lifetimes, + STATE(2274), 1, sym_scoped_identifier, - STATE(2289), 1, + STATE(2333), 1, + sym_function_modifiers, + STATE(2436), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2437), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, + STATE(2443), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2391), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, + STATE(1039), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74158,7 +77044,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2371), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74176,86 +77062,220 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11870] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + [13934] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1190), 20, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(1192), 41, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, anon_sym_default, - ACTIONS(882), 1, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, anon_sym_union, - ACTIONS(886), 1, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14004] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2448), 17, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DASH_GT, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(894), 1, + anon_sym_DOT_DOT, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2446), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2006), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_DASH, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14069] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(455), 18, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2450), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, anon_sym_async, + anon_sym_break, anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_while, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [14134] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(862), 17, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(860), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74273,86 +77293,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11999] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_DASH, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14199] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2454), 17, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DASH_GT, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(894), 1, + anon_sym_DOT_DOT, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2123), 1, + ACTIONS(2452), 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_SQUOTE, - ACTIONS(2348), 1, - sym_identifier, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1463), 1, - sym_scoped_type_identifier, - STATE(1658), 1, - sym__type, - STATE(1682), 1, - sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, anon_sym_async, + anon_sym_break, anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_while, + anon_sym_DASH, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [14264] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1190), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(1192), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74370,86 +77415,221 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12128] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_const, + anon_sym_default, anon_sym_fn, - ACTIONS(684), 1, anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + anon_sym_union, + anon_sym_unsafe, anon_sym_extern, - ACTIONS(708), 1, + anon_sym_ref, + anon_sym__, anon_sym_dyn, - ACTIONS(872), 1, + sym_mutable_specifier, + anon_sym_DOT_DOT, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14326] = 9, + ACTIONS(2458), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2462), 1, + anon_sym_BANG, + ACTIONS(2464), 1, + anon_sym_COLON_COLON, + ACTIONS(2466), 1, + anon_sym_LT2, + STATE(837), 1, + sym_type_arguments, + STATE(895), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2460), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2456), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14396] = 8, + ACTIONS(2458), 1, + anon_sym_LPAREN, + ACTIONS(2464), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2466), 1, + anon_sym_LT2, + STATE(837), 1, + sym_type_arguments, + STATE(895), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2470), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1938), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2468), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14463] = 8, + ACTIONS(2458), 1, + anon_sym_LPAREN, + ACTIONS(2464), 1, + anon_sym_COLON_COLON, + ACTIONS(2466), 1, + anon_sym_LT2, + STATE(837), 1, + sym_type_arguments, + STATE(895), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2474), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2472), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14530] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1584), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1586), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74467,86 +77647,156 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12257] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + 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, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14586] = 7, + ACTIONS(2458), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2466), 1, + anon_sym_LT2, + STATE(842), 1, + sym_type_arguments, + STATE(905), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2478), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2476), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14650] = 7, + ACTIONS(2462), 1, + anon_sym_BANG, + ACTIONS(2480), 1, + anon_sym_LBRACE, + ACTIONS(2482), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + STATE(1038), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(550), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1841), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(548), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [14714] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(1402), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1404), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74564,86 +77814,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12386] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1826), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [14770] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1656), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1658), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74661,86 +77867,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12515] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + 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, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14826] = 7, + ACTIONS(2458), 1, anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2466), 1, + anon_sym_LT2, + STATE(842), 1, + sym_type_arguments, + STATE(905), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2486), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1902), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2484), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14890] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(1110), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74758,280 +77977,207 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12644] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, + anon_sym_async, + anon_sym_const, anon_sym_default, - ACTIONS(2269), 1, + anon_sym_enum, anon_sym_fn, - ACTIONS(2271), 1, anon_sym_impl, - ACTIONS(2273), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(2275), 1, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14946] = 5, + ACTIONS(2492), 1, anon_sym_BANG, - ACTIONS(2277), 1, + ACTIONS(2494), 1, anon_sym_COLON_COLON, - ACTIONS(2279), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(1030), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1060), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 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, - [12773] = 32, - ACTIONS(77), 1, + ACTIONS(2490), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2488), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2259), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15006] = 5, + ACTIONS(2500), 1, anon_sym_BANG, - ACTIONS(2277), 1, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(2279), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(1031), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1060), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 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, - [12902] = 32, - ACTIONS(77), 1, + ACTIONS(2498), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2496), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2259), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15066] = 5, + ACTIONS(2508), 1, anon_sym_BANG, - ACTIONS(2277), 1, + ACTIONS(2510), 1, anon_sym_COLON_COLON, - ACTIONS(2279), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2506), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(1034), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2504), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1060), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 17, + ACTIONS(1764), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1766), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75049,668 +78195,686 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13031] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + 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, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15182] = 5, + ACTIONS(2516), 1, + anon_sym_BANG, + ACTIONS(2518), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2514), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2512), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15242] = 6, + ACTIONS(2526), 1, + anon_sym_BANG, + ACTIONS(2528), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1770), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(2524), 6, anon_sym_async, anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 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, - [13160] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_default, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + anon_sym_unsafe, anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2522), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2520), 23, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1575), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15304] = 7, + ACTIONS(2458), 1, + anon_sym_LPAREN, + ACTIONS(2466), 1, + anon_sym_LT2, + STATE(842), 1, + sym_type_arguments, + STATE(905), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 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, - [13289] = 32, - ACTIONS(77), 1, + ACTIONS(2532), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - ACTIONS(670), 1, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2530), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15368] = 5, + ACTIONS(2534), 1, + anon_sym_else, + STATE(1059), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(383), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(381), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15427] = 5, + ACTIONS(2534), 1, + anon_sym_else, + STATE(1025), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(375), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1771), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(373), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15486] = 4, + ACTIONS(2536), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 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, - [13418] = 32, - ACTIONS(77), 1, + ACTIONS(2508), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2510), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2259), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(2263), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15543] = 4, + ACTIONS(2538), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2516), 16, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, anon_sym_BANG, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2279), 1, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(1081), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2518), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15600] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1060), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 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, - [13547] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(2500), 16, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2502), 30, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15655] = 5, + ACTIONS(2544), 1, anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1544), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + STATE(1060), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 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, - [13676] = 32, - ACTIONS(77), 1, + ACTIONS(2542), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - ACTIONS(670), 1, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2540), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15714] = 4, + ACTIONS(2546), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2500), 16, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2502), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1896), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15771] = 4, + ACTIONS(2548), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 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, - [13805] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(2492), 16, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2494), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15828] = 4, + ACTIONS(2550), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2100), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2478), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2476), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15884] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1358), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1360), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75728,32 +78892,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13934] = 3, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + 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, + [15938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, + ACTIONS(1784), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_POUND, - anon_sym_BANG, - anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(1120), 41, + ACTIONS(1786), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75771,53 +78943,93 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, anon_sym_async, - anon_sym_break, anon_sym_const, - anon_sym_continue, anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, + anon_sym_enum, + anon_sym_fn, + 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_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_move, - anon_sym_true, - anon_sym_false, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [14004] = 3, + [15992] = 5, + ACTIONS(2462), 1, + anon_sym_BANG, + ACTIONS(2552), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2352), 17, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(550), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(548), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16050] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1752), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2350), 39, + ACTIONS(1754), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75835,51 +79047,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, anon_sym_async, - anon_sym_break, anon_sym_const, - anon_sym_continue, anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, + anon_sym_enum, + anon_sym_fn, + 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_while, - anon_sym_DASH, - anon_sym_move, - anon_sym_true, - anon_sym_false, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [14069] = 3, + [16104] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(862), 17, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DASH_GT, + ACTIONS(1748), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(860), 39, + ACTIONS(1750), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75897,52 +79098,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, anon_sym_async, - anon_sym_break, anon_sym_const, - anon_sym_continue, anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, + anon_sym_enum, + anon_sym_fn, + 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_while, - anon_sym_DASH, - anon_sym_move, - anon_sym_true, - anon_sym_false, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [14134] = 3, + [16158] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(491), 18, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(1979), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2354), 38, + ACTIONS(1981), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75960,50 +79149,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, anon_sym_async, - anon_sym_break, anon_sym_const, - anon_sym_continue, anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, + anon_sym_enum, + anon_sym_fn, + 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_while, - anon_sym_move, - anon_sym_true, - anon_sym_false, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [14199] = 3, + [16212] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2358), 17, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DASH_GT, + ACTIONS(1732), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2356), 39, + ACTIONS(1734), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76021,49 +79200,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, anon_sym_async, - anon_sym_break, anon_sym_const, - anon_sym_continue, anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, + anon_sym_enum, + anon_sym_fn, + 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_while, - anon_sym_DASH, - anon_sym_move, - anon_sym_true, - anon_sym_false, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [14264] = 3, + [16266] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(1728), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(1120), 38, + ACTIONS(1730), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76081,219 +79251,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - anon_sym_ref, - anon_sym__, - anon_sym_dyn, - sym_mutable_specifier, - anon_sym_DOT_DOT, - anon_sym_true, - anon_sym_false, sym_identifier, sym_self, - sym_super, - sym_crate, - [14326] = 9, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2366), 1, - anon_sym_BANG, - ACTIONS(2368), 1, - anon_sym_COLON_COLON, - ACTIONS(2370), 1, - anon_sym_LT2, - STATE(809), 1, - sym_type_arguments, - STATE(826), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2364), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2360), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14396] = 8, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2368), 1, - anon_sym_COLON_COLON, - ACTIONS(2370), 1, - anon_sym_LT2, - STATE(809), 1, - sym_type_arguments, - STATE(826), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2374), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2372), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14463] = 8, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2368), 1, - anon_sym_COLON_COLON, - ACTIONS(2370), 1, - anon_sym_LT2, - STATE(809), 1, - sym_type_arguments, - STATE(826), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2378), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2376), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14530] = 7, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2370), 1, - anon_sym_LT2, - STATE(819), 1, - sym_type_arguments, - STATE(829), 1, - sym_parameters, + sym_super, + sym_crate, + [16320] = 4, + ACTIONS(2554), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2382), 17, + ACTIONS(2486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76304,15 +79289,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2380), 26, + ACTIONS(2484), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76328,6 +79312,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -76337,26 +79322,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14594] = 6, - ACTIONS(2390), 1, - anon_sym_BANG, - ACTIONS(2392), 1, - anon_sym_COLON_COLON, + [16376] = 4, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(2386), 16, + ACTIONS(2558), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76370,12 +79346,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2384), 23, + ACTIONS(2556), 29, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -76394,21 +79376,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14656] = 3, + [16432] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1789), 9, + ACTIONS(1834), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1791), 38, + ACTIONS(1836), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76447,21 +79427,19 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14712] = 3, + [16486] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1649), 9, + ACTIONS(1704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1651), 38, + ACTIONS(1706), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76500,133 +79478,121 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14768] = 7, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2370), 1, - anon_sym_LT2, - STATE(819), 1, - sym_type_arguments, - STATE(829), 1, - sym_parameters, + [16540] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2394), 26, + ACTIONS(1684), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14832] = 5, - ACTIONS(2402), 1, - anon_sym_BANG, - ACTIONS(2404), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1686), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [16594] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2400), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2398), 28, + ACTIONS(1632), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14892] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1634), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [16648] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1343), 9, + ACTIONS(1608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1345), 38, + ACTIONS(1610), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76665,70 +79631,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14948] = 5, - ACTIONS(2410), 1, - anon_sym_BANG, - ACTIONS(2412), 1, - anon_sym_COLON_COLON, + [16702] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2408), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2406), 28, + ACTIONS(1572), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [15008] = 5, - ACTIONS(2418), 1, - anon_sym_BANG, - ACTIONS(2420), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1574), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [16756] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2416), 17, + ACTIONS(2562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76739,14 +79697,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2414), 28, + ACTIONS(2560), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -76758,13 +79714,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -76774,20 +79731,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15068] = 7, - ACTIONS(2366), 1, - anon_sym_BANG, - ACTIONS(2422), 1, - anon_sym_LBRACE, - ACTIONS(2424), 1, + [16810] = 4, + ACTIONS(2564), 1, anon_sym_COLON_COLON, - STATE(1048), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(2486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76803,10 +79755,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(459), 28, + ACTIONS(2484), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -76832,78 +79785,223 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15132] = 7, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2370), 1, - anon_sym_LT2, - STATE(819), 1, - sym_type_arguments, - STATE(829), 1, - sym_parameters, + [16866] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2428), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1895), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2426), 26, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1897), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [16920] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1907), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [15196] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1909), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [16974] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1568), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1570), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [17028] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1518), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1520), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [17082] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1242), 9, + ACTIONS(1931), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1244), 38, + ACTIONS(1933), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76942,21 +80040,19 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15252] = 3, + [17136] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1689), 9, + ACTIONS(1951), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1691), 38, + ACTIONS(1953), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76995,124 +80091,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15308] = 5, - ACTIONS(2434), 1, - anon_sym_BANG, - ACTIONS(2436), 1, - anon_sym_COLON_COLON, + [17190] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2432), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2430), 28, + ACTIONS(1474), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [15368] = 5, - ACTIONS(2438), 1, - anon_sym_else, - STATE(1019), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(377), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(375), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15427] = 5, - ACTIONS(2444), 1, - anon_sym_SQUOTE, - STATE(1041), 1, - sym_loop_label, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1476), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [17244] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2442), 15, + ACTIONS(2568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -77128,7 +80162,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2440), 29, + ACTIONS(2566), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -77140,58 +80174,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15486] = 4, - ACTIONS(2446), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2434), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2436), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -77211,16 +80193,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15543] = 4, - ACTIONS(2448), 1, - anon_sym_LBRACE, + [17298] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2402), 16, + ACTIONS(2572), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77234,63 +80213,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2404), 29, + ACTIONS(2570), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15600] = 4, - ACTIONS(2450), 1, anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2410), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2412), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -77317,170 +80244,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15657] = 4, - ACTIONS(2452), 1, - anon_sym_LBRACE, + [17352] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2418), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2420), 29, + ACTIONS(1458), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15714] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2402), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2404), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15769] = 5, - ACTIONS(2438), 1, - anon_sym_else, - STATE(1073), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(385), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(383), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15828] = 3, + sym_metavariable, + ACTIONS(1460), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [17406] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(427), 7, + ACTIONS(1450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77488,7 +80307,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(429), 38, + ACTIONS(1452), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77527,11 +80346,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15882] = 3, + [17460] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1283), 7, + ACTIONS(1442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77539,7 +80358,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1285), 38, + ACTIONS(1444), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77578,11 +80397,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15936] = 3, + [17514] = 4, + ACTIONS(2550), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2456), 15, + ACTIONS(2486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -77598,7 +80419,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2454), 30, + ACTIONS(2484), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -77610,7 +80431,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -77629,11 +80449,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15990] = 3, + [17570] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1457), 7, + ACTIONS(1438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77641,7 +80461,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1459), 38, + ACTIONS(1440), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77680,11 +80500,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16044] = 3, + [17624] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2576), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2574), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1465), 7, + ACTIONS(1422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77692,7 +80563,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1467), 38, + ACTIONS(1424), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77731,11 +80602,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16098] = 3, + [17732] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1469), 7, + ACTIONS(1390), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77743,7 +80614,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1471), 38, + ACTIONS(1392), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77782,11 +80653,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16152] = 3, + [17786] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1477), 7, + ACTIONS(1306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77794,7 +80665,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1479), 38, + ACTIONS(1308), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77833,11 +80704,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16206] = 3, + [17840] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1481), 7, + ACTIONS(2580), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2582), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2578), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17896] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77845,7 +80768,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1483), 38, + ACTIONS(1288), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77884,11 +80807,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16260] = 3, + [17950] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1485), 7, + ACTIONS(1174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77896,7 +80819,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1487), 38, + ACTIONS(1176), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77935,11 +80858,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16314] = 3, + [18004] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1497), 7, + ACTIONS(1620), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77947,7 +80870,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1499), 38, + ACTIONS(1622), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77986,11 +80909,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16368] = 3, + [18058] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1505), 7, + ACTIONS(1576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77998,7 +80921,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1507), 38, + ACTIONS(1578), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78037,11 +80960,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16422] = 3, + [18112] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1509), 7, + ACTIONS(1150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78049,7 +80972,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1511), 38, + ACTIONS(1152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78088,11 +81011,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16476] = 3, + [18166] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1513), 7, + ACTIONS(1190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78100,7 +81023,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1515), 38, + ACTIONS(1192), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78139,11 +81062,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16530] = 3, + [18220] = 4, + ACTIONS(2584), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2460), 15, + ACTIONS(550), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -78159,7 +81084,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2458), 30, + ACTIONS(548), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -78171,7 +81096,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18276] = 5, + ACTIONS(2528), 1, anon_sym_COLON_COLON, + ACTIONS(2586), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2522), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2520), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -78190,14 +81167,113 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16584] = 4, + [18334] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2464), 2, - anon_sym_LBRACE, + ACTIONS(1146), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(2466), 15, + sym_metavariable, + ACTIONS(1148), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [18388] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1202), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1204), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [18442] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -78213,10 +81289,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2462), 28, + ACTIONS(397), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -78242,11 +81319,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16640] = 3, + anon_sym_else, + [18496] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1557), 7, + ACTIONS(578), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78254,7 +81332,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1559), 38, + ACTIONS(580), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78293,11 +81371,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16694] = 3, + [18550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1561), 7, + ACTIONS(1130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78305,7 +81383,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1563), 38, + ACTIONS(1132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78344,11 +81422,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16748] = 3, + [18604] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1565), 7, + ACTIONS(1470), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78356,7 +81434,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1567), 38, + ACTIONS(1472), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78395,11 +81473,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16802] = 3, + [18658] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1581), 7, + ACTIONS(1210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78407,7 +81485,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1583), 38, + ACTIONS(1212), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78446,11 +81524,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16856] = 3, + [18712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1589), 7, + ACTIONS(1744), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78458,7 +81536,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1591), 38, + ACTIONS(1746), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78497,11 +81575,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16910] = 3, + [18766] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1597), 7, + ACTIONS(1214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78509,7 +81587,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1599), 38, + ACTIONS(1216), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78548,11 +81626,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16964] = 3, + [18820] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1609), 7, + ACTIONS(1740), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78560,7 +81638,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1611), 38, + ACTIONS(1742), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78599,11 +81677,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17018] = 3, + [18874] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1613), 7, + ACTIONS(1226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78611,7 +81689,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1615), 38, + ACTIONS(1228), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78650,11 +81728,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17072] = 3, + [18928] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1617), 7, + ACTIONS(1270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78662,7 +81740,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1619), 38, + ACTIONS(1272), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78701,11 +81779,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17126] = 3, + [18982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1629), 7, + ACTIONS(1342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78713,7 +81791,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1631), 38, + ACTIONS(1344), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78752,11 +81830,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17180] = 3, + [19036] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1633), 7, + ACTIONS(1716), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78764,7 +81842,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1635), 38, + ACTIONS(1718), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [19090] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1230), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1232), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78803,11 +81932,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17234] = 3, + [19144] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1641), 7, + ACTIONS(1816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78815,7 +81944,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1643), 38, + ACTIONS(1818), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78854,11 +81983,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17288] = 3, + [19198] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1645), 7, + ACTIONS(1736), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78866,7 +81995,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1647), 38, + ACTIONS(1738), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78905,63 +82034,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17342] = 4, - STATE(1078), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2470), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2468), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17398] = 3, + [19252] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1661), 7, + ACTIONS(1234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78969,7 +82046,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1663), 38, + ACTIONS(1236), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79008,63 +82085,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17452] = 4, + [19306] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2472), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2466), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2462), 28, + ACTIONS(1724), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17508] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1726), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [19360] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(389), 7, + ACTIONS(423), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79072,7 +82148,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(391), 38, + ACTIONS(425), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79111,11 +82187,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17562] = 3, + [19414] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1665), 7, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79123,7 +82199,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1667), 38, + ACTIONS(1840), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79162,11 +82238,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17616] = 3, + [19468] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1669), 7, + ACTIONS(1712), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79174,7 +82250,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1671), 38, + ACTIONS(1714), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79213,11 +82289,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17670] = 3, + [19522] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1673), 7, + ACTIONS(1688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79225,7 +82301,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1675), 38, + ACTIONS(1690), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79264,62 +82340,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17724] = 3, + [19576] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2476), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2474), 30, + ACTIONS(1680), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17778] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1682), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [19630] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1677), 7, + ACTIONS(1676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79327,7 +82403,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1679), 38, + ACTIONS(1678), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79366,11 +82442,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17832] = 3, + [19684] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(397), 7, + ACTIONS(1666), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79378,7 +82454,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(399), 38, + ACTIONS(1668), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79417,11 +82493,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17886] = 3, + [19738] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1693), 7, + ACTIONS(2588), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2582), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2578), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19794] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1564), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79429,7 +82557,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1695), 38, + ACTIONS(1566), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79468,11 +82596,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17940] = 3, + [19848] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(393), 7, + ACTIONS(1350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79480,7 +82608,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(395), 38, + ACTIONS(1352), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79519,62 +82647,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17994] = 3, + [19902] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1697), 7, + ACTIONS(395), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(393), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1699), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_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, - [18048] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [19956] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1701), 7, + ACTIONS(1362), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79582,7 +82710,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1703), 38, + ACTIONS(1364), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79621,11 +82749,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18102] = 3, + [20010] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1709), 7, + ACTIONS(1382), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79633,7 +82761,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1711), 38, + ACTIONS(1384), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79672,11 +82800,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18156] = 3, + [20064] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1717), 7, + ACTIONS(1426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79684,7 +82812,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1719), 38, + ACTIONS(1428), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79723,11 +82851,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18210] = 3, + [20118] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1721), 7, + ACTIONS(1206), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79735,7 +82863,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1723), 38, + ACTIONS(1208), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79774,62 +82902,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18264] = 3, + [20172] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1725), 7, + ACTIONS(2592), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2590), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1727), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_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, - [18318] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20226] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1733), 7, + ACTIONS(1548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79837,7 +82965,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1735), 38, + ACTIONS(1550), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79876,11 +83004,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18372] = 3, + [20280] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1737), 7, + ACTIONS(1600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79888,7 +83016,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1739), 38, + ACTIONS(1602), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79927,11 +83055,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18426] = 3, + [20334] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1741), 7, + ACTIONS(1824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79939,7 +83067,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1743), 38, + ACTIONS(1826), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79978,11 +83106,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18480] = 3, + [20388] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1745), 7, + ACTIONS(2007), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79990,7 +83118,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1747), 38, + ACTIONS(2009), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80029,62 +83157,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18534] = 3, + [20442] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1749), 7, + ACTIONS(2596), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2594), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1751), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_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, - [18588] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20496] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(596), 7, + ACTIONS(2011), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80092,7 +83220,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(598), 38, + ACTIONS(2013), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80131,11 +83259,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18642] = 3, + [20550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1753), 7, + ACTIONS(1114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80143,7 +83271,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1755), 38, + ACTIONS(1116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80182,11 +83310,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18696] = 3, + [20604] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1757), 7, + ACTIONS(1830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80194,7 +83322,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1759), 38, + ACTIONS(1832), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80233,113 +83361,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18750] = 3, + [20658] = 4, + ACTIONS(2602), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1761), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2600), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1763), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_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, - [18804] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1769), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2598), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1771), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_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, - [18858] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20714] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1773), 7, + ACTIONS(2051), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80347,7 +83425,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1775), 38, + ACTIONS(2053), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80386,11 +83464,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18912] = 3, + [20768] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1781), 7, + ACTIONS(2047), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80398,7 +83476,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1783), 38, + ACTIONS(2049), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80437,11 +83515,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18966] = 3, + [20822] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 7, + ACTIONS(1410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80449,7 +83527,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1120), 38, + ACTIONS(1412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80488,11 +83566,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19020] = 3, + [20876] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1785), 7, + ACTIONS(1142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80500,7 +83578,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1787), 38, + ACTIONS(1144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80539,11 +83617,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19074] = 3, + [20930] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(467), 7, + ACTIONS(2039), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80551,7 +83629,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(469), 38, + ACTIONS(2041), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80590,11 +83668,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19128] = 3, + [20984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(413), 7, + ACTIONS(1338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80602,7 +83680,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(415), 38, + ACTIONS(1340), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80641,11 +83719,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19182] = 3, + [21038] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1110), 7, + ACTIONS(2035), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80653,7 +83731,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1112), 38, + ACTIONS(2037), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80692,11 +83770,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19236] = 3, + [21092] = 4, + ACTIONS(2608), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(395), 15, + ACTIONS(2606), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80712,7 +83792,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(393), 30, + ACTIONS(2604), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80742,118 +83822,115 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_else, - [19290] = 4, - ACTIONS(2478), 1, - anon_sym_COLON_COLON, + [21148] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2394), 29, + ACTIONS(1406), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19346] = 4, - ACTIONS(2480), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1408), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [21202] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2394), 29, + ACTIONS(2031), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19402] = 4, - ACTIONS(2482), 1, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2033), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [21256] = 4, + ACTIONS(2550), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 15, + ACTIONS(2532), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80869,7 +83946,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2394), 29, + ACTIONS(2530), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80899,11 +83976,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19458] = 3, + [21312] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1825), 7, + ACTIONS(2027), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80911,7 +83988,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1827), 38, + ACTIONS(2029), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80950,11 +84027,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19512] = 3, + [21366] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1833), 7, + ACTIONS(1378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80962,7 +84039,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1835), 38, + ACTIONS(1380), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81001,11 +84078,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19566] = 3, + [21420] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1291), 7, + ACTIONS(2023), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81013,7 +84090,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1293), 38, + ACTIONS(2025), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81052,11 +84129,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19620] = 3, + [21474] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1845), 7, + ACTIONS(1414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81064,7 +84141,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1847), 38, + ACTIONS(1416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81103,11 +84180,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19674] = 3, + [21528] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1234), 7, + ACTIONS(1398), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81115,7 +84192,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1236), 38, + ACTIONS(1400), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81154,11 +84231,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19728] = 3, + [21582] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1849), 7, + ACTIONS(1394), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81166,7 +84243,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1851), 38, + ACTIONS(1396), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81205,11 +84282,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19782] = 3, + [21636] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1861), 7, + ACTIONS(1386), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81217,7 +84294,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1863), 38, + ACTIONS(1388), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81256,62 +84333,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19836] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(399), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(397), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [19890] = 3, + [21690] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1214), 7, + ACTIONS(1346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81319,7 +84345,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1216), 38, + ACTIONS(1348), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81358,165 +84384,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19944] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2486), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2484), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19998] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2490), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2488), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20052] = 4, - ACTIONS(2492), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(461), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(459), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20108] = 3, + [21744] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1881), 7, + ACTIONS(1326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81524,7 +84396,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1883), 38, + ACTIONS(1328), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81563,11 +84435,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20162] = 3, + [21798] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1885), 7, + ACTIONS(582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81575,7 +84447,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1887), 38, + ACTIONS(584), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81614,11 +84486,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20216] = 3, + [21852] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1889), 7, + ACTIONS(2019), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81626,7 +84498,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1891), 38, + ACTIONS(2021), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81665,11 +84537,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20270] = 3, + [21906] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1893), 7, + ACTIONS(2015), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81677,7 +84549,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1895), 38, + ACTIONS(2017), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81716,11 +84588,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20324] = 3, + [21960] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2496), 15, + ACTIONS(2612), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81736,7 +84608,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2494), 30, + ACTIONS(2610), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81748,7 +84620,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -81767,11 +84639,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20378] = 3, + [22014] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1913), 7, + ACTIONS(1310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81779,7 +84651,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1915), 38, + ACTIONS(1312), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81818,11 +84690,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20432] = 3, + [22068] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1921), 7, + ACTIONS(1552), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81830,7 +84702,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1923), 38, + ACTIONS(1554), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81869,114 +84741,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20486] = 3, + [22122] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2500), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2498), 30, + ACTIONS(2003), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20540] = 4, - ACTIONS(2506), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2504), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2502), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20596] = 3, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2005), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [22176] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1925), 7, + ACTIONS(1298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81984,7 +84804,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1927), 38, + ACTIONS(1300), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82023,116 +84843,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20650] = 4, - ACTIONS(2482), 1, - anon_sym_COLON_COLON, + [22230] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2428), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2426), 29, + ACTIONS(1596), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20706] = 5, - ACTIONS(2392), 1, - anon_sym_COLON_COLON, - ACTIONS(2508), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2386), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2384), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20764] = 3, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1598), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [22284] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1929), 7, + ACTIONS(1648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82140,7 +84906,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1931), 38, + ACTIONS(1650), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82179,115 +84945,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20818] = 4, - ACTIONS(2482), 1, - anon_sym_COLON_COLON, + [22338] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2382), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2380), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20874] = 4, - ACTIONS(2514), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2512), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2510), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20930] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1493), 7, + ACTIONS(1999), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82295,7 +84957,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1495), 38, + ACTIONS(2001), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82334,11 +84996,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20984] = 3, + [22392] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1947), 7, + ACTIONS(1796), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82346,7 +85008,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1949), 38, + ACTIONS(1798), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82385,63 +85047,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21038] = 4, - ACTIONS(2520), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2518), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2516), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21094] = 3, + [22446] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1943), 7, + ACTIONS(1991), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82449,7 +85059,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1945), 38, + ACTIONS(1993), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82488,11 +85098,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21148] = 3, + [22500] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1525), 7, + ACTIONS(1987), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82500,7 +85110,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1527), 38, + ACTIONS(1989), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82539,11 +85149,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21202] = 3, + [22554] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1545), 7, + ACTIONS(2616), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2614), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22608] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1696), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82551,7 +85212,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1547), 38, + ACTIONS(1698), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82590,11 +85251,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21256] = 3, + [22662] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1937), 7, + ACTIONS(437), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82602,7 +85263,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1939), 38, + ACTIONS(439), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82641,11 +85302,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21310] = 3, + [22716] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1549), 7, + ACTIONS(1963), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82653,7 +85314,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1551), 38, + ACTIONS(1965), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82692,11 +85353,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21364] = 3, + [22770] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1573), 7, + ACTIONS(1919), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82704,7 +85365,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1575), 38, + ACTIONS(1921), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82743,11 +85404,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21418] = 3, + [22824] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1933), 7, + ACTIONS(1294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82755,7 +85416,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1935), 38, + ACTIONS(1296), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82794,11 +85455,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21472] = 3, + [22878] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1585), 7, + ACTIONS(1971), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82806,7 +85467,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1587), 38, + ACTIONS(1973), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82845,11 +85506,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21526] = 3, + [22932] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1917), 7, + ACTIONS(1756), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82857,7 +85518,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1919), 38, + ACTIONS(1758), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82896,11 +85557,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21580] = 3, + [22986] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1909), 7, + ACTIONS(1640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82908,7 +85569,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1911), 38, + ACTIONS(1642), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82947,11 +85608,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21634] = 3, + [23040] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1905), 7, + ACTIONS(1106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82959,7 +85620,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1907), 38, + ACTIONS(1108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82998,11 +85659,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21688] = 3, + [23094] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1901), 7, + ACTIONS(1939), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83010,7 +85671,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1903), 38, + ACTIONS(1941), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83049,11 +85710,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21742] = 3, + [23148] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1897), 7, + ACTIONS(1274), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83061,7 +85722,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1899), 38, + ACTIONS(1276), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83100,11 +85761,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21796] = 3, + [23202] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1877), 7, + ACTIONS(1540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83112,7 +85773,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1879), 38, + ACTIONS(1542), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83151,11 +85812,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21850] = 3, + [23256] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1873), 7, + ACTIONS(1935), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83163,7 +85824,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1875), 38, + ACTIONS(1937), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83202,11 +85863,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21904] = 3, + [23310] = 4, + ACTIONS(2622), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2620), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2618), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23366] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1605), 7, + ACTIONS(1510), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83214,7 +85927,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1607), 38, + ACTIONS(1512), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83253,11 +85966,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21958] = 3, + [23420] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1865), 7, + ACTIONS(1506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83265,7 +85978,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1867), 38, + ACTIONS(1508), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83304,11 +86017,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22012] = 3, + [23474] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1857), 7, + ACTIONS(1514), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83316,7 +86029,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1859), 38, + ACTIONS(1516), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83355,11 +86068,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22066] = 3, + [23528] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1853), 7, + ACTIONS(1927), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83367,7 +86080,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1855), 38, + ACTIONS(1929), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83406,11 +86119,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22120] = 3, + [23582] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1841), 7, + ACTIONS(1262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83418,7 +86131,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1843), 38, + ACTIONS(1264), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83457,11 +86170,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22174] = 3, + [23636] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1837), 7, + ACTIONS(1482), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83469,7 +86182,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1839), 38, + ACTIONS(1484), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83508,11 +86221,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22228] = 3, + [23690] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1106), 7, + ACTIONS(1923), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83520,7 +86233,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1108), 38, + ACTIONS(1925), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83559,11 +86272,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22282] = 3, + [23744] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1621), 7, + ACTIONS(1462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83571,7 +86284,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1623), 38, + ACTIONS(1464), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83610,62 +86323,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22336] = 3, + [23798] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(836), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(838), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22390] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1829), 7, + ACTIONS(1222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83673,7 +86335,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1831), 38, + ACTIONS(1224), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83712,113 +86374,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22444] = 3, + [23852] = 4, + ACTIONS(2628), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1819), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2626), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1821), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_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, - [22498] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1809), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2624), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1811), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_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, - [22552] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23908] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1805), 7, + ACTIONS(1434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83826,7 +86438,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1807), 38, + ACTIONS(1436), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83865,11 +86477,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22606] = 3, + [23962] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1637), 7, + ACTIONS(1536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83877,7 +86489,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1639), 38, + ACTIONS(1538), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83916,11 +86528,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22660] = 3, + [24016] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1801), 7, + ACTIONS(1430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83928,7 +86540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1803), 38, + ACTIONS(1432), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83967,11 +86579,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22714] = 3, + [24070] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1793), 7, + ACTIONS(1915), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83979,7 +86591,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1795), 38, + ACTIONS(1917), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84018,11 +86630,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22768] = 3, + [24124] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1777), 7, + ACTIONS(1366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84030,7 +86642,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1779), 38, + ACTIONS(1368), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84069,11 +86681,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22822] = 3, + [24178] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1713), 7, + ACTIONS(1556), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84081,7 +86693,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1715), 38, + ACTIONS(1558), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84120,11 +86732,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22876] = 3, + [24232] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1765), 7, + ACTIONS(1254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84132,7 +86744,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1767), 38, + ACTIONS(1256), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84171,11 +86783,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22930] = 3, + [24286] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1729), 7, + ACTIONS(1194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84183,7 +86795,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1731), 38, + ACTIONS(1196), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84222,11 +86834,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22984] = 3, + [24340] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1685), 7, + ACTIONS(1162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84234,7 +86846,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1687), 38, + ACTIONS(1164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84273,11 +86885,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23038] = 3, + [24394] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1869), 7, + ACTIONS(1911), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84285,7 +86897,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1871), 38, + ACTIONS(1913), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84324,11 +86936,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23092] = 3, + [24448] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1657), 7, + ACTIONS(1644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84336,7 +86948,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1659), 38, + ACTIONS(1646), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84375,11 +86987,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23146] = 3, + [24502] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1653), 7, + ACTIONS(1652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84387,7 +86999,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1655), 38, + ACTIONS(1654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84426,11 +87038,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23200] = 3, + [24556] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1625), 7, + ACTIONS(1560), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84438,7 +87050,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1627), 38, + ACTIONS(1562), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84477,11 +87089,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23254] = 3, + [24610] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1951), 7, + ACTIONS(1670), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84489,7 +87101,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1953), 38, + ACTIONS(1672), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84528,11 +87140,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23308] = 3, + [24664] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1955), 7, + ACTIONS(1768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84540,7 +87152,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1957), 38, + ACTIONS(1770), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84579,62 +87191,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23362] = 3, + [24718] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1797), 7, + ACTIONS(852), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(854), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1799), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_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, - [23416] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24772] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1601), 7, + ACTIONS(1903), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84642,7 +87254,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1603), 38, + ACTIONS(1905), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84681,11 +87293,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23470] = 3, + [24826] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1593), 7, + ACTIONS(1899), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84693,7 +87305,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1595), 38, + ACTIONS(1901), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84732,11 +87344,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23524] = 3, + [24880] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1705), 7, + ACTIONS(1776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84744,7 +87356,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1707), 38, + ACTIONS(1778), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84783,11 +87395,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23578] = 3, + [24934] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1577), 7, + ACTIONS(1580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84795,7 +87407,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1579), 38, + ACTIONS(1582), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84834,62 +87446,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23632] = 3, + [24988] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(391), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(389), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [23686] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1681), 7, + ACTIONS(1592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84897,7 +87458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1683), 38, + ACTIONS(1594), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84936,11 +87497,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23740] = 3, + [25042] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1553), 7, + ACTIONS(1780), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84948,7 +87509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1555), 38, + ACTIONS(1782), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84987,62 +87548,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23794] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2524), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2522), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23848] = 3, + [25096] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1569), 7, + ACTIONS(1612), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85050,7 +87560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1571), 38, + ACTIONS(1614), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85089,11 +87599,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23902] = 3, + [25150] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1541), 7, + ACTIONS(1891), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85101,7 +87611,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1543), 38, + ACTIONS(1893), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85140,11 +87650,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23956] = 3, + [25204] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1537), 7, + ACTIONS(1800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85152,7 +87662,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1539), 38, + ACTIONS(1802), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85191,11 +87701,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24010] = 3, + [25258] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1533), 7, + ACTIONS(1875), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85203,7 +87713,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1535), 38, + ACTIONS(1877), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85242,62 +87752,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24064] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2528), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2526), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24118] = 3, + [25312] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1529), 7, + ACTIONS(1624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85305,7 +87764,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1531), 38, + ACTIONS(1626), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85344,11 +87803,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24172] = 3, + [25366] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1521), 7, + ACTIONS(1636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85356,7 +87815,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1523), 38, + ACTIONS(1638), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85395,11 +87854,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24226] = 3, + [25420] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1517), 7, + ACTIONS(1808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85407,7 +87866,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1519), 38, + ACTIONS(1810), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85446,11 +87905,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24280] = 3, + [25474] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1102), 7, + ACTIONS(1983), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85458,7 +87917,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1104), 38, + ACTIONS(1985), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85497,11 +87956,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24334] = 3, + [25528] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1473), 7, + ACTIONS(1871), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85509,7 +87968,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1475), 38, + ACTIONS(1873), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85548,11 +88007,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24388] = 3, + [25582] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1453), 7, + ACTIONS(1708), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85560,7 +88019,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1455), 38, + ACTIONS(1710), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85599,11 +88058,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24442] = 3, + [25636] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1449), 7, + ACTIONS(1887), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85611,7 +88070,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1451), 38, + ACTIONS(1889), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85650,11 +88109,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24496] = 3, + [25690] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1445), 7, + ACTIONS(397), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85662,7 +88121,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1447), 38, + ACTIONS(399), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85701,62 +88160,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24550] = 3, + [25744] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2530), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24604] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1441), 7, + ACTIONS(1118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85764,7 +88172,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1443), 38, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85803,11 +88211,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24658] = 3, + [25798] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1437), 7, + ACTIONS(1122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85815,7 +88223,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1439), 38, + ACTIONS(1124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85854,11 +88262,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24712] = 3, + [25852] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1431), 7, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85866,7 +88274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1433), 38, + ACTIONS(1806), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85905,11 +88313,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24766] = 3, + [25906] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1427), 7, + ACTIONS(1812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85917,7 +88325,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1429), 38, + ACTIONS(1814), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85956,11 +88364,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24820] = 3, + [25960] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1423), 7, + ACTIONS(1792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85968,7 +88376,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1425), 38, + ACTIONS(1794), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86007,11 +88415,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24874] = 3, + [26014] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1419), 7, + ACTIONS(1154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86019,7 +88427,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1421), 38, + ACTIONS(1156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86058,11 +88466,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24928] = 3, + [26068] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1415), 7, + ACTIONS(1760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86070,7 +88478,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1417), 38, + ACTIONS(1762), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86109,11 +88517,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24982] = 3, + [26122] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1411), 7, + ACTIONS(1967), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86121,7 +88529,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1413), 38, + ACTIONS(1969), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86160,11 +88568,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25036] = 3, + [26176] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1407), 7, + ACTIONS(1975), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86172,7 +88580,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1409), 38, + ACTIONS(1977), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86211,11 +88619,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25090] = 3, + [26230] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1403), 7, + ACTIONS(1102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86223,7 +88631,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1405), 38, + ACTIONS(1104), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86262,11 +88670,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25144] = 3, + [26284] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1399), 7, + ACTIONS(2632), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2630), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26338] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86274,7 +88733,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1401), 38, + ACTIONS(1128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86313,11 +88772,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25198] = 3, + [26392] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1387), 7, + ACTIONS(1883), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86325,7 +88784,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1389), 38, + ACTIONS(1885), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86364,11 +88823,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25252] = 3, + [26446] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1489), 7, + ACTIONS(1134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86376,7 +88835,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1491), 38, + ACTIONS(1136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86415,11 +88874,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25306] = 3, + [26500] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1383), 7, + ACTIONS(1995), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86427,7 +88886,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1385), 38, + ACTIONS(1997), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86466,11 +88925,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25360] = 3, + [26554] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1461), 7, + ACTIONS(1720), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86478,7 +88937,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1463), 38, + ACTIONS(1722), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86517,15 +88976,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25414] = 5, - ACTIONS(2366), 1, - anon_sym_BANG, - ACTIONS(2534), 1, - anon_sym_COLON_COLON, + [26608] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(2636), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86541,10 +88996,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(459), 28, + ACTIONS(2634), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86552,6 +89008,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -86570,11 +89027,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25472] = 3, + [26662] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1379), 7, + ACTIONS(1700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86582,7 +89039,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1381), 38, + ACTIONS(1702), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86621,11 +89078,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25526] = 3, + [26716] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1375), 7, + ACTIONS(1955), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86633,7 +89090,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1377), 38, + ACTIONS(1957), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86672,11 +89129,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25580] = 3, + [26770] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1371), 7, + ACTIONS(393), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86684,7 +89141,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1373), 38, + ACTIONS(395), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86723,62 +89180,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25634] = 3, + [26824] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2400), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2398), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [25688] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1367), 7, + ACTIONS(1314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86786,7 +89192,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1369), 38, + ACTIONS(1316), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86825,11 +89231,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25742] = 3, + [26878] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1363), 7, + ACTIONS(1186), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86837,7 +89243,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1365), 38, + ACTIONS(1188), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86876,11 +89282,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25796] = 3, + [26932] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1359), 7, + ACTIONS(1138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86888,7 +89294,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1361), 38, + ACTIONS(1140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86927,11 +89333,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25850] = 3, + [26986] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1355), 7, + ACTIONS(1692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86939,7 +89345,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1357), 38, + ACTIONS(1694), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86978,11 +89384,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25904] = 3, + [27040] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1351), 7, + ACTIONS(2640), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2638), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27094] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1959), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86990,7 +89447,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1353), 38, + ACTIONS(1961), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87029,11 +89486,115 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25958] = 3, + [27148] = 4, + ACTIONS(2646), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2644), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2642), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27204] = 4, + ACTIONS(2652), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1347), 7, + ACTIONS(2650), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2648), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27260] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1947), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87041,7 +89602,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1349), 38, + ACTIONS(1949), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87080,11 +89641,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26012] = 3, + [27314] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1339), 7, + ACTIONS(389), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87092,7 +89653,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1341), 38, + ACTIONS(391), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87131,63 +89692,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26066] = 4, - ACTIONS(2540), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2538), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2536), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26122] = 3, + [27368] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1315), 7, + ACTIONS(1158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87195,7 +89704,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1317), 38, + ACTIONS(1160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87234,11 +89743,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26176] = 3, + [27422] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1311), 7, + ACTIONS(2043), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87246,7 +89755,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1313), 38, + ACTIONS(2045), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87285,63 +89794,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26230] = 4, - ACTIONS(2546), 1, - anon_sym_DASH_GT, + [27476] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2542), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26286] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1335), 7, + ACTIONS(1166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87349,7 +89806,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1337), 38, + ACTIONS(1168), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87388,11 +89845,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26340] = 3, + [27530] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1331), 7, + ACTIONS(1170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87400,7 +89857,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1333), 38, + ACTIONS(1172), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87439,63 +89896,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26394] = 4, - ACTIONS(2552), 1, - anon_sym_DASH_GT, + [27584] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2548), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26450] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1303), 7, + ACTIONS(1198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87503,7 +89908,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1305), 38, + ACTIONS(1200), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87542,11 +89947,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26504] = 3, + [27638] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1230), 7, + ACTIONS(1544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87554,7 +89959,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1232), 38, + ACTIONS(1546), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87593,11 +89998,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26558] = 3, + [27692] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1327), 7, + ACTIONS(1943), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87605,7 +90010,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1329), 38, + ACTIONS(1945), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87644,63 +90049,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26612] = 4, - ACTIONS(2558), 1, - anon_sym_DASH_GT, + [27746] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2556), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2554), 29, + ACTIONS(1218), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26668] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1220), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [27800] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1226), 7, + ACTIONS(1530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87708,7 +90112,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1228), 38, + ACTIONS(1532), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87747,11 +90151,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26722] = 3, + [27854] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1323), 7, + ACTIONS(1526), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87759,7 +90163,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1325), 38, + ACTIONS(1528), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87798,11 +90202,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26776] = 3, + [27908] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1222), 7, + ACTIONS(1238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87810,7 +90214,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1224), 38, + ACTIONS(1240), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87849,11 +90253,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26830] = 3, + [27962] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1218), 7, + ACTIONS(1522), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87861,7 +90265,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1220), 38, + ACTIONS(1524), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87900,11 +90304,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26884] = 3, + [28016] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1186), 7, + ACTIONS(1879), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87912,7 +90316,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1188), 38, + ACTIONS(1881), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87951,11 +90355,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26938] = 3, + [28070] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1319), 7, + ACTIONS(1242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87963,7 +90367,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1321), 38, + ACTIONS(1244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88002,11 +90406,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26992] = 3, + [28124] = 4, + ACTIONS(2658), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1182), 7, + ACTIONS(2656), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2654), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88014,7 +90470,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1184), 38, + ACTIONS(1480), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88053,11 +90509,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27046] = 3, + [28234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1178), 7, + ACTIONS(1466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88065,7 +90521,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1180), 38, + ACTIONS(1468), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88104,11 +90560,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27100] = 3, + [28288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1162), 7, + ACTIONS(1246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88116,7 +90572,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1164), 38, + ACTIONS(1248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88155,11 +90611,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27154] = 3, + [28342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1158), 7, + ACTIONS(1250), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88167,7 +90623,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1160), 38, + ACTIONS(1252), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88206,11 +90662,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27208] = 3, + [28396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1154), 7, + ACTIONS(1454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88218,7 +90674,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1156), 38, + ACTIONS(1456), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88257,11 +90713,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27262] = 3, + [28450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1130), 7, + ACTIONS(1374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88269,7 +90725,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1132), 38, + ACTIONS(1376), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88308,11 +90764,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27316] = 3, + [28504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1126), 7, + ACTIONS(1370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88320,7 +90776,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1128), 38, + ACTIONS(1372), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88359,11 +90815,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27370] = 3, + [28558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1114), 7, + ACTIONS(1628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88371,7 +90827,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1116), 38, + ACTIONS(1630), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88410,11 +90866,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27424] = 3, + [28612] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1122), 7, + ACTIONS(1354), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88422,7 +90878,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1124), 38, + ACTIONS(1356), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88461,62 +90917,113 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27478] = 3, + [28666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2562), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1258), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2560), 30, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1260), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [28720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1334), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27532] = 3, + sym_metavariable, + ACTIONS(1336), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_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, + [28774] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1134), 7, + ACTIONS(1330), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88524,7 +91031,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1136), 38, + ACTIONS(1332), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88563,11 +91070,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27586] = 3, + [28828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1307), 7, + ACTIONS(1322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88575,7 +91082,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1309), 38, + ACTIONS(1324), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88614,11 +91121,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27640] = 3, + [28882] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1299), 7, + ACTIONS(1318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88626,7 +91133,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1301), 38, + ACTIONS(1320), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88665,11 +91172,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27694] = 3, + [28936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1295), 7, + ACTIONS(1266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88677,7 +91184,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1297), 38, + ACTIONS(1268), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88716,11 +91223,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27748] = 3, + [28990] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1287), 7, + ACTIONS(1588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88728,7 +91235,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1289), 38, + ACTIONS(1590), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88767,11 +91274,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27802] = 3, + [29044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1138), 7, + ACTIONS(1278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88779,7 +91286,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1140), 38, + ACTIONS(1280), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88818,11 +91325,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27856] = 3, + [29098] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2566), 15, + ACTIONS(391), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88838,7 +91345,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2564), 30, + ACTIONS(389), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88850,7 +91357,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -88869,11 +91375,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27910] = 3, + anon_sym_else, + [29152] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1142), 7, + ACTIONS(1282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88881,7 +91388,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1144), 38, + ACTIONS(1284), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88920,11 +91427,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27964] = 3, + [29206] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1146), 7, + ACTIONS(1290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88932,7 +91439,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1148), 38, + ACTIONS(1292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88971,11 +91478,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28018] = 3, + [29260] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1279), 7, + ACTIONS(1446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88983,7 +91490,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1281), 38, + ACTIONS(1448), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89022,62 +91529,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28072] = 3, + [29314] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1150), 7, + ACTIONS(2498), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2496), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1152), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_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, - [28126] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [29368] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1246), 7, + ACTIONS(1182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89085,7 +91592,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1248), 38, + ACTIONS(1184), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89124,11 +91631,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28180] = 3, + [29422] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1238), 7, + ACTIONS(1178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89136,7 +91643,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1240), 38, + ACTIONS(1180), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89175,11 +91682,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28234] = 3, + [29476] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1210), 7, + ACTIONS(1788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89187,7 +91694,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1212), 38, + ACTIONS(1790), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89226,11 +91733,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28288] = 3, + [29530] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1170), 7, + ACTIONS(1820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89238,7 +91745,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1172), 38, + ACTIONS(1822), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89277,11 +91784,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28342] = 3, + [29584] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1174), 7, + ACTIONS(1418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89289,7 +91796,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1176), 38, + ACTIONS(1420), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89328,11 +91835,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28396] = 3, + [29638] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2155), 15, + ACTIONS(2662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89348,7 +91855,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2157), 29, + ACTIONS(2660), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89360,6 +91867,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -89378,11 +91886,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28449] = 3, + [29692] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 15, + ACTIONS(2666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89398,7 +91906,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2568), 29, + ACTIONS(2664), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89428,11 +91936,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28502] = 3, + [29745] = 19, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2678), 1, + anon_sym_EQ, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2688), 1, + anon_sym_AMP_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, + anon_sym_DOT, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(429), 15, + ACTIONS(2674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2680), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2676), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2696), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2668), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29830] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2704), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89448,7 +92022,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(427), 29, + ACTIONS(2702), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89478,61 +92052,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28555] = 18, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2582), 1, + [29883] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(429), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2586), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2602), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + ACTIONS(427), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2708), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2572), 19, + anon_sym_DOT, + ACTIONS(2706), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89543,51 +92152,90 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28638] = 14, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + [29989] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(411), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2582), 4, + anon_sym_DOT, + ACTIONS(409), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30042] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2712), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2572), 24, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2710), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -89604,50 +92252,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28713] = 17, - ACTIONS(2574), 1, + [30095] = 10, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2582), 1, - anon_sym_EQ, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2572), 20, + ACTIONS(2716), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2714), 24, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -89658,6 +92295,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89668,42 +92309,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28794] = 13, - ACTIONS(2574), 1, + [30162] = 9, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2716), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2582), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2572), 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2714), 24, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -89728,48 +92365,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28867] = 11, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2602), 1, - anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + [30227] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(584), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2580), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2582), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2572), 24, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(582), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -89786,11 +92415,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28936] = 3, + [30280] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 15, + ACTIONS(592), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89806,7 +92435,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2604), 29, + ACTIONS(590), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89836,11 +92465,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28989] = 3, + [30333] = 4, + ACTIONS(2528), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(407), 15, + ACTIONS(2522), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89856,11 +92487,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(405), 29, + ACTIONS(2520), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -89886,11 +92516,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29042] = 3, + [30388] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 15, + ACTIONS(600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89906,7 +92536,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2608), 29, + ACTIONS(598), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89936,62 +92566,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29095] = 19, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2614), 1, - anon_sym_EQ, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - STATE(1078), 1, - sym_arguments, + [30441] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2720), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2612), 18, + anon_sym_DOT, + ACTIONS(2718), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90002,11 +92616,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29180] = 3, + [30494] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 15, + ACTIONS(2724), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90022,7 +92636,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2618), 29, + ACTIONS(2722), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90052,62 +92666,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29233] = 19, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, - anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + [30547] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2728), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2622), 18, + anon_sym_DOT, + ACTIONS(2726), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90118,11 +92716,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29318] = 3, + [30600] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(403), 15, + ACTIONS(2732), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90138,7 +92736,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(401), 29, + ACTIONS(2730), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90168,11 +92766,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29371] = 3, + [30653] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 15, + ACTIONS(2736), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90188,7 +92786,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2626), 29, + ACTIONS(2734), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90218,47 +92816,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29424] = 4, - ACTIONS(2392), 1, - anon_sym_COLON_COLON, + [30706] = 19, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2688), 1, + anon_sym_AMP_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2740), 1, + anon_sym_EQ, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 15, + ACTIONS(2674), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2676), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2384), 28, + ACTIONS(2696), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2738), 18, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90269,11 +92882,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29479] = 3, + [30791] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 15, + ACTIONS(2744), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90289,7 +92902,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2630), 29, + ACTIONS(2742), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90319,47 +92932,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29532] = 10, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2602), 1, - anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + [30844] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2582), 10, + ACTIONS(2748), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2572), 24, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2746), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -90376,40 +92982,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29599] = 3, + [30897] = 15, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, + anon_sym_DOT, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 15, + ACTIONS(2674), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2676), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2634), 29, + ACTIONS(2716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2714), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -90426,30 +93044,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29652] = 9, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2602), 1, - anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + [30974] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2582), 13, + ACTIONS(2752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -90457,15 +93063,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2572), 24, + anon_sym_DOT, + ACTIONS(2750), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -90482,11 +93094,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29717] = 3, + [31027] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(441), 15, + ACTIONS(2756), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90502,7 +93114,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(439), 29, + ACTIONS(2754), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90532,40 +93144,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29770] = 3, + [31080] = 12, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2700), 1, + anon_sym_DOT, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(2674), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2676), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2716), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2638), 29, + ACTIONS(2714), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -90582,11 +93203,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29823] = 3, + [31151] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2644), 15, + ACTIONS(2760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90602,7 +93223,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2642), 29, + ACTIONS(2758), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90632,11 +93253,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29876] = 3, + [31204] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, + ACTIONS(2486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90652,7 +93273,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2646), 29, + ACTIONS(2484), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90682,46 +93303,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29929] = 3, + [31257] = 17, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2716), 1, + anon_sym_EQ, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2652), 15, + ACTIONS(2674), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2676), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2650), 29, + ACTIONS(2696), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2714), 20, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90732,11 +93367,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29982] = 3, + [31338] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2656), 15, + ACTIONS(2764), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90752,7 +93387,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2654), 29, + ACTIONS(2762), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90782,61 +93417,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30035] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2660), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2658), 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_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30088] = 3, + [31391] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2664), 15, + ACTIONS(2764), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90852,7 +93437,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2662), 29, + ACTIONS(2762), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90882,54 +93467,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30141] = 19, - ACTIONS(2574), 1, + [31444] = 18, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2668), 1, + ACTIONS(2716), 1, anon_sym_EQ, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2666), 18, + ACTIONS(2714), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -90938,6 +93521,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90948,44 +93532,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30226] = 15, - ACTIONS(2574), 1, + [31527] = 14, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2582), 3, + ACTIONS(2716), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2572), 24, + anon_sym_PIPE, + ACTIONS(2714), 24, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -91010,11 +93593,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30303] = 3, + [31602] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 15, + ACTIONS(403), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91030,7 +93613,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2670), 29, + ACTIONS(401), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91060,40 +93643,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30356] = 3, + [31655] = 13, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2700), 1, + anon_sym_DOT, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2466), 15, + ACTIONS(2674), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2676), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2716), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2462), 29, + ACTIONS(2714), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -91110,40 +93703,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30409] = 3, + [31728] = 11, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2700), 1, + anon_sym_DOT, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(465), 15, + ACTIONS(2674), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2676), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2716), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(463), 29, + ACTIONS(2714), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -91160,49 +93761,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30462] = 12, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2602), 1, - anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + [31797] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2768), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2582), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2572), 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2766), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -91219,11 +93811,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30533] = 3, + [31850] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 15, + ACTIONS(554), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91239,7 +93831,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2674), 29, + ACTIONS(552), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91269,11 +93861,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30586] = 3, + [31903] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2680), 15, + ACTIONS(2289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91289,7 +93881,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2678), 29, + ACTIONS(2291), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91319,30 +93911,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30639] = 9, - ACTIONS(2574), 1, + [31956] = 19, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2590), 1, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2602), 1, + ACTIONS(2688), 1, + anon_sym_AMP_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, anon_sym_DOT, - STATE(1078), 1, + ACTIONS(2772), 1, + anon_sym_EQ, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, + ACTIONS(2674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2680), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2684), 13, + ACTIONS(2698), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2676), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2696), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2770), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32041] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2776), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -91350,15 +93996,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 24, + anon_sym_DOT, + ACTIONS(2774), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -91375,24 +94027,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30704] = 6, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - STATE(1078), 1, - sym_arguments, + [32094] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(313), 14, + ACTIONS(2780), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -91401,10 +94047,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(311), 26, + ACTIONS(2778), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -91412,6 +94059,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -91428,61 +94077,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30763] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2688), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2686), 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_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30816] = 3, + [32147] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(425), 15, + ACTIONS(2784), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91498,7 +94097,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(423), 29, + ACTIONS(2782), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91528,11 +94127,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30869] = 3, + [32200] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2692), 15, + ACTIONS(415), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91548,7 +94147,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2690), 29, + ACTIONS(413), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91578,61 +94177,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30922] = 3, + [32253] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2696), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2694), 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_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30975] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2700), 15, + ACTIONS(2582), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91648,7 +94197,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2698), 29, + ACTIONS(2578), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91678,11 +94227,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31028] = 3, + [32306] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 15, + ACTIONS(2788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91698,7 +94247,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2702), 29, + ACTIONS(2786), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91728,11 +94277,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31081] = 3, + [32359] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 15, + ACTIONS(2792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91748,7 +94297,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2706), 29, + ACTIONS(2790), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91778,11 +94327,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31134] = 3, + [32412] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 15, + ACTIONS(407), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91798,7 +94347,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2710), 29, + ACTIONS(405), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91828,11 +94377,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31187] = 3, + [32465] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 15, + ACTIONS(2796), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91848,7 +94397,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2710), 29, + ACTIONS(2794), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91878,11 +94427,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31240] = 3, + [32518] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2716), 12, + ACTIONS(2800), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -91895,7 +94444,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2714), 32, + ACTIONS(2798), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91928,62 +94477,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31293] = 4, - ACTIONS(2722), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2720), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2718), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31348] = 3, + [32571] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2726), 15, + ACTIONS(604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91999,7 +94497,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2724), 29, + ACTIONS(602), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92029,11 +94527,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31401] = 3, + [32624] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 15, + ACTIONS(2305), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92049,7 +94547,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2728), 29, + ACTIONS(2307), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92079,11 +94577,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31454] = 3, + [32677] = 4, + ACTIONS(2802), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, + ACTIONS(550), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92099,11 +94599,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2732), 29, + ACTIONS(548), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -92129,11 +94628,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31507] = 3, + [32732] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2806), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2804), 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_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32785] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2738), 15, + ACTIONS(2810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92149,7 +94698,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2736), 29, + ACTIONS(2808), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92179,11 +94728,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31560] = 3, + [32838] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(453), 15, + ACTIONS(550), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92199,7 +94748,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(451), 29, + ACTIONS(548), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92229,61 +94778,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31613] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2742), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2740), 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_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31666] = 3, + [32891] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 15, + ACTIONS(2814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92299,7 +94798,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2744), 29, + ACTIONS(2812), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92329,11 +94828,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31719] = 3, + [32944] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2159), 15, + ACTIONS(2818), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92349,7 +94848,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2161), 29, + ACTIONS(2816), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92379,61 +94878,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31772] = 3, + [32997] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(425), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2748), 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_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31825] = 3, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(423), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33050] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(2822), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92449,7 +94948,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(459), 29, + ACTIONS(2820), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92479,11 +94978,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31878] = 3, + [33103] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(602), 15, + ACTIONS(2826), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92499,7 +94998,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(600), 29, + ACTIONS(2824), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92529,11 +95028,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31931] = 3, + [33156] = 4, + ACTIONS(2832), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2830), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2828), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33211] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 15, + ACTIONS(2836), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92549,7 +95099,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2752), 29, + ACTIONS(2834), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92579,11 +95129,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31984] = 3, + [33264] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2758), 15, + ACTIONS(2840), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92599,7 +95149,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2756), 29, + ACTIONS(2838), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92629,11 +95179,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32037] = 3, + [33317] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(598), 15, + ACTIONS(2844), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92649,7 +95199,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(596), 29, + ACTIONS(2842), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92679,87 +95229,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32090] = 22, - ACTIONS(2574), 1, + [33370] = 9, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2760), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2768), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32181] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2772), 15, + ACTIONS(2848), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -92767,21 +95260,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2770), 29, + ACTIONS(2846), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -92798,11 +95285,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32234] = 3, + [33435] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2776), 15, + ACTIONS(2852), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92818,7 +95305,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2774), 29, + ACTIONS(2850), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92848,11 +95335,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32287] = 3, + [33488] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(582), 15, + ACTIONS(2323), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92868,7 +95355,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(580), 29, + ACTIONS(2325), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92898,218 +95385,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32340] = 9, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2602), 1, - anon_sym_DOT, - STATE(1078), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2780), 13, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2778), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32405] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2784), 15, - anon_sym_PLUS, - anon_sym_STAR, + [33541] = 19, + ACTIONS(283), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2782), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32458] = 19, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2788), 1, - anon_sym_EQ, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2786), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32543] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(590), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(588), 29, + ACTIONS(277), 18, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93120,11 +95451,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32596] = 3, + [33626] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2211), 15, + ACTIONS(2856), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93140,7 +95471,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2213), 29, + ACTIONS(2854), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93170,11 +95501,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32649] = 3, + [33679] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(469), 15, + ACTIONS(550), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93190,7 +95521,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(467), 29, + ACTIONS(548), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93220,11 +95551,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32702] = 3, + [33732] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(449), 15, + ACTIONS(2860), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93240,7 +95571,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(447), 29, + ACTIONS(2858), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93270,11 +95601,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32755] = 3, + [33785] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2792), 15, + ACTIONS(564), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93290,7 +95621,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2790), 29, + ACTIONS(562), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93320,11 +95651,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32808] = 3, + [33838] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2796), 15, + ACTIONS(576), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93340,7 +95671,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2794), 29, + ACTIONS(574), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93370,62 +95701,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32861] = 19, - ACTIONS(283), 1, - anon_sym_EQ, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - STATE(1078), 1, - sym_arguments, + [33891] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2864), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(277), 18, + anon_sym_DOT, + ACTIONS(2862), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93436,11 +95751,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32946] = 3, + [33944] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2800), 15, + ACTIONS(2868), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93456,7 +95771,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2798), 29, + ACTIONS(2866), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93486,11 +95801,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32999] = 3, + [33997] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(445), 15, + ACTIONS(2872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93506,7 +95821,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(443), 29, + ACTIONS(2870), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93536,11 +95851,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33052] = 3, + [34050] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(594), 15, + ACTIONS(2876), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93556,7 +95871,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(592), 29, + ACTIONS(2874), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93586,57 +95901,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33105] = 21, + [34103] = 5, + ACTIONS(2878), 1, + anon_sym_POUND, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1090), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2415), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2413), 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_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34160] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - ACTIONS(2802), 1, + ACTIONS(2881), 1, sym_identifier, - ACTIONS(2806), 1, + ACTIONS(2885), 1, anon_sym_LPAREN, - ACTIONS(2808), 1, + ACTIONS(2887), 1, anon_sym_STAR, - ACTIONS(2814), 1, + ACTIONS(2893), 1, anon_sym_for, - ACTIONS(2816), 1, + ACTIONS(2895), 1, anon_sym_AMP, - ACTIONS(2818), 1, + ACTIONS(2897), 1, sym_metavariable, - STATE(1773), 1, + STATE(1829), 1, sym_scoped_type_identifier, - STATE(1989), 1, - sym_where_predicate, - STATE(2036), 1, + STATE(1839), 1, sym_generic_type, - STATE(2289), 1, + STATE(1960), 1, + sym_where_predicate, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2415), 1, + STATE(2485), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2804), 2, + ACTIONS(2883), 2, anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(2812), 2, + ACTIONS(2891), 2, anon_sym_default, anon_sym_union, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(2048), 5, + STATE(2276), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2810), 17, + ACTIONS(2889), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93654,52 +96021,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [33194] = 9, - ACTIONS(2574), 1, + [34249] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2590), 1, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2602), 1, + ACTIONS(2688), 1, + anon_sym_AMP_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, anon_sym_DOT, - STATE(1078), 1, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2822), 13, + ACTIONS(2674), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2676), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2820), 24, + ACTIONS(2696), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2899), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93710,46 +96090,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33259] = 3, + [34340] = 19, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2688), 1, + anon_sym_AMP_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2911), 1, + anon_sym_EQ, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2826), 15, + ACTIONS(2674), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2676), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2824), 29, + ACTIONS(2696), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2909), 18, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93760,11 +96156,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33312] = 3, + [34425] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2830), 15, + ACTIONS(2915), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93780,7 +96176,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2828), 29, + ACTIONS(2913), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93810,68 +96206,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33365] = 3, + [34478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 15, - anon_sym_PLUS, + ACTIONS(2919), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2832), 29, - anon_sym_SEMI, + sym_metavariable, + ACTIONS(2917), 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_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34531] = 9, + ACTIONS(2670), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(2672), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33418] = 3, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2700), 1, + anon_sym_DOT, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(437), 15, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2923), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -93879,21 +96287,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(435), 29, + ACTIONS(2921), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -93910,28 +96312,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33471] = 4, - ACTIONS(2840), 1, - anon_sym_RBRACE, + [34596] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2838), 14, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(2927), 12, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_POUND, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2836), 29, + ACTIONS(2925), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93949,23 +96347,26 @@ static 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_impl, anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [33526] = 3, + [34649] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93981,7 +96382,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(459), 29, + ACTIONS(441), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94011,61 +96412,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33579] = 3, + [34702] = 4, + ACTIONS(2933), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2199), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2931), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2201), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33632] = 3, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2929), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34757] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2844), 15, + ACTIONS(550), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94081,7 +96483,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2842), 29, + ACTIONS(548), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94111,11 +96513,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33685] = 3, + [34810] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2848), 15, + ACTIONS(2937), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94131,7 +96533,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2846), 29, + ACTIONS(2935), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94161,11 +96563,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33738] = 3, + [34863] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2382), 15, + ACTIONS(2941), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94181,7 +96583,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2380), 29, + ACTIONS(2939), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94211,11 +96613,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33791] = 3, + [34916] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2852), 15, + ACTIONS(2945), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94231,7 +96633,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2850), 29, + ACTIONS(2943), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94261,11 +96663,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33844] = 3, + [34969] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2856), 15, + ACTIONS(447), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94281,7 +96683,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2854), 29, + ACTIONS(445), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94311,11 +96713,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33897] = 3, + [35022] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 15, + ACTIONS(2949), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2947), 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_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35075] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94331,7 +96783,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2394), 29, + ACTIONS(594), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94361,11 +96813,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33950] = 3, + [35128] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2428), 15, + ACTIONS(2953), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94381,7 +96833,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2426), 29, + ACTIONS(2951), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94411,11 +96863,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34003] = 3, + [35181] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2860), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94431,7 +96883,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2858), 29, + ACTIONS(566), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94461,11 +96913,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34056] = 3, + [35234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2864), 15, + ACTIONS(2478), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94481,7 +96933,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2862), 29, + ACTIONS(2476), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94511,13 +96963,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34109] = 4, - ACTIONS(2866), 1, - anon_sym_COLON_COLON, + [35287] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(439), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94533,10 +96983,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(459), 28, + ACTIONS(437), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -94562,11 +97013,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34164] = 3, + [35340] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2870), 15, + ACTIONS(580), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94582,7 +97033,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2868), 29, + ACTIONS(578), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94612,18 +97063,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34217] = 3, + [35393] = 9, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2700), 1, + anon_sym_DOT, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2874), 15, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2957), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -94631,21 +97094,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2872), 29, + ACTIONS(2955), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -94662,11 +97119,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34270] = 3, + [35458] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2878), 15, + ACTIONS(572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94682,7 +97139,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2876), 29, + ACTIONS(570), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94712,11 +97169,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34323] = 3, + [35511] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(421), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94732,7 +97189,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(459), 29, + ACTIONS(419), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94762,11 +97219,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34376] = 3, + [35564] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2882), 15, + ACTIONS(433), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94782,7 +97239,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2880), 29, + ACTIONS(431), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94812,65 +97269,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34429] = 22, - ACTIONS(2574), 1, + [35617] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2884), 6, + ACTIONS(2959), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94881,11 +97338,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34520] = 3, + [35708] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(477), 15, + ACTIONS(2963), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94901,7 +97358,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(475), 29, + ACTIONS(2961), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94931,11 +97388,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34573] = 3, + [35761] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(419), 15, + ACTIONS(2967), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94951,7 +97408,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(417), 29, + ACTIONS(2965), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94981,11 +97438,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34626] = 3, + [35814] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2971), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2969), 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_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35867] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(481), 15, + ACTIONS(2975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95001,7 +97508,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(479), 29, + ACTIONS(2973), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95031,11 +97538,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34679] = 3, + [35920] = 6, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + STATE(1088), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(317), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(315), 26, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35979] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(415), 15, + ACTIONS(2979), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95051,7 +97611,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(413), 29, + ACTIONS(2977), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95081,11 +97641,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34732] = 3, + [36032] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 15, + ACTIONS(2532), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95101,7 +97661,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(584), 29, + ACTIONS(2530), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95131,11 +97691,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34785] = 3, + [36085] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(2983), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95151,7 +97711,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(459), 29, + ACTIONS(2981), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95181,63 +97741,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34838] = 5, - ACTIONS(2886), 1, - anon_sym_POUND, + [36138] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1077), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2333), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(588), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2331), 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_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34895] = 3, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(586), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36191] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2891), 15, + ACTIONS(2987), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95253,7 +97811,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2889), 29, + ACTIONS(2985), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95283,57 +97841,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34948] = 21, + [36244] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2123), 1, + ACTIONS(2219), 1, anon_sym_SQUOTE, - ACTIONS(2802), 1, + ACTIONS(2881), 1, sym_identifier, - ACTIONS(2806), 1, + ACTIONS(2885), 1, anon_sym_LPAREN, - ACTIONS(2808), 1, + ACTIONS(2887), 1, anon_sym_STAR, - ACTIONS(2814), 1, + ACTIONS(2893), 1, anon_sym_for, - ACTIONS(2816), 1, + ACTIONS(2895), 1, anon_sym_AMP, - ACTIONS(2818), 1, + ACTIONS(2897), 1, sym_metavariable, - STATE(1773), 1, + STATE(1829), 1, sym_scoped_type_identifier, - STATE(1989), 1, - sym_where_predicate, - STATE(2036), 1, + STATE(1839), 1, sym_generic_type, - STATE(2289), 1, + STATE(1960), 1, + sym_where_predicate, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2415), 1, + STATE(2485), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2812), 2, + ACTIONS(2891), 2, anon_sym_default, anon_sym_union, - ACTIONS(2893), 2, + ACTIONS(2989), 2, anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(2048), 5, + STATE(2276), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2810), 17, + ACTIONS(2889), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95351,11 +97909,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [35037] = 3, + [36333] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2897), 15, + ACTIONS(2993), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95371,7 +97929,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2895), 29, + ACTIONS(2991), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95401,11 +97959,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35090] = 3, + [36386] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2901), 15, + ACTIONS(2997), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95421,7 +97979,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2899), 29, + ACTIONS(2995), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95451,11 +98009,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35143] = 3, + [36439] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2905), 15, + ACTIONS(550), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95471,7 +98029,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2903), 29, + ACTIONS(548), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95501,11 +98059,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35196] = 3, + [36492] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2909), 15, + ACTIONS(3001), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95521,7 +98079,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2907), 29, + ACTIONS(2999), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95551,11 +98109,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35249] = 3, + [36545] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(411), 15, + ACTIONS(2277), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95571,7 +98129,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(409), 29, + ACTIONS(2279), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95601,11 +98159,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35302] = 3, + [36598] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(433), 15, + ACTIONS(3005), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95621,7 +98179,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(431), 29, + ACTIONS(3003), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95651,19 +98209,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35355] = 7, - ACTIONS(2422), 1, + [36651] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2830), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2828), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [36703] = 7, + ACTIONS(2480), 1, anon_sym_LBRACE, - ACTIONS(2424), 1, + ACTIONS(2482), 1, anon_sym_COLON_COLON, - ACTIONS(2911), 1, + ACTIONS(3007), 1, anon_sym_BANG, - STATE(1048), 1, + STATE(1038), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(550), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95679,7 +98286,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(459), 24, + ACTIONS(548), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -95704,11 +98311,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35415] = 3, + [36763] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2838), 14, + ACTIONS(2931), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -95723,7 +98330,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2836), 29, + ACTIONS(2929), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95753,26 +98360,22 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35467] = 3, + [36815] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2720), 14, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(1190), 10, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, anon_sym_POUND, + anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2718), 29, + ACTIONS(1192), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95790,66 +98393,249 @@ static 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_impl, + anon_sym_pub, anon_sym_union, - anon_sym_ref, - anon_sym__, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [36866] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2985), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2987), 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_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, sym_mutable_specifier, - anon_sym_true, - anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [35519] = 21, + [36917] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(664), 1, + anon_sym_fn, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(696), 1, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(2897), 1, + sym_metavariable, + ACTIONS(3009), 1, + sym_identifier, + ACTIONS(3011), 1, + anon_sym_default, + STATE(1274), 1, + sym_for_lifetimes, + STATE(1318), 1, + sym_scoped_type_identifier, + STATE(1342), 1, + sym_generic_type, + STATE(1390), 1, + sym_function_type, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2384), 1, + sym_function_modifiers, + STATE(2485), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2891), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [37004] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(2269), 1, + ACTIONS(2375), 1, anon_sym_fn, - ACTIONS(2277), 1, + ACTIONS(2383), 1, anon_sym_COLON_COLON, - ACTIONS(2913), 1, + ACTIONS(3013), 1, sym_identifier, - ACTIONS(2917), 1, + ACTIONS(3017), 1, anon_sym_default, - ACTIONS(2919), 1, + ACTIONS(3019), 1, sym_metavariable, - STATE(711), 1, + STATE(736), 1, sym_scoped_type_identifier, - STATE(825), 1, + STATE(757), 1, + sym_generic_type, + STATE(1109), 1, + sym_function_type, + STATE(1258), 1, + sym_for_lifetimes, + STATE(2333), 1, + sym_function_modifiers, + STATE(2358), 1, + sym_scoped_identifier, + STATE(2436), 1, + sym_bracketed_type, + STATE(2437), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2391), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3015), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [37091] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(666), 1, + anon_sym_for, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(2375), 1, + anon_sym_fn, + ACTIONS(2383), 1, + anon_sym_COLON_COLON, + ACTIONS(3017), 1, + anon_sym_default, + ACTIONS(3019), 1, + sym_metavariable, + ACTIONS(3021), 1, + sym_identifier, + STATE(748), 1, + sym_scoped_type_identifier, + STATE(857), 1, sym_generic_type, - STATE(1057), 1, + STATE(1123), 1, sym_function_type, - STATE(1211), 1, + STATE(1258), 1, sym_for_lifetimes, - STATE(2292), 1, + STATE(2333), 1, sym_function_modifiers, - STATE(2313), 1, + STATE(2358), 1, sym_scoped_identifier, - STATE(2391), 1, + STATE(2436), 1, sym_bracketed_type, - STATE(2392), 1, + STATE(2437), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2285), 3, + ACTIONS(2391), 3, sym_self, sym_super, sym_crate, - ACTIONS(2915), 18, + ACTIONS(3015), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95868,66 +98654,314 @@ static uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [35606] = 25, - ACTIONS(363), 1, + [37178] = 17, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(1031), 1, + anon_sym_COLON_COLON, + ACTIONS(3023), 1, + sym_identifier, + ACTIONS(3025), 1, + anon_sym_RPAREN, + ACTIONS(3029), 1, + anon_sym_COMMA, + ACTIONS(3033), 1, + sym_metavariable, + STATE(1562), 1, + sym_scoped_identifier, + STATE(2321), 1, + sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1079), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1909), 2, + sym_meta_item, + sym__literal, + ACTIONS(3031), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3027), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_union, + [37257] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(2881), 1, + sym_identifier, + ACTIONS(2885), 1, + anon_sym_LPAREN, + ACTIONS(2887), 1, + anon_sym_STAR, + ACTIONS(2893), 1, + anon_sym_for, + ACTIONS(2895), 1, + anon_sym_AMP, + ACTIONS(2897), 1, + sym_metavariable, + STATE(1829), 1, + sym_scoped_type_identifier, + STATE(1839), 1, + sym_generic_type, + STATE(1960), 1, + sym_where_predicate, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2485), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2891), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(2276), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2889), 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, + [37342] = 6, + ACTIONS(2526), 1, + anon_sym_BANG, + ACTIONS(2528), 1, + anon_sym_COLON_COLON, + ACTIONS(3035), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2522), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2520), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37399] = 25, + ACTIONS(624), 1, anon_sym_RBRACK, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3037), 1, + anon_sym_SEMI, + ACTIONS(3039), 1, + anon_sym_COMMA, + STATE(1088), 1, + sym_arguments, + STATE(1852), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2680), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2676), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2696), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2907), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37494] = 25, + ACTIONS(363), 1, + anon_sym_RBRACK, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2688), 1, + anon_sym_AMP_AMP, + ACTIONS(2690), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(2921), 1, + ACTIONS(3041), 1, anon_sym_SEMI, - ACTIONS(2923), 1, + ACTIONS(3043), 1, anon_sym_COMMA, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, - STATE(1794), 1, + STATE(2031), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95938,54 +98972,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35701] = 21, + [37589] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(682), 1, + ACTIONS(664), 1, anon_sym_fn, - ACTIONS(684), 1, + ACTIONS(666), 1, anon_sym_for, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2818), 1, + ACTIONS(2897), 1, sym_metavariable, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2927), 1, + ACTIONS(3011), 1, anon_sym_default, - STATE(1179), 1, + ACTIONS(3045), 1, + sym_identifier, + STATE(1274), 1, sym_for_lifetimes, - STATE(1271), 1, + STATE(1321), 1, sym_scoped_type_identifier, - STATE(1308), 1, + STATE(1358), 1, sym_generic_type, - STATE(1341), 1, + STATE(1378), 1, sym_function_type, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, + STATE(2384), 1, sym_function_modifiers, - STATE(2415), 1, + STATE(2485), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - ACTIONS(2812), 18, + ACTIONS(2891), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96004,102 +99038,112 @@ static uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [35788] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2876), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + [37676] = 20, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(882), 1, anon_sym_COLON_COLON, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(2881), 1, + sym_identifier, + ACTIONS(2885), 1, + anon_sym_LPAREN, + ACTIONS(2887), 1, + anon_sym_STAR, + ACTIONS(2893), 1, + anon_sym_for, + ACTIONS(2895), 1, anon_sym_AMP, + ACTIONS(2897), 1, sym_metavariable, - ACTIONS(2878), 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, + STATE(1829), 1, + sym_scoped_type_identifier, + STATE(1832), 1, + sym_where_predicate, + STATE(1839), 1, + sym_generic_type, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2485), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2891), 2, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_mutable_specifier, - sym_identifier, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - [35839] = 21, + STATE(2276), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2889), 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, + [37761] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(886), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(1031), 1, anon_sym_COLON_COLON, - ACTIONS(2818), 1, - sym_metavariable, - ACTIONS(2927), 1, - anon_sym_default, - ACTIONS(2929), 1, + ACTIONS(3023), 1, sym_identifier, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1272), 1, - sym_scoped_type_identifier, - STATE(1312), 1, - sym_generic_type, - STATE(1323), 1, - sym_function_type, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2415), 1, + ACTIONS(3033), 1, + sym_metavariable, + ACTIONS(3047), 1, + anon_sym_RPAREN, + STATE(1562), 1, sym_scoped_identifier, + STATE(2321), 1, + sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1079), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2111), 2, + sym_meta_item, + sym__literal, + ACTIONS(3031), 3, sym_self, sym_super, sym_crate, - ACTIONS(2812), 18, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3027), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96117,23 +99161,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_default, anon_sym_union, - [35926] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1118), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_POUND, - anon_sym_BANG, + [37837] = 16, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(696), 1, + anon_sym_DASH, + ACTIONS(700), 1, + aux_sym_string_literal_token1, + ACTIONS(1031), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3049), 1, + sym_identifier, + ACTIONS(3055), 1, sym_metavariable, - ACTIONS(1120), 32, + STATE(1395), 1, + sym_scoped_identifier, + STATE(1431), 1, + sym__literal_pattern, + STATE(2319), 1, + sym_bracketed_type, + STATE(2321), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(702), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3053), 3, + sym_self, + sym_super, + sym_crate, + STATE(1392), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(698), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3051), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96151,55 +99221,40 @@ static 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_impl, - anon_sym_pub, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35977] = 17, + [37913] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(948), 1, + ACTIONS(1031), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(3023), 1, sym_identifier, - ACTIONS(2933), 1, - anon_sym_RPAREN, - ACTIONS(2937), 1, - anon_sym_COMMA, - ACTIONS(2941), 1, + ACTIONS(3033), 1, sym_metavariable, - STATE(1553), 1, + ACTIONS(3057), 1, + anon_sym_RPAREN, + STATE(1562), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(965), 2, + STATE(1079), 2, sym_string_literal, sym_boolean_literal, - STATE(1937), 2, + STATE(2111), 2, sym_meta_item, sym__literal, - ACTIONS(2939), 3, + ACTIONS(3031), 3, sym_self, sym_super, sym_crate, @@ -96208,7 +99263,7 @@ static uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(2935), 19, + ACTIONS(3027), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96228,66 +99283,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [36056] = 25, - ACTIONS(628), 1, - anon_sym_RBRACK, - ACTIONS(2574), 1, + [37989] = 24, + ACTIONS(371), 1, + anon_sym_RPAREN, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(2943), 1, - anon_sym_SEMI, - ACTIONS(2945), 1, + ACTIONS(3059), 1, anon_sym_COMMA, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, - STATE(2004), 1, - aux_sym_array_expression_repeat1, + STATE(1941), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96298,119 +99351,115 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36151] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2802), 1, - sym_identifier, - ACTIONS(2806), 1, + [38081] = 24, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2808), 1, - anon_sym_STAR, - ACTIONS(2814), 1, - anon_sym_for, - ACTIONS(2816), 1, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2818), 1, - sym_metavariable, - STATE(1773), 1, - sym_scoped_type_identifier, - STATE(1989), 1, - sym_where_predicate, - STATE(2036), 1, - sym_generic_type, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2415), 1, - sym_scoped_identifier, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2688), 1, + anon_sym_AMP_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3061), 1, + anon_sym_RPAREN, + ACTIONS(3063), 1, + anon_sym_COMMA, + STATE(1088), 1, + sym_arguments, + STATE(1894), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2812), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(2048), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2810), 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, - [36236] = 20, + ACTIONS(2674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2680), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2676), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2696), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2907), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38173] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(886), 1, + ACTIONS(696), 1, + anon_sym_DASH, + ACTIONS(700), 1, + aux_sym_string_literal_token1, + ACTIONS(1031), 1, anon_sym_COLON_COLON, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2802), 1, + ACTIONS(3065), 1, sym_identifier, - ACTIONS(2806), 1, - anon_sym_LPAREN, - ACTIONS(2808), 1, - anon_sym_STAR, - ACTIONS(2814), 1, - anon_sym_for, - ACTIONS(2816), 1, - anon_sym_AMP, - ACTIONS(2818), 1, + ACTIONS(3071), 1, sym_metavariable, - STATE(1715), 1, - sym_where_predicate, - STATE(1773), 1, - sym_scoped_type_identifier, - STATE(2036), 1, - sym_generic_type, - STATE(2289), 1, + STATE(1414), 1, + sym_scoped_identifier, + STATE(1420), 1, + sym__literal_pattern, + STATE(2319), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, - STATE(2415), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2812), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(892), 3, + ACTIONS(702), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3069), 3, sym_self, sym_super, sym_crate, - STATE(2048), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2810), 17, + STATE(1392), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(698), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3067), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96428,20 +99477,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [36321] = 6, - ACTIONS(2390), 1, - anon_sym_BANG, - ACTIONS(2392), 1, + anon_sym_default, + anon_sym_union, + [38249] = 5, + ACTIONS(2552), 1, anon_sym_COLON_COLON, - ACTIONS(2947), 1, - sym_identifier, + ACTIONS(3007), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 16, + ACTIONS(550), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96455,12 +99503,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2384), 23, + ACTIONS(548), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -96479,81 +99528,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36378] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2917), 1, - anon_sym_default, - ACTIONS(2919), 1, - sym_metavariable, - ACTIONS(2949), 1, - sym_identifier, - STATE(721), 1, - sym_scoped_type_identifier, - STATE(822), 1, - sym_generic_type, - STATE(1061), 1, - sym_function_type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2292), 1, - sym_function_modifiers, - STATE(2313), 1, - sym_scoped_identifier, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2915), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [36465] = 5, - ACTIONS(2534), 1, - anon_sym_COLON_COLON, - ACTIONS(2911), 1, + [38303] = 6, + ACTIONS(2462), 1, anon_sym_BANG, + ACTIONS(3073), 1, + anon_sym_COLON_COLON, + STATE(1038), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(550), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96569,10 +99554,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(459), 24, - anon_sym_SEMI, + ACTIONS(548), 23, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, @@ -96594,64 +99578,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36519] = 24, - ACTIONS(2574), 1, + [38359] = 23, + ACTIONS(714), 1, + anon_sym_LBRACE, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(3079), 1, + anon_sym_EQ, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(2951), 1, - anon_sym_RPAREN, - ACTIONS(2953), 1, - anon_sym_COMMA, - STATE(1078), 1, + STATE(230), 1, + sym_block, + STATE(1088), 1, sym_arguments, - STATE(1837), 1, - aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96662,64 +99644,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36611] = 24, - ACTIONS(371), 1, - anon_sym_RPAREN, - ACTIONS(2574), 1, + [38448] = 23, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(2955), 1, - anon_sym_COMMA, - STATE(1078), 1, + ACTIONS(3103), 1, + anon_sym_SEMI, + ACTIONS(3105), 1, + anon_sym_RBRACE, + STATE(1088), 1, sym_arguments, - STATE(1969), 1, - aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96730,46 +99710,127 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36703] = 6, - ACTIONS(2366), 1, - anon_sym_BANG, - ACTIONS(2957), 1, - anon_sym_COLON_COLON, - STATE(1048), 1, - sym_field_initializer_list, + [38537] = 22, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2688), 1, + anon_sym_AMP_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(2674), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3107), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2676), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(459), 23, + ACTIONS(2696), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2907), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38624] = 23, + ACTIONS(2670), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2672), 1, anon_sym_LBRACK, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2688), 1, + anon_sym_AMP_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, anon_sym_QMARK, + ACTIONS(2903), 1, anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3103), 1, + anon_sym_SEMI, + ACTIONS(3109), 1, + anon_sym_RBRACE, + STATE(1088), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2680), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2698), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2676), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96780,167 +99841,87 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36759] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(948), 1, - anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2941), 1, - sym_metavariable, - ACTIONS(2959), 1, - anon_sym_RPAREN, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(965), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2230), 2, - sym_meta_item, - sym__literal, - ACTIONS(2939), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2935), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_union, - [36835] = 16, - ACTIONS(77), 1, - anon_sym_LT, + [38713] = 23, ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - aux_sym_string_literal_token1, - ACTIONS(948), 1, - anon_sym_COLON_COLON, - ACTIONS(2961), 1, - sym_identifier, - ACTIONS(2967), 1, - sym_metavariable, - STATE(1346), 1, - sym_scoped_identifier, - STATE(1386), 1, - sym__literal_pattern, - STATE(2287), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + anon_sym_LBRACE, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(3079), 1, + anon_sym_EQ, + ACTIONS(3083), 1, + anon_sym_AMP, + ACTIONS(3087), 1, + anon_sym_DOT_DOT, + ACTIONS(3089), 1, + anon_sym_AMP_AMP, + ACTIONS(3091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3093), 1, + anon_sym_PIPE, + ACTIONS(3095), 1, + anon_sym_CARET, + STATE(218), 1, + sym_block, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(720), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2965), 3, - sym_self, - sym_super, - sym_crate, - STATE(1331), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(716), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2963), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_union, - [36911] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(714), 1, + ACTIONS(3075), 2, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(718), 1, - aux_sym_string_literal_token1, - ACTIONS(948), 1, - anon_sym_COLON_COLON, - ACTIONS(2969), 1, - sym_identifier, - ACTIONS(2975), 1, - sym_metavariable, - STATE(1350), 1, - sym_scoped_identifier, - STATE(1396), 1, - sym__literal_pattern, - STATE(2287), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + ACTIONS(3081), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3077), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3097), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3101), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(720), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2973), 3, - sym_self, - sym_super, - sym_crate, - STATE(1331), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(716), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2971), 19, + ACTIONS(3113), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3111), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96958,73 +99939,25 @@ static 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_impl, anon_sym_union, - [36987] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(948), 1, - anon_sym_COLON_COLON, - ACTIONS(2931), 1, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, sym_identifier, - ACTIONS(2941), 1, - sym_metavariable, - ACTIONS(2977), 1, - anon_sym_RPAREN, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(965), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2230), 2, - sym_meta_item, - sym__literal, - ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2935), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_union, - [37063] = 3, + [38851] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2981), 9, + ACTIONS(3117), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -97034,7 +99967,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2979), 31, + ACTIONS(3115), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97066,62 +99999,61 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37112] = 23, - ACTIONS(483), 1, - anon_sym_RPAREN, - ACTIONS(2574), 1, + [38900] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_COMMA, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3119), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97132,120 +100064,128 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37201] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(948), 1, - anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2941), 1, - sym_metavariable, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(965), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2230), 2, - sym_meta_item, - sym__literal, - ACTIONS(2939), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2935), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_union, - [37274] = 23, - ACTIONS(119), 1, - anon_sym_RBRACE, - ACTIONS(2574), 1, + [38987] = 23, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(3079), 1, + anon_sym_EQ, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3121), 1, + anon_sym_LBRACE, + STATE(225), 1, + sym_match_block, + STATE(1088), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3081), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3077), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3097), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3101), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39076] = 23, + ACTIONS(714), 1, + anon_sym_LBRACE, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - STATE(1078), 1, + ACTIONS(3083), 1, + anon_sym_AMP, + ACTIONS(3087), 1, + anon_sym_DOT_DOT, + ACTIONS(3089), 1, + anon_sym_AMP_AMP, + ACTIONS(3091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3093), 1, + anon_sym_PIPE, + ACTIONS(3095), 1, + anon_sym_CARET, + STATE(207), 1, + sym_block, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97256,108 +100196,128 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37363] = 3, + [39165] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(3079), 1, + anon_sym_EQ, + ACTIONS(3083), 1, + anon_sym_AMP, + ACTIONS(3087), 1, + anon_sym_DOT_DOT, + ACTIONS(3089), 1, + anon_sym_AMP_AMP, + ACTIONS(3091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3093), 1, + anon_sym_PIPE, + ACTIONS(3095), 1, + anon_sym_CARET, + STATE(45), 1, + sym_block, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + ACTIONS(3075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3081), 2, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2740), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37412] = 23, - ACTIONS(2574), 1, + anon_sym_GT, + ACTIONS(3085), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3077), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3097), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3101), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39254] = 23, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(2987), 1, + ACTIONS(3123), 1, anon_sym_RPAREN, - ACTIONS(2989), 1, + ACTIONS(3125), 1, anon_sym_COMMA, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97368,109 +100328,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37501] = 4, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2993), 8, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2991), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37552] = 23, - ACTIONS(105), 1, - anon_sym_RBRACE, - ACTIONS(2574), 1, + [39343] = 23, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - STATE(1078), 1, + ACTIONS(3127), 1, + anon_sym_RBRACE, + ACTIONS(3129), 1, + anon_sym_COMMA, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97481,61 +100394,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37641] = 22, - ACTIONS(2574), 1, + [39432] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2997), 2, + ACTIONS(3131), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97546,61 +100459,128 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37728] = 22, - ACTIONS(2574), 1, + [39519] = 23, + ACTIONS(714), 1, + anon_sym_LBRACE, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(3079), 1, + anon_sym_EQ, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(2602), 1, + STATE(208), 1, + sym_block, + STATE(1088), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3081), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3077), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3097), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3101), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39608] = 23, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3079), 1, anon_sym_EQ, - STATE(1078), 1, + ACTIONS(3083), 1, + anon_sym_AMP, + ACTIONS(3087), 1, + anon_sym_DOT_DOT, + ACTIONS(3089), 1, + anon_sym_AMP_AMP, + ACTIONS(3091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3093), 1, + anon_sym_PIPE, + ACTIONS(3095), 1, + anon_sym_CARET, + ACTIONS(3133), 1, + anon_sym_LBRACE, + STATE(54), 1, + sym_match_block, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2999), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97611,62 +100591,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37815] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, + [39697] = 23, + ACTIONS(271), 1, + anon_sym_RBRACE, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(2690), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(2694), 1, anon_sym_CARET, - STATE(53), 1, - sym_block, - STATE(1078), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3103), 1, + anon_sym_SEMI, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97677,61 +100657,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37904] = 22, - ACTIONS(2574), 1, + [39786] = 23, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - STATE(1078), 1, + ACTIONS(3135), 1, + anon_sym_RPAREN, + ACTIONS(3137), 1, + anon_sym_COMMA, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3029), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97742,62 +100723,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37991] = 23, - ACTIONS(117), 1, - anon_sym_RBRACE, - ACTIONS(2574), 1, + [39875] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3139), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97808,62 +100788,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38080] = 23, + [39962] = 23, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(725), 1, - sym_block, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, + STATE(1104), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97874,62 +100854,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38169] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1044), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + [40051] = 5, + ACTIONS(2462), 1, + anon_sym_BANG, + ACTIONS(3141), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(550), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + anon_sym_DOT, + ACTIONS(548), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97940,62 +100902,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38258] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, + [40104] = 23, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(2690), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(2694), 1, anon_sym_CARET, - STATE(1025), 1, - sym_block, - STATE(1078), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3103), 1, + anon_sym_SEMI, + ACTIONS(3143), 1, + anon_sym_RBRACE, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98006,42 +100968,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38347] = 3, + [40193] = 23, + ACTIONS(435), 1, + anon_sym_RPAREN, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2688), 1, + anon_sym_AMP_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3137), 1, + anon_sym_COMMA, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2402), 16, + ACTIONS(2674), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2676), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2404), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98052,108 +101034,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38396] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2716), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2714), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38445] = 23, - ACTIONS(2574), 1, + [40282] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(3031), 1, - anon_sym_LBRACE, - STATE(1051), 1, - sym_match_block, - STATE(1078), 1, + STATE(31), 1, + sym_block, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98164,11 +101100,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38534] = 3, + [40371] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2410), 16, + ACTIONS(2500), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -98185,7 +101121,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2412), 24, + ACTIONS(2502), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -98210,62 +101146,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38583] = 23, - ACTIONS(2574), 1, + [40420] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(1031), 1, + anon_sym_COLON_COLON, + ACTIONS(3023), 1, + sym_identifier, + ACTIONS(3033), 1, + sym_metavariable, + STATE(1562), 1, + sym_scoped_identifier, + STATE(2321), 1, + sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1079), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2111), 2, + sym_meta_item, + sym__literal, + ACTIONS(3031), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3027), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_union, + [40493] = 23, + ACTIONS(556), 1, + anon_sym_RPAREN, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - ACTIONS(3033), 1, - anon_sym_RBRACE, - STATE(1078), 1, + ACTIONS(3137), 1, + anon_sym_COMMA, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98276,62 +101270,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38672] = 23, + [40582] = 4, + ACTIONS(3147), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3149), 8, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3145), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [40633] = 23, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(34), 1, + STATE(55), 1, sym_block, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98342,62 +101383,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38761] = 23, - ACTIONS(279), 1, + [40722] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3153), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3151), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [40771] = 23, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(986), 1, + STATE(33), 1, sym_block, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98408,110 +101495,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38850] = 23, - ACTIONS(2574), 1, + [40860] = 23, + ACTIONS(714), 1, + anon_sym_LBRACE, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(3079), 1, + anon_sym_EQ, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3035), 1, - anon_sym_RBRACE, - ACTIONS(3037), 1, - anon_sym_COMMA, - STATE(1078), 1, + STATE(229), 1, + sym_block, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38939] = 5, - ACTIONS(2508), 1, - anon_sym_BANG, - ACTIONS(3039), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2386), 15, + ACTIONS(3075), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2384), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH, + ACTIONS(3081), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3077), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98522,11 +101561,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38992] = 3, + [40949] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2418), 16, + ACTIONS(2516), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -98543,7 +101582,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2420), 24, + ACTIONS(2518), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -98568,108 +101607,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39041] = 3, + [40998] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3043), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2492), 16, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3041), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39090] = 23, - ACTIONS(123), 1, - anon_sym_RBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2602), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2494), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98680,62 +101653,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39179] = 23, - ACTIONS(279), 1, + [41047] = 23, + ACTIONS(714), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(1039), 1, + STATE(235), 1, sym_block, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98746,61 +101719,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39268] = 22, - ACTIONS(2574), 1, + [41136] = 23, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - STATE(1078), 1, + ACTIONS(3103), 1, + anon_sym_SEMI, + ACTIONS(3155), 1, + anon_sym_RBRACE, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3045), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98811,62 +101785,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39355] = 23, - ACTIONS(2574), 1, + [41225] = 23, + ACTIONS(714), 1, + anon_sym_LBRACE, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(3079), 1, + anon_sym_EQ, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - ACTIONS(3047), 1, - anon_sym_RBRACE, - STATE(1078), 1, + STATE(232), 1, + sym_block, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98877,62 +101851,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39444] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, + [41314] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2919), 9, anon_sym_LPAREN, - ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1045), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + sym_metavariable, + ACTIONS(2917), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [41363] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2508), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + anon_sym_DOT, + ACTIONS(2510), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98943,61 +101943,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39533] = 22, - ACTIONS(2574), 1, + [41412] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3049), 2, - anon_sym_RBRACE, + ACTIONS(3157), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99008,62 +102008,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39620] = 23, - ACTIONS(2574), 1, + [41499] = 23, + ACTIONS(269), 1, + anon_sym_RBRACE, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(2985), 1, + ACTIONS(3103), 1, anon_sym_SEMI, - ACTIONS(3051), 1, - anon_sym_RBRACE, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99074,61 +102074,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39709] = 22, - ACTIONS(2574), 1, + [41588] = 23, + ACTIONS(107), 1, + anon_sym_RBRACE, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - STATE(1078), 1, + ACTIONS(3103), 1, + anon_sym_SEMI, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99139,62 +102140,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39796] = 23, + [41677] = 23, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(732), 1, + STATE(750), 1, sym_block, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99205,62 +102206,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39885] = 23, - ACTIONS(644), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, + [41766] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(2690), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(2694), 1, anon_sym_CARET, - STATE(208), 1, - sym_block, - STATE(1078), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3159), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99271,62 +102271,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39974] = 23, + [41853] = 23, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(54), 1, + STATE(46), 1, sym_block, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99337,62 +102337,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40063] = 23, - ACTIONS(2574), 1, + [41942] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(3055), 1, - anon_sym_LBRACE, - STATE(219), 1, - sym_match_block, - STATE(1078), 1, + STATE(1055), 1, + sym_block, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99403,127 +102403,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40152] = 22, - ACTIONS(2574), 1, + [42031] = 23, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3079), 1, anon_sym_EQ, - STATE(1078), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3057), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40239] = 23, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_COMMA, - ACTIONS(3059), 1, - anon_sym_RPAREN, - STATE(1078), 1, + ACTIONS(3161), 1, + anon_sym_LBRACE, + STATE(1088), 1, sym_arguments, + STATE(1098), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99534,128 +102469,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40328] = 23, - ACTIONS(644), 1, + [42120] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2806), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2804), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [42169] = 23, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(220), 1, - sym_block, - STATE(1078), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3001), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40417] = 23, - ACTIONS(111), 1, - anon_sym_RBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - STATE(1078), 1, + STATE(1084), 1, + sym_block, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99666,62 +102581,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40506] = 23, - ACTIONS(2574), 1, + [42258] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - ACTIONS(3061), 1, - anon_sym_RBRACE, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3163), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99732,61 +102646,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40595] = 22, - ACTIONS(2574), 1, + [42345] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3063), 2, + ACTIONS(3165), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99797,62 +102711,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40682] = 23, - ACTIONS(15), 1, + [42432] = 23, + ACTIONS(714), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(68), 1, + STATE(221), 1, sym_block, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99863,62 +102777,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40771] = 23, - ACTIONS(2574), 1, + [42521] = 23, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3065), 1, + ACTIONS(3103), 1, + anon_sym_SEMI, + ACTIONS(3167), 1, anon_sym_RBRACE, - ACTIONS(3067), 1, - anon_sym_COMMA, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99929,62 +102843,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40860] = 23, - ACTIONS(2574), 1, + [42610] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_LBRACE, - STATE(52), 1, - sym_match_block, - STATE(1078), 1, + STATE(48), 1, + sym_block, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99995,173 +102909,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40949] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3073), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3071), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [40998] = 23, - ACTIONS(15), 1, + [42699] = 23, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(32), 1, - sym_block, - STATE(1078), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3001), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41087] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, + STATE(1113), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3075), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100172,109 +102975,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41174] = 4, - ACTIONS(3077), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2993), 8, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2991), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [41225] = 23, + [42788] = 23, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(974), 1, - sym_block, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, + STATE(1114), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100285,62 +103041,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41314] = 23, - ACTIONS(644), 1, + [42877] = 23, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(218), 1, + STATE(749), 1, sym_block, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100351,61 +103107,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41403] = 22, - ACTIONS(2574), 1, + [42966] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3079), 2, - anon_sym_RBRACK, + ACTIONS(3169), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100416,62 +103172,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41490] = 23, - ACTIONS(15), 1, + [43053] = 23, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(55), 1, + STATE(1018), 1, sym_block, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100482,62 +103238,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41579] = 23, - ACTIONS(2574), 1, + [43142] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(3079), 1, + anon_sym_EQ, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - ACTIONS(3081), 1, - anon_sym_RBRACE, - STATE(1078), 1, + STATE(61), 1, + sym_block, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100548,62 +103304,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41668] = 23, - ACTIONS(113), 1, + [43231] = 23, + ACTIONS(265), 1, anon_sym_RBRACE, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(2985), 1, + ACTIONS(3103), 1, anon_sym_SEMI, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100614,176 +103370,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41757] = 5, - ACTIONS(2366), 1, - anon_sym_BANG, - ACTIONS(3083), 1, + [43320] = 4, + ACTIONS(3171), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, - anon_sym_PLUS, + ACTIONS(3149), 8, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_LT, - anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(459), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41810] = 23, - ACTIONS(644), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, + sym_metavariable, + ACTIONS(3145), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [43371] = 23, + ACTIONS(103), 1, + anon_sym_RBRACE, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(2690), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(2694), 1, anon_sym_CARET, - STATE(215), 1, - sym_block, - STATE(1078), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3001), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41899] = 23, - ACTIONS(644), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(212), 1, - sym_block, - STATE(1078), 1, + ACTIONS(3103), 1, + anon_sym_SEMI, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100794,62 +103483,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41988] = 23, - ACTIONS(644), 1, + [43460] = 23, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(207), 1, + STATE(64), 1, sym_block, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100860,62 +103549,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42077] = 23, - ACTIONS(604), 1, - anon_sym_RPAREN, - ACTIONS(2574), 1, + [43549] = 23, + ACTIONS(261), 1, + anon_sym_RBRACE, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_COMMA, - STATE(1078), 1, + ACTIONS(3103), 1, + anon_sym_SEMI, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100926,62 +103615,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42166] = 23, - ACTIONS(644), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, + [43638] = 23, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(2690), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(2694), 1, anon_sym_CARET, - STATE(222), 1, - sym_block, - STATE(1078), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3173), 1, + anon_sym_RBRACE, + ACTIONS(3175), 1, + anon_sym_COMMA, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100992,14 +103681,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42255] = 3, + [43727] = 5, + ACTIONS(2586), 1, + anon_sym_BANG, + ACTIONS(3177), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2434), 16, + ACTIONS(2522), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101013,13 +103705,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2436), 24, + ACTIONS(2520), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -101038,62 +103729,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42304] = 23, - ACTIONS(644), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, + [43780] = 23, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(2690), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(2694), 1, anon_sym_CARET, - STATE(232), 1, - sym_block, - STATE(1078), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3103), 1, + anon_sym_SEMI, + ACTIONS(3179), 1, + anon_sym_RBRACE, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101104,62 +103795,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42393] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, + [43869] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(2690), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(2694), 1, anon_sym_CARET, - STATE(44), 1, - sym_block, - STATE(1078), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3181), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101170,62 +103860,124 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42482] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, + [43956] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2688), 1, + anon_sym_AMP_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3183), 1, + anon_sym_SEMI, + STATE(1088), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2680), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2676), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2696), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2907), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44042] = 22, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(2690), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(2694), 1, anon_sym_CARET, - STATE(70), 1, - sym_block, - STATE(1078), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3185), 1, + anon_sym_SEMI, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101236,62 +103988,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42571] = 23, - ACTIONS(2574), 1, + [44128] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(2985), 1, + ACTIONS(3187), 1, anon_sym_SEMI, - ACTIONS(3085), 1, - anon_sym_RBRACE, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101302,56 +104052,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42660] = 18, - ACTIONS(2574), 1, + [44214] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2582), 1, - anon_sym_EQ, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3009), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(3019), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(2694), 1, anon_sym_CARET, - STATE(1078), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3189), 1, + anon_sym_RBRACK, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2572), 14, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_PIPE_PIPE, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101362,120 +104116,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42738] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(2818), 1, - sym_metavariable, - ACTIONS(2927), 1, - anon_sym_default, - ACTIONS(3087), 1, - sym_identifier, - ACTIONS(3089), 1, - anon_sym_fn, - STATE(1694), 1, - sym_scoped_type_identifier, - STATE(2278), 1, - sym_generic_type, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2396), 1, - sym_function_modifiers, - STATE(2415), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2812), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [42816] = 22, - ACTIONS(2574), 1, + [44300] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3091), 1, - anon_sym_SEMI, - STATE(1078), 1, + ACTIONS(3191), 1, + anon_sym_COMMA, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101486,60 +104180,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42902] = 22, - ACTIONS(2574), 1, + [44386] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_COMMA, - STATE(1078), 1, + ACTIONS(3193), 1, + anon_sym_RBRACK, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101550,60 +104244,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42988] = 22, - ACTIONS(2574), 1, + [44472] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3093), 1, + ACTIONS(3195), 1, anon_sym_SEMI, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101614,60 +104308,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43074] = 22, - ACTIONS(2574), 1, + [44558] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3095), 1, + ACTIONS(3197), 1, anon_sym_SEMI, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101678,60 +104372,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43160] = 22, - ACTIONS(2574), 1, + [44644] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3097), 1, - anon_sym_COMMA, - STATE(1078), 1, + ACTIONS(3199), 1, + anon_sym_SEMI, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101742,60 +104436,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43246] = 22, - ACTIONS(2574), 1, + [44730] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3099), 1, - anon_sym_RBRACK, - STATE(1078), 1, + ACTIONS(3201), 1, + anon_sym_SEMI, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101806,60 +104500,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43332] = 22, - ACTIONS(2574), 1, + [44816] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3101), 1, - anon_sym_EQ_GT, - STATE(1078), 1, + ACTIONS(3203), 1, + anon_sym_RBRACK, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101870,42 +104564,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43418] = 4, - ACTIONS(3039), 1, - anon_sym_COLON_COLON, + [44902] = 22, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, + anon_sym_DOT_DOT, + ACTIONS(2688), 1, + anon_sym_AMP_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3103), 1, + anon_sym_SEMI, + STATE(1088), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 15, + ACTIONS(2674), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2676), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2384), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101916,57 +104628,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43468] = 19, - ACTIONS(2574), 1, + [44988] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(2690), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(2694), 1, anon_sym_CARET, - STATE(1078), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3205), 1, + anon_sym_SEMI, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2622), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101977,60 +104692,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43548] = 22, - ACTIONS(2574), 1, + [45074] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2884), 1, - anon_sym_LBRACE, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(2690), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(2694), 1, anon_sym_CARET, - STATE(1078), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3207), 1, + anon_sym_SEMI, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102041,60 +104756,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43634] = 22, - ACTIONS(2574), 1, + [45160] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3103), 1, - anon_sym_COMMA, - STATE(1078), 1, + ACTIONS(3209), 1, + anon_sym_SEMI, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102105,60 +104820,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43720] = 22, - ACTIONS(2574), 1, + [45246] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3105), 1, - anon_sym_SEMI, - STATE(1078), 1, + ACTIONS(3211), 1, + anon_sym_RBRACK, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102169,60 +104884,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43806] = 22, - ACTIONS(2574), 1, + [45332] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3107), 1, + ACTIONS(3213), 1, anon_sym_SEMI, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102233,60 +104948,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43892] = 22, - ACTIONS(2574), 1, + [45418] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3109), 1, + ACTIONS(3215), 1, anon_sym_SEMI, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102297,13 +105012,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43978] = 4, - ACTIONS(3111), 1, + [45504] = 4, + ACTIONS(3217), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(550), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102319,7 +105034,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(459), 23, + ACTIONS(548), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102343,124 +105058,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44028] = 22, - ACTIONS(2574), 1, + [45554] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(2690), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3113), 1, - anon_sym_RBRACK, - STATE(1078), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44114] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3115), 1, + ACTIONS(3219), 1, anon_sym_SEMI, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102471,111 +105122,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44200] = 9, - ACTIONS(2574), 1, + [45640] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - STATE(1078), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2684), 13, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2682), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44260] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3117), 1, + ACTIONS(3221), 1, anon_sym_SEMI, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102586,60 +105186,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44346] = 22, - ACTIONS(2574), 1, + [45726] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3119), 1, + ACTIONS(3223), 1, anon_sym_SEMI, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102650,60 +105250,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44432] = 22, - ACTIONS(2574), 1, + [45812] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3121), 1, - anon_sym_SEMI, - STATE(1078), 1, + ACTIONS(3225), 1, + anon_sym_RBRACK, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102714,57 +105314,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44518] = 19, - ACTIONS(2574), 1, + [45898] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2788), 1, - anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(2690), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(2694), 1, anon_sym_CARET, - STATE(1078), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3227), 1, + anon_sym_SEMI, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2786), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102775,47 +105378,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44598] = 9, - ACTIONS(2574), 1, + [45984] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3013), 1, + ACTIONS(2682), 1, + anon_sym_AMP, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - STATE(1078), 1, + ACTIONS(2688), 1, + anon_sym_AMP_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, + anon_sym_PIPE, + ACTIONS(2694), 1, + anon_sym_CARET, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3229), 1, + anon_sym_COMMA, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2780), 13, + ACTIONS(2674), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2684), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2676), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2778), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102826,24 +105442,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44658] = 6, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - STATE(1078), 1, - sym_arguments, + [46070] = 4, + ACTIONS(2580), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(313), 14, + ACTIONS(2582), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -102852,12 +105464,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(311), 21, + ACTIONS(2578), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -102874,60 +105488,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44712] = 22, - ACTIONS(2574), 1, + [46120] = 19, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(2772), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + ACTIONS(2770), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102938,60 +105549,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44798] = 22, - ACTIONS(2574), 1, + [46200] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3123), 1, + ACTIONS(3231), 1, anon_sym_SEMI, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103002,60 +105613,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44884] = 22, - ACTIONS(2574), 1, + [46286] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3125), 1, - anon_sym_SEMI, - STATE(1078), 1, + ACTIONS(3233), 1, + anon_sym_EQ_GT, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103066,60 +105677,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44970] = 22, - ACTIONS(2574), 1, + [46372] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3127), 1, + ACTIONS(3235), 1, anon_sym_SEMI, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103130,106 +105741,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45056] = 22, - ACTIONS(2574), 1, + [46458] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3129), 1, - anon_sym_RBRACK, - STATE(1078), 1, + ACTIONS(3237), 1, + anon_sym_COMMA, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45142] = 4, - ACTIONS(2472), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2466), 15, - anon_sym_PLUS, + ACTIONS(2676), 3, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2462), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103240,60 +105805,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45192] = 22, - ACTIONS(2574), 1, + [46544] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3131), 1, + ACTIONS(3239), 1, anon_sym_SEMI, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103304,48 +105869,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45278] = 18, + [46630] = 18, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(696), 1, + ACTIONS(678), 1, anon_sym_extern, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2818), 1, + ACTIONS(2897), 1, sym_metavariable, - ACTIONS(2927), 1, + ACTIONS(3011), 1, anon_sym_default, - ACTIONS(3133), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(3243), 1, anon_sym_fn, - STATE(1692), 1, + STATE(1771), 1, sym_scoped_type_identifier, - STATE(2278), 1, - sym_generic_type, - STATE(2289), 1, + STATE(2327), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2328), 1, sym_generic_type_with_turbofish, - STATE(2315), 1, + STATE(2360), 1, sym_function_modifiers, - STATE(2415), 1, + STATE(2385), 1, + sym_generic_type, + STATE(2485), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(658), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - ACTIONS(2812), 18, + ACTIONS(2891), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103364,60 +105929,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [45356] = 22, - ACTIONS(2574), 1, + [46708] = 11, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - STATE(1078), 1, + ACTIONS(3087), 1, + anon_sym_DOT_DOT, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2716), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2714), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103428,60 +105982,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45442] = 22, - ACTIONS(2574), 1, + [46772] = 13, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3137), 1, - anon_sym_SEMI, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2716), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2714), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103492,60 +106037,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45528] = 22, - ACTIONS(2574), 1, + [46840] = 14, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3139), 1, - anon_sym_RBRACK, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2716), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(2714), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103556,29 +106093,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45614] = 10, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3013), 1, + [46910] = 6, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2582), 10, + ACTIONS(317), 14, anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103588,8 +106116,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2572), 19, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(315), 21, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_AMP_AMP, @@ -103608,24 +106141,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45676] = 9, - ACTIONS(2574), 1, + [46964] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(3013), 1, + ACTIONS(2899), 1, + anon_sym_LBRACE, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(3079), 1, + anon_sym_EQ, + ACTIONS(3083), 1, + anon_sym_AMP, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - STATE(1078), 1, + ACTIONS(3089), 1, + anon_sym_AMP_AMP, + ACTIONS(3091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3093), 1, + anon_sym_PIPE, + ACTIONS(3095), 1, + anon_sym_CARET, + STATE(1088), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3081), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3077), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3097), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3101), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47050] = 9, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(3087), 1, + anon_sym_DOT_DOT, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2582), 13, + ACTIONS(2957), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103639,7 +106236,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2572), 19, + ACTIONS(2955), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -103659,54 +106256,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45736] = 19, - ACTIONS(2574), 1, + [47110] = 19, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2668), 1, + ACTIONS(2911), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2666), 13, + ACTIONS(2909), 13, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -103720,53 +106317,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45816] = 15, - ACTIONS(2574), 1, + [47190] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3009), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(3019), 1, + ACTIONS(2688), 1, + anon_sym_AMP_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(2694), 1, anon_sym_CARET, - STATE(1078), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2905), 1, + anon_sym_EQ, + ACTIONS(3245), 1, + anon_sym_SEMI, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3011), 2, + ACTIONS(2680), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2582), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3003), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2572), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103777,50 +106381,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45888] = 12, - ACTIONS(2574), 1, + [47276] = 17, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(3013), 1, + ACTIONS(2716), 1, + anon_sym_EQ, + ACTIONS(3083), 1, + anon_sym_AMP, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - STATE(1078), 1, + ACTIONS(3093), 1, + anon_sym_PIPE, + ACTIONS(3095), 1, + anon_sym_CARET, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3011), 2, + ACTIONS(3081), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2582), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2572), 19, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3097), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2714), 15, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103831,54 +106440,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45954] = 17, - ACTIONS(2574), 1, + [47352] = 18, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2582), 1, - anon_sym_EQ, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(3009), 1, + ACTIONS(2716), 1, + anon_sym_EQ, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3019), 1, + ACTIONS(3089), 1, + anon_sym_AMP_AMP, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2572), 15, + ACTIONS(2714), 14, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -103890,54 +106500,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46030] = 19, - ACTIONS(283), 1, - anon_sym_EQ, - ACTIONS(2574), 1, + [47430] = 19, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2678), 1, + anon_sym_EQ, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(277), 13, + ACTIONS(2668), 13, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -103951,38 +106561,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46110] = 9, - ACTIONS(2574), 1, + [47510] = 12, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 2, + ACTIONS(3075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2822), 13, - anon_sym_PLUS, + ACTIONS(3099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3077), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2716), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2820), 19, + ACTIONS(2714), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -104002,60 +106615,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46170] = 22, - ACTIONS(2574), 1, + [47576] = 15, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3141), 1, - anon_sym_RBRACK, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2714), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104066,60 +106672,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46256] = 22, - ACTIONS(2574), 1, + [47648] = 19, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(2740), 1, + anon_sym_EQ, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3143), 1, - anon_sym_COMMA, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2738), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104130,43 +106733,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46342] = 14, - ACTIONS(2574), 1, + [47728] = 9, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(2716), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2582), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2572), 19, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2714), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -104186,42 +106784,159 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46412] = 13, - ACTIONS(2574), 1, + [47788] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(678), 1, + anon_sym_extern, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(2897), 1, + sym_metavariable, + ACTIONS(3011), 1, + anon_sym_default, + ACTIONS(3247), 1, + sym_identifier, + ACTIONS(3249), 1, + anon_sym_fn, + STATE(1747), 1, + sym_scoped_type_identifier, + STATE(2327), 1, + sym_bracketed_type, + STATE(2328), 1, + sym_generic_type_with_turbofish, + STATE(2385), 1, + sym_generic_type, + STATE(2485), 1, + sym_scoped_identifier, + STATE(2511), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(658), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2891), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [47866] = 19, + ACTIONS(283), 1, + anon_sym_EQ, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - STATE(1078), 1, + ACTIONS(3089), 1, + anon_sym_AMP_AMP, + ACTIONS(3091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3093), 1, + anon_sym_PIPE, + ACTIONS(3095), 1, + anon_sym_CARET, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3011), 2, + ACTIONS(3081), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2582), 5, + ACTIONS(3097), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(277), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47946] = 9, + ACTIONS(2670), 1, + anon_sym_LPAREN, + ACTIONS(2672), 1, + anon_sym_LBRACK, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(3087), 1, + anon_sym_DOT_DOT, + STATE(1088), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3085), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2923), 13, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2572), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2921), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -104241,40 +106956,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46480] = 11, - ACTIONS(2574), 1, + [48006] = 10, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2582), 8, + ACTIONS(2716), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2572), 19, + ACTIONS(2714), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -104294,60 +107008,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46544] = 22, - ACTIONS(2574), 1, + [48068] = 9, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3145), 1, - anon_sym_SEMI, - STATE(1078), 1, + ACTIONS(3087), 1, + anon_sym_DOT_DOT, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3085), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2848), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2846), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104358,57 +107059,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46630] = 19, - ACTIONS(2574), 1, + [48128] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2614), 1, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2903), 1, + anon_sym_as, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3083), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3087), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3089), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3091), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3021), 1, + ACTIONS(3095), 1, anon_sym_CARET, - STATE(1078), 1, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3081), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3085), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, + ACTIONS(3099), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3077), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2612), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3101), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104419,13 +107123,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46710] = 4, - ACTIONS(2464), 1, + [48214] = 4, + ACTIONS(3177), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2466), 15, + ACTIONS(2522), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104441,7 +107145,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2462), 23, + ACTIONS(2520), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104465,60 +107169,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46760] = 22, - ACTIONS(2574), 1, + [48264] = 22, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, + ACTIONS(2672), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(2688), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(2690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2692), 1, anon_sym_PIPE, - ACTIONS(2596), 1, + ACTIONS(2694), 1, anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(2700), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(2903), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2905), 1, anon_sym_EQ, - ACTIONS(3147), 1, - anon_sym_SEMI, - STATE(1078), 1, + ACTIONS(3137), 1, + anon_sym_COMMA, + STATE(1088), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2680), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2684), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(2676), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(2696), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(2907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104529,188 +107233,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46846] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3149), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + [48350] = 4, + ACTIONS(2588), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2582), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46932] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3151), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47018] = 22, - ACTIONS(2574), 1, + anon_sym_DOT, + ACTIONS(2578), 23, anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104721,43 +107279,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47104] = 15, + [48400] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3155), 1, + ACTIONS(3251), 1, sym_identifier, - ACTIONS(3157), 1, + ACTIONS(3253), 1, anon_sym_LBRACE, - ACTIONS(3159), 1, + ACTIONS(3255), 1, anon_sym_RBRACE, - ACTIONS(3161), 1, + ACTIONS(3257), 1, anon_sym_STAR, - ACTIONS(3165), 1, + ACTIONS(3261), 1, anon_sym_COMMA, - ACTIONS(3167), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(3171), 1, + ACTIONS(3267), 1, sym_metavariable, - STATE(1629), 1, + STATE(1720), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, + ACTIONS(3265), 3, sym_self, sym_super, sym_crate, - STATE(1862), 5, + STATE(1959), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3163), 19, + ACTIONS(3259), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104777,41 +107335,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47175] = 14, + [48471] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3155), 1, + ACTIONS(3251), 1, sym_identifier, - ACTIONS(3157), 1, + ACTIONS(3253), 1, anon_sym_LBRACE, - ACTIONS(3161), 1, + ACTIONS(3257), 1, anon_sym_STAR, - ACTIONS(3167), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(3171), 1, + ACTIONS(3267), 1, sym_metavariable, - ACTIONS(3173), 1, + ACTIONS(3269), 1, anon_sym_RBRACE, - STATE(1629), 1, + STATE(1720), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, + ACTIONS(3265), 3, sym_self, sym_super, sym_crate, - STATE(2188), 5, + STATE(2208), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3163), 19, + ACTIONS(3259), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104831,41 +107389,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47243] = 14, + [48539] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3155), 1, + ACTIONS(3251), 1, sym_identifier, - ACTIONS(3157), 1, + ACTIONS(3253), 1, anon_sym_LBRACE, - ACTIONS(3161), 1, + ACTIONS(3257), 1, anon_sym_STAR, - ACTIONS(3167), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(3171), 1, + ACTIONS(3267), 1, sym_metavariable, - ACTIONS(3175), 1, + ACTIONS(3271), 1, anon_sym_RBRACE, - STATE(1629), 1, + STATE(1720), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, + ACTIONS(3265), 3, sym_self, sym_super, sym_crate, - STATE(2188), 5, + STATE(2208), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3163), 19, + ACTIONS(3259), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104885,39 +107443,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47311] = 13, + [48607] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3155), 1, + ACTIONS(3251), 1, sym_identifier, - ACTIONS(3157), 1, + ACTIONS(3253), 1, anon_sym_LBRACE, - ACTIONS(3161), 1, + ACTIONS(3257), 1, anon_sym_STAR, - ACTIONS(3167), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(3171), 1, + ACTIONS(3267), 1, sym_metavariable, - STATE(1629), 1, + STATE(1720), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, + ACTIONS(3265), 3, sym_self, sym_super, sym_crate, - STATE(2354), 5, + STATE(2392), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3163), 19, + ACTIONS(3259), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104937,39 +107495,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47376] = 13, + [48672] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3155), 1, + ACTIONS(3251), 1, sym_identifier, - ACTIONS(3157), 1, + ACTIONS(3253), 1, anon_sym_LBRACE, - ACTIONS(3161), 1, + ACTIONS(3257), 1, anon_sym_STAR, - ACTIONS(3167), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(3171), 1, + ACTIONS(3267), 1, sym_metavariable, - STATE(1629), 1, + STATE(1720), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, + ACTIONS(3265), 3, sym_self, sym_super, sym_crate, - STATE(2388), 5, + STATE(2208), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3163), 19, + ACTIONS(3259), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104989,39 +107547,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47441] = 13, + [48737] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3155), 1, + ACTIONS(3251), 1, sym_identifier, - ACTIONS(3157), 1, + ACTIONS(3253), 1, anon_sym_LBRACE, - ACTIONS(3161), 1, + ACTIONS(3257), 1, anon_sym_STAR, - ACTIONS(3167), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(3171), 1, + ACTIONS(3267), 1, sym_metavariable, - STATE(1629), 1, + STATE(1720), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, + ACTIONS(3265), 3, sym_self, sym_super, sym_crate, - STATE(2188), 5, + STATE(2324), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3163), 19, + ACTIONS(3259), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105041,39 +107599,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47506] = 13, + [48802] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3155), 1, + ACTIONS(3251), 1, sym_identifier, - ACTIONS(3157), 1, + ACTIONS(3253), 1, anon_sym_LBRACE, - ACTIONS(3161), 1, + ACTIONS(3257), 1, anon_sym_STAR, - ACTIONS(3167), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(3171), 1, + ACTIONS(3267), 1, sym_metavariable, - STATE(1629), 1, + STATE(1720), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, + ACTIONS(3265), 3, sym_self, sym_super, sym_crate, - STATE(2270), 5, + STATE(2484), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3163), 19, + ACTIONS(3259), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105093,39 +107651,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47571] = 13, + [48867] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3155), 1, + ACTIONS(3251), 1, sym_identifier, - ACTIONS(3157), 1, + ACTIONS(3253), 1, anon_sym_LBRACE, - ACTIONS(3161), 1, + ACTIONS(3257), 1, anon_sym_STAR, - ACTIONS(3167), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(3171), 1, + ACTIONS(3267), 1, sym_metavariable, - STATE(1629), 1, + STATE(1720), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, + ACTIONS(3265), 3, sym_self, sym_super, sym_crate, - STATE(2443), 5, + STATE(2445), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3163), 19, + ACTIONS(3259), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105145,15 +107703,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47636] = 3, + [48932] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3179), 3, + ACTIONS(3275), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3177), 28, + ACTIONS(3273), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105182,15 +107740,15 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47676] = 3, + [48972] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3183), 3, + ACTIONS(3279), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3181), 28, + ACTIONS(3277), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105219,15 +107777,15 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47716] = 3, + [49012] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3187), 3, + ACTIONS(3283), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3185), 28, + ACTIONS(3281), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105256,31 +107814,31 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47756] = 11, + [49052] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(948), 1, + ACTIONS(1031), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(3023), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(3033), 1, sym_metavariable, - STATE(1553), 1, + STATE(1562), 1, sym_scoped_identifier, - STATE(2255), 1, + STATE(2321), 1, + sym_generic_type_with_turbofish, + STATE(2357), 1, sym_meta_item, - STATE(2370), 1, + STATE(2433), 1, sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, + ACTIONS(3031), 3, sym_self, sym_super, sym_crate, - ACTIONS(2935), 19, + ACTIONS(3027), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105300,31 +107858,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47811] = 11, + [49107] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(948), 1, + ACTIONS(1031), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(3023), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(3033), 1, sym_metavariable, - STATE(1553), 1, + STATE(1562), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_meta_item, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, + STATE(2347), 1, + sym_meta_item, + STATE(2433), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, + ACTIONS(3031), 3, sym_self, sym_super, sym_crate, - ACTIONS(2935), 19, + ACTIONS(3027), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105344,31 +107902,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47866] = 11, + [49162] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(948), 1, + ACTIONS(1031), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(3023), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(3033), 1, sym_metavariable, - STATE(1553), 1, + STATE(1562), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, STATE(2433), 1, + sym_bracketed_type, + STATE(2478), 1, sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, + ACTIONS(3031), 3, sym_self, sym_super, sym_crate, - ACTIONS(2935), 19, + ACTIONS(3027), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105388,31 +107946,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47921] = 11, + [49217] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(948), 1, + ACTIONS(1031), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(3023), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(3033), 1, sym_metavariable, - STATE(1553), 1, + STATE(1562), 1, sym_scoped_identifier, - STATE(2363), 1, - sym_meta_item, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, + STATE(2523), 1, + sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, + ACTIONS(3031), 3, sym_self, sym_super, sym_crate, - ACTIONS(2935), 19, + ACTIONS(3027), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105432,31 +107990,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47976] = 11, + [49272] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(948), 1, + ACTIONS(1031), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(3023), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(3033), 1, sym_metavariable, - STATE(1553), 1, + STATE(1562), 1, sym_scoped_identifier, STATE(2293), 1, sym_meta_item, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, + ACTIONS(3031), 3, sym_self, sym_super, sym_crate, - ACTIONS(2935), 19, + ACTIONS(3027), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105476,31 +108034,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48031] = 11, + [49327] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(948), 1, + ACTIONS(1031), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(3023), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(3033), 1, sym_metavariable, - STATE(1553), 1, + STATE(1562), 1, sym_scoped_identifier, - STATE(2335), 1, + STATE(2321), 1, + sym_generic_type_with_turbofish, + STATE(2382), 1, sym_meta_item, - STATE(2370), 1, + STATE(2433), 1, sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, + ACTIONS(3031), 3, sym_self, sym_super, sym_crate, - ACTIONS(2935), 19, + ACTIONS(3027), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105520,31 +108078,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48086] = 11, + [49382] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(948), 1, + ACTIONS(1031), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(3023), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(3033), 1, sym_metavariable, - STATE(1553), 1, + STATE(1562), 1, sym_scoped_identifier, - STATE(2268), 1, + STATE(2321), 1, + sym_generic_type_with_turbofish, + STATE(2423), 1, sym_meta_item, - STATE(2370), 1, + STATE(2433), 1, sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, + ACTIONS(3031), 3, sym_self, sym_super, sym_crate, - ACTIONS(2935), 19, + ACTIONS(3027), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105564,29 +108122,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48141] = 10, + [49437] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(948), 1, + ACTIONS(1031), 1, anon_sym_COLON_COLON, - ACTIONS(3189), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3195), 1, + ACTIONS(3291), 1, sym_metavariable, - STATE(2065), 1, + STATE(2112), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3193), 3, + ACTIONS(3289), 3, sym_self, sym_super, sym_crate, - ACTIONS(3191), 19, + ACTIONS(3287), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105606,29 +108164,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48193] = 10, + [49489] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(948), 1, + ACTIONS(1031), 1, anon_sym_COLON_COLON, - ACTIONS(3197), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3203), 1, + ACTIONS(3299), 1, sym_metavariable, - STATE(2193), 1, + STATE(2279), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, + STATE(2321), 1, sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3201), 3, + ACTIONS(3297), 3, sym_self, sym_super, sym_crate, - ACTIONS(3199), 19, + ACTIONS(3295), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105648,13 +108206,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48245] = 3, - ACTIONS(2211), 1, + [49541] = 3, + ACTIONS(2289), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2213), 20, + ACTIONS(2291), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105675,13 +108233,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48275] = 3, - ACTIONS(2159), 1, + [49571] = 3, + ACTIONS(2277), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2161), 20, + ACTIONS(2279), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105702,25 +108260,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48305] = 9, - ACTIONS(2364), 1, + [49601] = 10, + ACTIONS(3303), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_COLON_COLON, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3315), 1, + anon_sym_AT, + STATE(1326), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3307), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3301), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [49643] = 9, + ACTIONS(2460), 1, anon_sym_COLON, - ACTIONS(3205), 1, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, anon_sym_LPAREN, - ACTIONS(3207), 1, + ACTIONS(3319), 1, anon_sym_BANG, - ACTIONS(3209), 1, + ACTIONS(3321), 1, anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - STATE(1285), 1, + STATE(1326), 1, sym_type_arguments, - STATE(1307), 1, + STATE(1360), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 12, + ACTIONS(2456), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105733,49 +108323,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48345] = 10, - ACTIONS(3211), 1, + [49683] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2504), 2, + anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(3215), 1, + ACTIONS(2508), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2510), 14, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3217), 1, - anon_sym_LBRACE, - ACTIONS(3221), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(3225), 1, - anon_sym_AT, - STATE(1285), 1, - sym_type_arguments, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [49712] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3219), 2, + ACTIONS(2488), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2492), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 9, + ACTIONS(2494), 14, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48387] = 4, + [49741] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2406), 2, + ACTIONS(2512), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2410), 2, + ACTIONS(2516), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2412), 14, + ACTIONS(2518), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105790,41 +108398,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48416] = 4, - ACTIONS(2408), 1, + [49770] = 8, + ACTIONS(2470), 1, anon_sym_COLON, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3321), 1, + anon_sym_COLON_COLON, + STATE(1326), 1, + sym_type_arguments, + STATE(1360), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2412), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2406), 15, + ACTIONS(2468), 12, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_PIPE, + [49807] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2496), 2, + anon_sym_LBRACE, anon_sym_LT2, + ACTIONS(2500), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2502), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48445] = 4, - ACTIONS(2432), 1, + [49836] = 4, + ACTIONS(2506), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2436), 2, + ACTIONS(2510), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2430), 15, + ACTIONS(2504), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105840,16 +108477,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [48474] = 4, - ACTIONS(2400), 1, + [49865] = 4, + ACTIONS(2498), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2404), 2, + ACTIONS(2502), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2398), 15, + ACTIONS(2496), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105865,48 +108502,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [48503] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2430), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2434), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2436), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [48532] = 8, - ACTIONS(2374), 1, + [49894] = 8, + ACTIONS(2474), 1, anon_sym_COLON, - ACTIONS(3205), 1, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, anon_sym_LPAREN, - ACTIONS(3209), 1, + ACTIONS(3321), 1, anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - STATE(1285), 1, + STATE(1326), 1, sym_type_arguments, - STATE(1307), 1, + STATE(1360), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2372), 12, + ACTIONS(2472), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105919,66 +108531,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48569] = 4, + [49931] = 4, + ACTIONS(2514), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2414), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2418), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2420), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, + ACTIONS(2518), 2, anon_sym_BANG, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [48598] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2398), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2402), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2404), 14, + ACTIONS(2512), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [48627] = 4, - ACTIONS(2416), 1, + [49960] = 4, + ACTIONS(2490), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2420), 2, + ACTIONS(2494), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2414), 15, + ACTIONS(2488), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105993,29 +108580,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_LT2, - anon_sym_PIPE, - [48656] = 8, - ACTIONS(2378), 1, - anon_sym_COLON, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - STATE(1285), 1, + anon_sym_PIPE, + [49989] = 6, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, + anon_sym_LPAREN, + STATE(1337), 1, sym_type_arguments, - STATE(1307), 1, + STATE(1357), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2376), 12, + ACTIONS(2484), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -106023,19 +108607,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48693] = 6, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + [50021] = 6, + ACTIONS(3313), 1, anon_sym_LT2, - STATE(1276), 1, + ACTIONS(3317), 1, + anon_sym_LPAREN, + STATE(1337), 1, sym_type_arguments, - STATE(1300), 1, + STATE(1357), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 13, + ACTIONS(2530), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106049,56 +108633,93 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48725] = 17, - ACTIONS(3229), 1, + [50053] = 17, + ACTIONS(3325), 1, anon_sym_const, - ACTIONS(3231), 1, + ACTIONS(3327), 1, anon_sym_enum, - ACTIONS(3233), 1, + ACTIONS(3329), 1, anon_sym_fn, - ACTIONS(3235), 1, + ACTIONS(3331), 1, anon_sym_mod, - ACTIONS(3237), 1, + ACTIONS(3333), 1, anon_sym_static, - ACTIONS(3239), 1, + ACTIONS(3335), 1, anon_sym_struct, - ACTIONS(3241), 1, + ACTIONS(3337), 1, anon_sym_trait, - ACTIONS(3243), 1, + ACTIONS(3339), 1, anon_sym_type, - ACTIONS(3245), 1, + ACTIONS(3341), 1, anon_sym_union, - ACTIONS(3247), 1, + ACTIONS(3343), 1, anon_sym_unsafe, - ACTIONS(3249), 1, + ACTIONS(3345), 1, anon_sym_use, - ACTIONS(3251), 1, + ACTIONS(3347), 1, anon_sym_extern, - STATE(1458), 1, + STATE(1508), 1, sym_extern_modifier, - STATE(1491), 1, + STATE(1551), 1, aux_sym_function_modifiers_repeat1, - STATE(2469), 1, + STATE(2514), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3227), 2, + ACTIONS(3323), 2, anon_sym_async, anon_sym_default, - [48779] = 6, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + [50107] = 17, + ACTIONS(3349), 1, + anon_sym_const, + ACTIONS(3351), 1, + anon_sym_enum, + ACTIONS(3353), 1, + anon_sym_fn, + ACTIONS(3355), 1, + anon_sym_mod, + ACTIONS(3357), 1, + anon_sym_static, + ACTIONS(3359), 1, + anon_sym_struct, + ACTIONS(3361), 1, + anon_sym_trait, + ACTIONS(3363), 1, + anon_sym_type, + ACTIONS(3365), 1, + anon_sym_union, + ACTIONS(3367), 1, + anon_sym_unsafe, + ACTIONS(3369), 1, + anon_sym_use, + ACTIONS(3371), 1, + anon_sym_extern, + STATE(1488), 1, + sym_extern_modifier, + STATE(1551), 1, + aux_sym_function_modifiers_repeat1, + STATE(2336), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3323), 2, + anon_sym_async, + anon_sym_default, + [50161] = 6, + ACTIONS(3313), 1, anon_sym_LT2, - STATE(1276), 1, + ACTIONS(3317), 1, + anon_sym_LPAREN, + STATE(1337), 1, sym_type_arguments, - STATE(1300), 1, + STATE(1357), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2380), 13, + ACTIONS(2476), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106112,20 +108733,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48811] = 6, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + [50193] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2426), 13, + ACTIONS(2496), 16, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -106133,76 +108747,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [48843] = 17, - ACTIONS(3253), 1, + [50216] = 3, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3145), 15, + anon_sym_async, anon_sym_const, - ACTIONS(3255), 1, + anon_sym_default, anon_sym_enum, - ACTIONS(3257), 1, anon_sym_fn, - ACTIONS(3259), 1, anon_sym_mod, - ACTIONS(3261), 1, anon_sym_static, - ACTIONS(3263), 1, anon_sym_struct, - ACTIONS(3265), 1, anon_sym_trait, - ACTIONS(3267), 1, anon_sym_type, - ACTIONS(3269), 1, anon_sym_union, - ACTIONS(3271), 1, anon_sym_unsafe, - ACTIONS(3273), 1, anon_sym_use, - ACTIONS(3275), 1, anon_sym_extern, - STATE(1428), 1, - sym_extern_modifier, - STATE(1491), 1, - aux_sym_function_modifiers_repeat1, - STATE(2412), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3227), 2, - anon_sym_async, - anon_sym_default, - [48897] = 2, + sym_identifier, + [50241] = 6, + ACTIONS(3303), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2398), 16, + ACTIONS(3307), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3301), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, + anon_sym_in, anon_sym_PIPE, - [48920] = 3, - ACTIONS(3277), 1, - anon_sym_LPAREN, + [50271] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2991), 15, + ACTIONS(3115), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -106218,13 +108820,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [48945] = 3, - ACTIONS(2500), 1, + [50293] = 3, + ACTIONS(2592), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2498), 14, + ACTIONS(2590), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106239,115 +108841,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [48969] = 3, - ACTIONS(2490), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2488), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + [50317] = 14, + ACTIONS(2456), 1, anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, + ACTIONS(3301), 1, anon_sym_PIPE, - [48993] = 13, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3217), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3225), 1, - anon_sym_AT, - ACTIONS(3279), 1, - anon_sym_LPAREN, - ACTIONS(3281), 1, - anon_sym_RBRACK, - ACTIONS(3284), 1, - anon_sym_COLON_COLON, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2360), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3213), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49037] = 3, - ACTIONS(2524), 1, + ACTIONS(3307), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2522), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [49061] = 13, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3211), 1, + ACTIONS(3313), 1, anon_sym_LT2, - ACTIONS(3213), 1, - anon_sym_PIPE, - ACTIONS(3217), 1, - anon_sym_LBRACE, - ACTIONS(3219), 1, - anon_sym_COLON, - ACTIONS(3225), 1, + ACTIONS(3315), 1, anon_sym_AT, - ACTIONS(3286), 1, + ACTIONS(3319), 1, + anon_sym_BANG, + ACTIONS(3377), 1, anon_sym_LPAREN, - ACTIONS(3288), 1, + ACTIONS(3382), 1, anon_sym_COLON_COLON, - STATE(1285), 1, + STATE(1326), 1, sym_type_arguments, - STATE(1307), 1, + STATE(1360), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3311), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2360), 3, + ACTIONS(3379), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [49105] = 2, + [50363] = 3, + ACTIONS(2802), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 15, + ACTIONS(3149), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -106362,12 +108894,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [49127] = 2, + [50387] = 3, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3041), 15, + ACTIONS(3149), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -106382,38 +108915,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [49149] = 6, - ACTIONS(3215), 1, - anon_sym_LPAREN, - ACTIONS(3290), 1, - anon_sym_COLON_COLON, + [50411] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3219), 2, + ACTIONS(2492), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 9, + ACTIONS(2494), 13, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_as, anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49179] = 3, - ACTIONS(2866), 1, - anon_sym_COLON_COLON, + [50435] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2993), 14, + ACTIONS(3111), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -106428,13 +108955,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [49203] = 3, - ACTIONS(2486), 1, + sym_identifier, + [50457] = 3, + ACTIONS(2640), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2484), 14, + ACTIONS(2638), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106449,55 +108977,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [49227] = 3, - ACTIONS(3292), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2993), 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, - [49251] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2410), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2412), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [49275] = 3, - ACTIONS(2562), 1, + [50481] = 3, + ACTIONS(2612), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2560), 14, + ACTIONS(2610), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106512,14 +108998,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [49299] = 3, + [50505] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2434), 2, + ACTIONS(2516), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2436), 13, + ACTIONS(2518), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106533,11 +109019,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49323] = 2, + [50529] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 15, + ACTIONS(3151), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -106553,43 +109039,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49345] = 14, - ACTIONS(2360), 1, - anon_sym_PLUS, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3213), 1, - anon_sym_PIPE, - ACTIONS(3217), 1, - anon_sym_LBRACE, - ACTIONS(3219), 1, - anon_sym_COLON, - ACTIONS(3225), 1, - anon_sym_AT, - ACTIONS(3294), 1, - anon_sym_LPAREN, - ACTIONS(3296), 1, - anon_sym_COLON_COLON, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3281), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [49391] = 2, + [50551] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2876), 15, + ACTIONS(2985), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106605,36 +109059,34 @@ static uint16_t ts_small_parse_table[] = { sym_mutable_specifier, anon_sym_PIPE, sym_self, - [49413] = 3, + [50573] = 3, + ACTIONS(2596), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2418), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2420), 13, + ACTIONS(2594), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_COLON_COLON, - anon_sym_in, anon_sym_PIPE, - [49437] = 4, - ACTIONS(2396), 1, + [50597] = 3, + ACTIONS(2568), 1, anon_sym_COLON, - ACTIONS(3298), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 12, + ACTIONS(2566), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106642,116 +109094,142 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - [49462] = 3, - ACTIONS(3300), 1, - anon_sym_DASH_GT, + [50621] = 13, + ACTIONS(3301), 1, + anon_sym_PIPE, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3307), 1, + anon_sym_COLON, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3315), 1, + anon_sym_AT, + ACTIONS(3319), 1, + anon_sym_BANG, + ACTIONS(3386), 1, + anon_sym_LPAREN, + ACTIONS(3388), 1, + anon_sym_COLON_COLON, + STATE(1326), 1, + sym_type_arguments, + STATE(1360), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2554), 13, - anon_sym_SEMI, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2456), 3, anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [50665] = 13, + ACTIONS(3305), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3315), 1, + anon_sym_AT, + ACTIONS(3319), 1, + anon_sym_BANG, + ACTIONS(3379), 1, anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(3390), 1, + anon_sym_LPAREN, + ACTIONS(3392), 1, + anon_sym_COLON_COLON, + STATE(1326), 1, + sym_type_arguments, + STATE(1360), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2456), 2, + anon_sym_SEMI, anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3301), 2, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, - [49485] = 2, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [50709] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 14, + ACTIONS(2508), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2510), 13, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [49506] = 2, + [50733] = 4, + ACTIONS(2532), 1, + anon_sym_COLON, + ACTIONS(3394), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2474), 14, + ACTIONS(2530), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49527] = 4, - ACTIONS(3304), 1, - anon_sym_pat, - STATE(520), 1, - sym_fragment_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3302), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [49552] = 2, + [50758] = 3, + ACTIONS(2305), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2530), 14, + ACTIONS(2307), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49573] = 3, - ACTIONS(3306), 1, - anon_sym_DASH_GT, + [50781] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2516), 13, + ACTIONS(2630), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106763,15 +109241,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49596] = 3, - ACTIONS(3308), 1, - anon_sym_DASH_GT, + [50802] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2542), 13, + ACTIONS(2560), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106783,33 +109260,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49619] = 3, - ACTIONS(2199), 1, - anon_sym_EQ, + [50823] = 4, + ACTIONS(2486), 1, + anon_sym_COLON, + ACTIONS(3396), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2201), 13, + ACTIONS(2484), 12, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49642] = 2, + [50848] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2526), 14, + ACTIONS(2660), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106824,13 +109303,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49663] = 3, - ACTIONS(3310), 1, - anon_sym_DASH_GT, + [50869] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2502), 13, + ACTIONS(2614), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106842,17 +109319,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49686] = 4, - ACTIONS(2396), 1, + [50890] = 4, + ACTIONS(2486), 1, anon_sym_COLON, - ACTIONS(3312), 1, + ACTIONS(3171), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 12, + ACTIONS(2484), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106865,35 +109343,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49711] = 5, - ACTIONS(3318), 1, - anon_sym_COLON_COLON, + [50915] = 4, + ACTIONS(3400), 1, + anon_sym_pat, + STATE(544), 1, + sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3316), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3314), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [49738] = 3, - ACTIONS(3322), 1, - anon_sym_DASH_GT, + ACTIONS(3398), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [50940] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 13, + ACTIONS(2634), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106905,36 +109380,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49761] = 4, - ACTIONS(2382), 1, - anon_sym_COLON, - ACTIONS(3312), 1, + [50961] = 14, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3319), 1, + anon_sym_BANG, + ACTIONS(3321), 1, anon_sym_COLON_COLON, + ACTIONS(3402), 1, + anon_sym_COLON, + ACTIONS(3404), 1, + anon_sym_EQ, + ACTIONS(3406), 1, + anon_sym_COMMA, + ACTIONS(3408), 1, + anon_sym_GT, + STATE(1326), 1, + sym_type_arguments, + STATE(1360), 1, + sym_parameters, + STATE(2020), 1, + sym_trait_bounds, + STATE(2021), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2380), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2456), 2, anon_sym_PLUS, anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49786] = 3, - ACTIONS(3324), 1, + [51006] = 3, + ACTIONS(3410), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2548), 13, + ACTIONS(2598), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106948,20 +109434,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49809] = 4, - ACTIONS(2396), 1, - anon_sym_COLON, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, + [51029] = 3, + ACTIONS(3412), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 12, + ACTIONS(2642), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -106969,13 +109454,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49834] = 3, - ACTIONS(3326), 1, + [51052] = 3, + ACTIONS(3414), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2536), 13, + ACTIONS(2648), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106989,32 +109474,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49857] = 4, - ACTIONS(2428), 1, - anon_sym_COLON, - ACTIONS(3312), 1, + [51075] = 5, + ACTIONS(3420), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2426), 12, + ACTIONS(3418), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3422), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3416), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [49882] = 2, + [51102] = 3, + ACTIONS(3424), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2494), 14, + ACTIONS(2624), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107026,51 +109514,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49903] = 14, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3328), 1, + [51125] = 4, + ACTIONS(2478), 1, anon_sym_COLON, - ACTIONS(3330), 1, - anon_sym_EQ, - ACTIONS(3332), 1, - anon_sym_COMMA, - ACTIONS(3334), 1, - anon_sym_GT, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, - STATE(1893), 1, - aux_sym_type_parameters_repeat1, - STATE(1894), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2360), 2, - anon_sym_PLUS, - anon_sym_as, - [49948] = 2, + ACTIONS(3394), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 13, + ACTIONS(2476), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -107078,11 +109537,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49968] = 2, + [51150] = 3, + ACTIONS(3426), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(413), 13, + ACTIONS(2654), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107096,30 +109557,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49988] = 3, - ACTIONS(3338), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3336), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50010] = 2, + [51173] = 3, + ACTIONS(3428), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 13, + ACTIONS(2618), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107133,17 +109577,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50030] = 2, + [51196] = 4, + ACTIONS(2486), 1, + anon_sym_COLON, + ACTIONS(3394), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2646), 13, + ACTIONS(2484), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -107151,11 +109598,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50050] = 2, + [51221] = 3, + ACTIONS(3430), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2756), 13, + ACTIONS(2604), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107169,11 +109618,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50070] = 2, + [51244] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2568), 13, + ACTIONS(2762), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107187,11 +109636,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50090] = 2, + [51264] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 13, + ACTIONS(2973), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107205,11 +109654,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50110] = 2, + [51284] = 3, + ACTIONS(3434), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2426), 13, + ACTIONS(3432), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51306] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2750), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107223,11 +109691,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50130] = 2, + [51326] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2662), 13, + ACTIONS(2730), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107241,11 +109709,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50150] = 2, + [51346] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2724), 13, + ACTIONS(2762), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107259,34 +109727,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50170] = 4, - ACTIONS(3219), 1, - anon_sym_EQ, + [51366] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 10, + ACTIONS(2999), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [50194] = 3, + [51386] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2402), 2, + ACTIONS(2500), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2404), 11, + ACTIONS(2502), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107298,11 +109764,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [50216] = 2, + [51408] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(596), 13, + ACTIONS(2726), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107316,11 +109782,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50236] = 2, + [51428] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(427), 13, + ACTIONS(2722), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107334,11 +109800,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50256] = 2, + [51448] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2880), 13, + ACTIONS(582), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107352,30 +109818,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50276] = 3, - ACTIONS(3342), 1, - anon_sym_EQ, + [51468] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3340), 12, + ACTIONS(2977), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [50298] = 2, + [51488] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2899), 13, + ACTIONS(2754), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107389,11 +109854,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50318] = 2, + [51508] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 13, + ACTIONS(2913), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107407,11 +109872,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50338] = 2, + [51528] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2728), 13, + ACTIONS(2951), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107425,11 +109890,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50358] = 2, + [51548] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 13, + ACTIONS(2476), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107443,11 +109908,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50378] = 2, + [51568] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2710), 13, + ACTIONS(2965), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107461,11 +109926,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50398] = 2, + [51588] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2706), 13, + ACTIONS(2854), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107479,11 +109944,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50418] = 2, + [51608] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 13, + ACTIONS(437), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107497,11 +109962,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50438] = 2, + [51628] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 13, + ACTIONS(2790), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107515,11 +109980,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50458] = 2, + [51648] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2854), 13, + ACTIONS(2961), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107533,11 +109998,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50478] = 2, + [51668] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2380), 13, + ACTIONS(2782), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107551,11 +110016,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50498] = 2, + [51688] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2710), 13, + ACTIONS(578), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107569,11 +110034,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50518] = 2, + [51708] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 13, + ACTIONS(2874), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107587,11 +110052,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50538] = 2, + [51728] = 4, + ACTIONS(3307), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3301), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51752] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2736), 13, + ACTIONS(2718), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107605,11 +110090,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50558] = 2, + [51772] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(467), 13, + ACTIONS(2484), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -107623,92 +110108,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50578] = 4, - ACTIONS(3348), 1, - anon_sym_COLON_COLON, + [51792] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3346), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3344), 9, + ACTIONS(2530), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [50601] = 4, - ACTIONS(3292), 1, - anon_sym_COLON_COLON, + [51812] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3352), 2, + ACTIONS(423), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [51832] = 3, + ACTIONS(3438), 1, anon_sym_EQ, - ACTIONS(3350), 9, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3436), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50624] = 3, - ACTIONS(399), 1, - anon_sym_EQ, + [51854] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(397), 11, + ACTIONS(2995), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_in, anon_sym_PIPE, - [50645] = 5, - ACTIONS(2434), 1, + [51874] = 5, + ACTIONS(2500), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3440), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2430), 5, + ACTIONS(2496), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2436), 5, + ACTIONS(2502), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50670] = 4, - ACTIONS(3348), 1, + [51899] = 4, + ACTIONS(3447), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3352), 2, + ACTIONS(3445), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3350), 9, + ACTIONS(3443), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107718,405 +110220,290 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50693] = 3, - ACTIONS(391), 1, - anon_sym_EQ, + [51922] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(389), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_in, - anon_sym_PIPE, - [50714] = 5, - ACTIONS(2418), 1, - anon_sym_COLON, - ACTIONS(3357), 1, + ACTIONS(3449), 2, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2414), 5, - anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(2488), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2420), 5, + ACTIONS(2494), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50739] = 5, - ACTIONS(2402), 1, - anon_sym_COLON, - ACTIONS(3360), 1, - anon_sym_LPAREN, + [51945] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2398), 5, - anon_sym_RPAREN, + ACTIONS(3440), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2496), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2404), 5, + ACTIONS(2502), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50764] = 5, - ACTIONS(2410), 1, - anon_sym_COLON, - ACTIONS(3363), 1, - anon_sym_LPAREN, + [51968] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2406), 5, - anon_sym_RPAREN, + ACTIONS(3452), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2504), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2412), 5, + ACTIONS(2510), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50789] = 4, - ACTIONS(3366), 1, + [51991] = 10, + ACTIONS(3303), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, anon_sym_COLON_COLON, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3315), 1, + anon_sym_AT, + ACTIONS(3455), 1, + anon_sym_BANG, + STATE(1326), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3352), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3350), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3301), 3, anon_sym_EQ_GT, - anon_sym_RBRACK, anon_sym_if, - anon_sym_COMMA, - anon_sym_in, anon_sym_PIPE, - [50812] = 4, + [52026] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3363), 2, + ACTIONS(3457), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2406), 4, + ACTIONS(2512), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2412), 6, + ACTIONS(2518), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50835] = 4, + [52049] = 5, + ACTIONS(2492), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3360), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2398), 4, - anon_sym_SEMI, + ACTIONS(2488), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2404), 6, - anon_sym_BANG, + ACTIONS(3449), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2494), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50858] = 4, + [52074] = 5, + ACTIONS(2500), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3357), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2414), 4, - anon_sym_SEMI, + ACTIONS(2496), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2420), 6, - anon_sym_BANG, + ACTIONS(3440), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2502), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50881] = 5, - ACTIONS(2434), 1, + [52099] = 5, + ACTIONS(2508), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2430), 3, + ACTIONS(2504), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3354), 3, + ACTIONS(3452), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2436), 5, + ACTIONS(2510), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50906] = 10, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3215), 1, - anon_sym_LPAREN, - ACTIONS(3217), 1, - anon_sym_LBRACE, - ACTIONS(3221), 1, - anon_sym_COLON_COLON, - ACTIONS(3225), 1, - anon_sym_AT, - ACTIONS(3368), 1, - anon_sym_BANG, - STATE(1285), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [50941] = 3, - ACTIONS(395), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(393), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_in, - anon_sym_PIPE, - [50962] = 5, - ACTIONS(2418), 1, + [52124] = 5, + ACTIONS(2516), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2414), 3, + ACTIONS(2512), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3357), 3, + ACTIONS(3457), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2420), 5, + ACTIONS(2518), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50987] = 4, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3372), 2, + [52149] = 5, + ACTIONS(2492), 1, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3370), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51010] = 4, + ACTIONS(3449), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3354), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2430), 4, - anon_sym_SEMI, + ACTIONS(2488), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2436), 6, + ACTIONS(2494), 5, anon_sym_BANG, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51033] = 4, - ACTIONS(3292), 1, - anon_sym_COLON_COLON, + [52174] = 5, + ACTIONS(2508), 1, + anon_sym_COLON, + ACTIONS(3452), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3346), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3344), 9, - anon_sym_SEMI, + ACTIONS(2504), 5, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_in, + anon_sym_LT2, + ACTIONS(2510), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51056] = 5, - ACTIONS(2402), 1, + [52199] = 5, + ACTIONS(2516), 1, anon_sym_COLON, + ACTIONS(3457), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2398), 3, + ACTIONS(2512), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3360), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2404), 5, + anon_sym_LT2, + ACTIONS(2518), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51081] = 4, - ACTIONS(3366), 1, - anon_sym_COLON_COLON, + [52224] = 3, + ACTIONS(391), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3346), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3344), 9, + ACTIONS(389), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51104] = 5, - ACTIONS(2410), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2406), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3363), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2412), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51129] = 4, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, + [52245] = 3, + ACTIONS(395), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3378), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3376), 9, + ACTIONS(393), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51152] = 6, - ACTIONS(3380), 1, - anon_sym_COLON, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3384), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51178] = 3, - ACTIONS(3388), 1, + [52266] = 3, + ACTIONS(399), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3386), 10, + ACTIONS(397), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108125,134 +110512,149 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51198] = 3, - ACTIONS(3392), 1, - anon_sym_EQ, + [52287] = 4, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3390), 10, + ACTIONS(3462), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3460), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51218] = 3, - ACTIONS(3396), 1, - anon_sym_EQ, + [52310] = 4, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3394), 10, + ACTIONS(3445), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3443), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51238] = 3, - ACTIONS(419), 1, - anon_sym_EQ, + [52333] = 4, + ACTIONS(3464), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(417), 10, + ACTIONS(3462), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3460), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51258] = 3, - ACTIONS(3400), 1, - anon_sym_EQ, + [52356] = 4, + ACTIONS(3447), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3398), 10, + ACTIONS(3462), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3460), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51278] = 3, - ACTIONS(3404), 1, - anon_sym_EQ, + [52379] = 4, + ACTIONS(3470), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3402), 10, + ACTIONS(3468), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3466), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51298] = 3, - ACTIONS(3219), 1, - anon_sym_EQ, + [52402] = 4, + ACTIONS(3464), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 10, + ACTIONS(3445), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3443), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51318] = 3, - ACTIONS(3408), 1, - anon_sym_EQ, + [52425] = 4, + ACTIONS(3470), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3406), 10, + ACTIONS(3474), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3472), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51338] = 3, - ACTIONS(3412), 1, + [52448] = 3, + ACTIONS(3478), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3410), 10, + ACTIONS(3476), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108263,13 +110665,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51358] = 3, - ACTIONS(3416), 1, + [52468] = 3, + ACTIONS(3482), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3414), 10, + ACTIONS(3480), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108280,13 +110682,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51378] = 3, - ACTIONS(3420), 1, + [52488] = 3, + ACTIONS(3462), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3418), 10, + ACTIONS(3460), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108297,13 +110699,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51398] = 3, - ACTIONS(3424), 1, + [52508] = 9, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3319), 1, + anon_sym_BANG, + ACTIONS(3321), 1, + anon_sym_COLON_COLON, + ACTIONS(3484), 1, + anon_sym_for, + STATE(1326), 1, + sym_type_arguments, + STATE(1360), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2456), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52540] = 5, + ACTIONS(700), 1, + aux_sym_string_literal_token1, + ACTIONS(3488), 1, + sym_crate, + STATE(1533), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3486), 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, + [52564] = 3, + ACTIONS(3492), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3422), 10, + ACTIONS(3490), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108314,13 +110758,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51418] = 3, - ACTIONS(3428), 1, + [52584] = 3, + ACTIONS(3496), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3426), 10, + ACTIONS(3494), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108331,13 +110775,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51438] = 3, - ACTIONS(3432), 1, + [52604] = 3, + ACTIONS(3500), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3430), 10, + ACTIONS(3498), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108348,32 +110792,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51458] = 5, - ACTIONS(718), 1, - aux_sym_string_literal_token1, - ACTIONS(3436), 1, - sym_crate, - STATE(1507), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3434), 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, - [51482] = 3, - ACTIONS(3346), 1, + [52624] = 3, + ACTIONS(3504), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3344), 10, + ACTIONS(3502), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108384,13 +110809,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51502] = 3, - ACTIONS(3440), 1, + [52644] = 3, + ACTIONS(3307), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3438), 10, + ACTIONS(3301), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108401,13 +110826,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51522] = 3, - ACTIONS(3444), 1, + [52664] = 3, + ACTIONS(3508), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3442), 10, + ACTIONS(3506), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108418,13 +110843,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51542] = 3, - ACTIONS(3448), 1, + [52684] = 3, + ACTIONS(3512), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 10, + ACTIONS(3510), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108435,13 +110860,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51562] = 3, - ACTIONS(3452), 1, + [52704] = 3, + ACTIONS(3516), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3450), 10, + ACTIONS(3514), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108452,13 +110877,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51582] = 3, - ACTIONS(3456), 1, + [52724] = 3, + ACTIONS(3445), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3454), 10, + ACTIONS(3443), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108469,13 +110894,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51602] = 3, - ACTIONS(3460), 1, + [52744] = 5, + ACTIONS(700), 1, + aux_sym_string_literal_token1, + ACTIONS(3518), 1, + sym_crate, + STATE(1533), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3486), 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, + [52768] = 3, + ACTIONS(3522), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3458), 10, + ACTIONS(3520), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108486,13 +110930,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51622] = 3, - ACTIONS(3464), 1, + [52788] = 3, + ACTIONS(3526), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 10, + ACTIONS(3524), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108503,13 +110947,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51642] = 3, - ACTIONS(3468), 1, + [52808] = 3, + ACTIONS(3530), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3466), 10, + ACTIONS(3528), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108520,13 +110964,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51662] = 3, - ACTIONS(3472), 1, + [52828] = 9, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3319), 1, + anon_sym_BANG, + ACTIONS(3321), 1, + anon_sym_COLON_COLON, + ACTIONS(3532), 1, + anon_sym_for, + STATE(1326), 1, + sym_type_arguments, + STATE(1360), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2456), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52860] = 3, + ACTIONS(3536), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3470), 10, + ACTIONS(3534), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108537,13 +111004,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51682] = 3, - ACTIONS(3352), 1, + [52880] = 5, + ACTIONS(700), 1, + aux_sym_string_literal_token1, + ACTIONS(3538), 1, + sym_crate, + STATE(1533), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3486), 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, + [52904] = 3, + ACTIONS(3542), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3350), 10, + ACTIONS(3540), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108554,13 +111040,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51702] = 3, - ACTIONS(3476), 1, + [52924] = 9, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3319), 1, + anon_sym_BANG, + ACTIONS(3321), 1, + anon_sym_COLON_COLON, + ACTIONS(3544), 1, + anon_sym_for, + STATE(1326), 1, + sym_type_arguments, + STATE(1360), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2456), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52956] = 3, + ACTIONS(3548), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 10, + ACTIONS(3546), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108571,33 +111080,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51722] = 6, - ACTIONS(3380), 1, + [52976] = 6, + ACTIONS(3550), 1, anon_sym_COLON, - ACTIONS(3382), 1, + ACTIONS(3552), 1, anon_sym_BANG, - ACTIONS(3478), 1, + ACTIONS(3554), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, + ACTIONS(3422), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2388), 6, + ACTIONS(2524), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51748] = 3, - ACTIONS(3482), 1, + [53002] = 3, + ACTIONS(3558), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3480), 10, + ACTIONS(3556), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108608,13 +111117,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51768] = 3, - ACTIONS(3486), 1, + [53022] = 3, + ACTIONS(3562), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3484), 10, + ACTIONS(3560), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108625,51 +111134,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51788] = 5, - ACTIONS(718), 1, - aux_sym_string_literal_token1, - ACTIONS(3488), 1, - sym_crate, - STATE(1507), 1, - sym_string_literal, + [53042] = 3, + ACTIONS(3566), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 8, + ACTIONS(3564), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51812] = 5, - ACTIONS(718), 1, - aux_sym_string_literal_token1, - ACTIONS(3490), 1, - sym_crate, - STATE(1507), 1, - sym_string_literal, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [53062] = 6, + ACTIONS(3550), 1, + anon_sym_COLON, + ACTIONS(3552), 1, + anon_sym_BANG, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3422), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2524), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51836] = 3, - ACTIONS(3494), 1, + [53088] = 3, + ACTIONS(3572), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3492), 10, + ACTIONS(3570), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108680,13 +111188,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51856] = 3, - ACTIONS(3498), 1, + [53108] = 3, + ACTIONS(3576), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3496), 10, + ACTIONS(3574), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108697,17 +111205,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51876] = 5, - ACTIONS(718), 1, + [53128] = 5, + ACTIONS(700), 1, aux_sym_string_literal_token1, - ACTIONS(3500), 1, + ACTIONS(3578), 1, sym_crate, - STATE(1507), 1, + STATE(1533), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 8, + ACTIONS(3486), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -108716,13 +111224,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51900] = 3, - ACTIONS(3504), 1, + [53152] = 9, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3319), 1, + anon_sym_BANG, + ACTIONS(3321), 1, + anon_sym_COLON_COLON, + ACTIONS(3580), 1, + anon_sym_for, + STATE(1326), 1, + sym_type_arguments, + STATE(1360), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2456), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53184] = 3, + ACTIONS(3584), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3502), 10, + ACTIONS(3582), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -108733,2379 +111264,2464 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51920] = 9, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, + [53204] = 9, + ACTIONS(3313), 1, anon_sym_LT2, - ACTIONS(3506), 1, - anon_sym_EQ, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2360), 3, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - [51951] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3510), 1, - anon_sym_RBRACE, - ACTIONS(3512), 1, - anon_sym_COMMA, - ACTIONS(3514), 1, - sym_crate, - STATE(2025), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1494), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [51984] = 9, - ACTIONS(3205), 1, + ACTIONS(3317), 1, anon_sym_LPAREN, - ACTIONS(3207), 1, + ACTIONS(3319), 1, anon_sym_BANG, - ACTIONS(3209), 1, + ACTIONS(3321), 1, anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3516), 1, + ACTIONS(3586), 1, anon_sym_for, - STATE(1285), 1, + STATE(1326), 1, sym_type_arguments, - STATE(1307), 1, + STATE(1360), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, + ACTIONS(2456), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52015] = 9, - ACTIONS(3205), 1, + [53236] = 9, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, anon_sym_LPAREN, - ACTIONS(3207), 1, + ACTIONS(3319), 1, anon_sym_BANG, - ACTIONS(3209), 1, + ACTIONS(3321), 1, anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3518), 1, + ACTIONS(3588), 1, anon_sym_for, - STATE(1285), 1, + STATE(1326), 1, sym_type_arguments, - STATE(1307), 1, + STATE(1360), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, + ACTIONS(2456), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52046] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3520), 1, - anon_sym_RBRACE, - ACTIONS(3522), 1, - anon_sym_COMMA, - STATE(1844), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + [53268] = 3, + ACTIONS(592), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1492), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52079] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, - sym_identifier, - ACTIONS(3526), 1, + ACTIONS(590), 10, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(3528), 1, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - STATE(2014), 1, - sym_enum_variant, - STATE(2459), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1486), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52112] = 6, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - STATE(1939), 1, - sym__literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3530), 2, - anon_sym_true, - anon_sym_false, - STATE(965), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [52137] = 9, - ACTIONS(3205), 1, + anon_sym_in, + anon_sym_PIPE, + [53288] = 9, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, anon_sym_LPAREN, - ACTIONS(3207), 1, + ACTIONS(3319), 1, anon_sym_BANG, - ACTIONS(3209), 1, + ACTIONS(3321), 1, anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3532), 1, + ACTIONS(3590), 1, anon_sym_for, - STATE(1285), 1, + STATE(1326), 1, sym_type_arguments, - STATE(1307), 1, + STATE(1360), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, + ACTIONS(2456), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52168] = 6, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - STATE(1941), 1, - sym__literal, + [53320] = 3, + ACTIONS(3594), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, - anon_sym_true, - anon_sym_false, - STATE(965), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [52193] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3265), 1, - anon_sym_trait, - ACTIONS(3534), 1, - anon_sym_impl, - STATE(45), 1, - sym_block, + ACTIONS(3592), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [53340] = 3, + ACTIONS(3598), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52218] = 9, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3536), 1, - anon_sym_for, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, + ACTIONS(3596), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [53360] = 3, + ACTIONS(3602), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52249] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3538), 1, - anon_sym_LBRACE, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + ACTIONS(3600), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [53380] = 3, + ACTIONS(3606), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3604), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [53400] = 3, + ACTIONS(3610), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 5, + ACTIONS(3608), 10, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - [52276] = 9, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3540), 1, - anon_sym_for, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, + anon_sym_in, + anon_sym_PIPE, + [53420] = 3, + ACTIONS(3614), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52307] = 9, - ACTIONS(3205), 1, + ACTIONS(3612), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [53440] = 9, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, anon_sym_LPAREN, - ACTIONS(3207), 1, + ACTIONS(3319), 1, anon_sym_BANG, - ACTIONS(3209), 1, + ACTIONS(3321), 1, anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3542), 1, + ACTIONS(3616), 1, anon_sym_for, - STATE(1285), 1, + STATE(1326), 1, sym_type_arguments, - STATE(1307), 1, + STATE(1360), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, + ACTIONS(2456), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52338] = 9, - ACTIONS(3205), 1, + [53472] = 9, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, anon_sym_LPAREN, - ACTIONS(3207), 1, + ACTIONS(3319), 1, anon_sym_BANG, - ACTIONS(3209), 1, + ACTIONS(3321), 1, anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3544), 1, - anon_sym_for, - STATE(1285), 1, + ACTIONS(3618), 1, + anon_sym_EQ, + STATE(1326), 1, sym_type_arguments, - STATE(1307), 1, + STATE(1360), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, - anon_sym_LBRACE, + ACTIONS(2456), 3, anon_sym_PLUS, - anon_sym_where, - [52369] = 5, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3478), 1, - anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_GT, + [53503] = 6, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + STATE(1911), 1, + sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52392] = 10, + ACTIONS(3620), 2, + anon_sym_true, + anon_sym_false, + STATE(1079), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [53528] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(3546), 1, + ACTIONS(3624), 1, anon_sym_RBRACE, - ACTIONS(3548), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - STATE(1987), 1, + ACTIONS(3628), 1, + sym_crate, + STATE(1847), 1, sym_enum_variant, - STATE(2459), 1, + STATE(2348), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1503), 2, + STATE(1543), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52425] = 5, - ACTIONS(3382), 1, + [53561] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2223), 1, + anon_sym_POUND, + ACTIONS(3628), 1, + sym_crate, + ACTIONS(3630), 1, + sym_identifier, + ACTIONS(3632), 1, + anon_sym_RBRACE, + ACTIONS(3634), 1, + anon_sym_COMMA, + STATE(2060), 1, + sym_field_declaration, + STATE(2338), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1545), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53594] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2223), 1, + anon_sym_POUND, + ACTIONS(3628), 1, + sym_crate, + ACTIONS(3630), 1, + sym_identifier, + ACTIONS(3636), 1, + anon_sym_RBRACE, + ACTIONS(3638), 1, + anon_sym_COMMA, + STATE(1973), 1, + sym_field_declaration, + STATE(2338), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1523), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53627] = 5, + ACTIONS(3552), 1, anon_sym_BANG, - ACTIONS(3384), 1, + ACTIONS(3554), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, + ACTIONS(3422), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2388), 6, + ACTIONS(2524), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52448] = 5, - ACTIONS(3382), 1, + [53650] = 5, + ACTIONS(3552), 1, anon_sym_BANG, - ACTIONS(3550), 1, + ACTIONS(3568), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, + ACTIONS(3422), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2388), 6, + ACTIONS(2524), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52471] = 8, - ACTIONS(2127), 1, - anon_sym_POUND, + [53673] = 5, ACTIONS(3552), 1, - sym_identifier, - ACTIONS(3554), 1, - anon_sym_RBRACE, - ACTIONS(3556), 1, - anon_sym_COMMA, - ACTIONS(3558), 1, - anon_sym_DOT_DOT, + anon_sym_BANG, + ACTIONS(3640), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1738), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1905), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52500] = 9, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, + ACTIONS(3422), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2524), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53696] = 7, + ACTIONS(3313), 1, anon_sym_LT2, - ACTIONS(3560), 1, - anon_sym_for, - STATE(1285), 1, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3642), 1, + anon_sym_LBRACE, + STATE(1337), 1, sym_type_arguments, - STATE(1307), 1, + STATE(1357), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52531] = 5, - ACTIONS(3562), 1, + ACTIONS(2484), 5, anon_sym_SEMI, - ACTIONS(3564), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [53723] = 6, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(465), 1, - sym_declaration_list, + ACTIONS(3361), 1, + anon_sym_trait, + ACTIONS(3644), 1, + anon_sym_impl, + STATE(58), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, + ACTIONS(2524), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52553] = 9, + [53748] = 8, + ACTIONS(2223), 1, + anon_sym_POUND, + ACTIONS(3646), 1, + sym_identifier, + ACTIONS(3648), 1, + anon_sym_RBRACE, + ACTIONS(3650), 1, + anon_sym_COMMA, + ACTIONS(3652), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1813), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1896), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53777] = 6, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + STATE(1910), 1, + sym__literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3620), 2, + anon_sym_true, + anon_sym_false, + STATE(1079), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [53802] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3508), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(3514), 1, + ACTIONS(3628), 1, sym_crate, - ACTIONS(3566), 1, + ACTIONS(3654), 1, anon_sym_RBRACE, - STATE(2085), 1, - sym_field_declaration, - STATE(2318), 1, + ACTIONS(3656), 1, + anon_sym_COMMA, + STATE(2032), 1, + sym_enum_variant, + STATE(2348), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, + STATE(1555), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52583] = 9, - ACTIONS(2123), 1, + [53835] = 9, + ACTIONS(2219), 1, anon_sym_SQUOTE, - ACTIONS(3568), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3570), 1, + ACTIONS(3660), 1, anon_sym_const, - ACTIONS(3572), 1, + ACTIONS(3662), 1, anon_sym_GT, - ACTIONS(3574), 1, + ACTIONS(3664), 1, sym_metavariable, - STATE(1729), 1, + STATE(1828), 1, sym_lifetime, - STATE(1883), 1, + STATE(1864), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, + STATE(2227), 2, sym_const_parameter, sym_optional_type_parameter, - [52613] = 5, - ACTIONS(3576), 1, + [53865] = 10, + ACTIONS(3666), 1, anon_sym_SEMI, - ACTIONS(3578), 1, + ACTIONS(3668), 1, + anon_sym_LPAREN, + ACTIONS(3670), 1, anon_sym_LBRACE, - STATE(804), 1, - sym_declaration_list, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3674), 1, + anon_sym_LT, + STATE(903), 1, + sym_field_declaration_list, + STATE(1580), 1, + sym_type_parameters, + STATE(2069), 1, + sym_ordered_field_declaration_list, + STATE(2117), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52635] = 7, - ACTIONS(2127), 1, + [53897] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3552), 1, + ACTIONS(3628), 1, + sym_crate, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3558), 1, - anon_sym_DOT_DOT, - ACTIONS(3580), 1, + ACTIONS(3676), 1, anon_sym_RBRACE, + STATE(2163), 1, + sym_field_declaration, + STATE(2338), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1738), 2, + STATE(1518), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2177), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52661] = 10, - ACTIONS(3582), 1, - anon_sym_SEMI, - ACTIONS(3584), 1, + [53927] = 10, + ACTIONS(3668), 1, anon_sym_LPAREN, - ACTIONS(3586), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3590), 1, + ACTIONS(3674), 1, anon_sym_LT, - STATE(371), 1, + ACTIONS(3678), 1, + anon_sym_SEMI, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(339), 1, sym_field_declaration_list, - STATE(1521), 1, + STATE(1573), 1, sym_type_parameters, - STATE(1847), 1, + STATE(1900), 1, sym_ordered_field_declaration_list, - STATE(2190), 1, + STATE(2253), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52693] = 10, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3592), 1, - anon_sym_SEMI, - ACTIONS(3594), 1, - anon_sym_LBRACE, - STATE(959), 1, - sym_field_declaration_list, - STATE(1541), 1, - sym_type_parameters, - STATE(2034), 1, - sym_ordered_field_declaration_list, - STATE(2045), 1, - sym_where_clause, + [53959] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2223), 1, + anon_sym_POUND, + ACTIONS(3628), 1, + sym_crate, + ACTIONS(3630), 1, + sym_identifier, + ACTIONS(3682), 1, + anon_sym_RBRACE, + STATE(2163), 1, + sym_field_declaration, + STATE(2338), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52725] = 5, + STATE(1518), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53989] = 5, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3596), 1, + ACTIONS(3684), 1, anon_sym_move, - STATE(61), 1, + STATE(50), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, + ACTIONS(2524), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52747] = 9, - ACTIONS(2123), 1, + [54011] = 9, + ACTIONS(2219), 1, anon_sym_SQUOTE, - ACTIONS(3568), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3570), 1, + ACTIONS(3660), 1, anon_sym_const, - ACTIONS(3574), 1, + ACTIONS(3664), 1, sym_metavariable, - ACTIONS(3598), 1, + ACTIONS(3686), 1, anon_sym_GT, - STATE(1729), 1, + STATE(1828), 1, sym_lifetime, - STATE(1883), 1, + STATE(1864), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, + STATE(2227), 2, sym_const_parameter, sym_optional_type_parameter, - [52777] = 10, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3586), 1, + [54041] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3600), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_field_declaration_list, - STATE(1542), 1, - sym_type_parameters, - STATE(1833), 1, - sym_ordered_field_declaration_list, - STATE(2129), 1, - sym_where_clause, + ACTIONS(3688), 1, + sym_identifier, + STATE(69), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52809] = 9, - ACTIONS(2123), 1, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54063] = 9, + ACTIONS(2219), 1, anon_sym_SQUOTE, - ACTIONS(3568), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3570), 1, + ACTIONS(3660), 1, anon_sym_const, - ACTIONS(3574), 1, + ACTIONS(3664), 1, sym_metavariable, - ACTIONS(3602), 1, + ACTIONS(3692), 1, anon_sym_GT, - STATE(1729), 1, + STATE(1828), 1, sym_lifetime, - STATE(1883), 1, + STATE(1864), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, + STATE(2227), 2, sym_const_parameter, sym_optional_type_parameter, - [52839] = 5, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3604), 1, - anon_sym_SEMI, - STATE(283), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52861] = 7, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3552), 1, - sym_identifier, - ACTIONS(3558), 1, - anon_sym_DOT_DOT, - ACTIONS(3606), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1738), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2177), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52887] = 9, + [54093] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(3608), 1, + ACTIONS(3628), 1, + sym_crate, + ACTIONS(3694), 1, anon_sym_RBRACE, - STATE(2112), 1, + STATE(2180), 1, sym_enum_variant, - STATE(2459), 1, + STATE(2348), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1476), 2, + STATE(1532), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52917] = 9, - ACTIONS(2123), 1, + [54123] = 9, + ACTIONS(2219), 1, anon_sym_SQUOTE, - ACTIONS(3568), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3570), 1, + ACTIONS(3660), 1, anon_sym_const, - ACTIONS(3574), 1, + ACTIONS(3664), 1, sym_metavariable, - ACTIONS(3610), 1, + ACTIONS(3696), 1, anon_sym_GT, - STATE(1730), 1, + STATE(1828), 1, sym_lifetime, - STATE(1883), 1, + STATE(1864), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, + STATE(2227), 2, sym_const_parameter, sym_optional_type_parameter, - [52947] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, + [54153] = 9, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3612), 1, - anon_sym_RBRACE, - STATE(2085), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + ACTIONS(3660), 1, + anon_sym_const, + ACTIONS(3664), 1, + sym_metavariable, + ACTIONS(3698), 1, + anon_sym_GT, + STATE(1828), 1, + sym_lifetime, + STATE(1864), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52977] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, + STATE(2227), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54183] = 5, + ACTIONS(3700), 1, + anon_sym_SEMI, + ACTIONS(3702), 1, + anon_sym_LBRACE, + STATE(466), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2524), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54205] = 9, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3614), 1, - anon_sym_RBRACE, - STATE(2085), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + ACTIONS(3660), 1, + anon_sym_const, + ACTIONS(3664), 1, + sym_metavariable, + ACTIONS(3704), 1, + anon_sym_GT, + STATE(1828), 1, + sym_lifetime, + STATE(1864), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53007] = 9, + STATE(2227), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54235] = 7, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3706), 1, + anon_sym_for, + STATE(1337), 1, + sym_type_arguments, + STATE(1357), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2484), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54261] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3514), 1, + ACTIONS(3628), 1, sym_crate, - ACTIONS(3524), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3616), 1, + ACTIONS(3708), 1, anon_sym_RBRACE, - STATE(2112), 1, - sym_enum_variant, - STATE(2459), 1, + STATE(2163), 1, + sym_field_declaration, + STATE(2338), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1476), 2, + STATE(1518), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53037] = 7, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3215), 1, + [54291] = 7, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, anon_sym_LPAREN, - ACTIONS(3219), 1, - anon_sym_COLON, - ACTIONS(3618), 1, - anon_sym_COLON_COLON, + ACTIONS(3710), 1, + anon_sym_for, + STATE(1337), 1, + sym_type_arguments, + STATE(1357), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [53063] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2484), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54317] = 7, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, + ACTIONS(3646), 1, sym_identifier, - ACTIONS(3620), 1, + ACTIONS(3652), 1, + anon_sym_DOT_DOT, + ACTIONS(3712), 1, anon_sym_RBRACE, - STATE(2112), 1, - sym_enum_variant, - STATE(2459), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1476), 2, + STATE(1813), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53093] = 9, + STATE(2200), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54343] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, + ACTIONS(3628), 1, sym_crate, - ACTIONS(3622), 1, + ACTIONS(3630), 1, + sym_identifier, + ACTIONS(3714), 1, anon_sym_RBRACE, - STATE(2085), 1, + STATE(2163), 1, sym_field_declaration, - STATE(2318), 1, + STATE(2338), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53123] = 9, + STATE(1518), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54373] = 7, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3716), 1, + anon_sym_for, + STATE(1337), 1, + sym_type_arguments, + STATE(1357), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2484), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54399] = 7, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3718), 1, + anon_sym_for, + STATE(1337), 1, + sym_type_arguments, + STATE(1357), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2484), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54425] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3508), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(3514), 1, + ACTIONS(3628), 1, sym_crate, - ACTIONS(3624), 1, + ACTIONS(3720), 1, anon_sym_RBRACE, - STATE(2085), 1, - sym_field_declaration, - STATE(2318), 1, + STATE(2180), 1, + sym_enum_variant, + STATE(2348), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, + STATE(1532), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53153] = 10, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3594), 1, - anon_sym_LBRACE, - ACTIONS(3626), 1, + [54455] = 5, + ACTIONS(3722), 1, anon_sym_SEMI, - STATE(837), 1, - sym_field_declaration_list, - STATE(1512), 1, - sym_type_parameters, - STATE(1953), 1, - sym_ordered_field_declaration_list, - STATE(2161), 1, - sym_where_clause, + ACTIONS(3724), 1, + anon_sym_LBRACE, + STATE(798), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53185] = 9, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3568), 1, - sym_identifier, - ACTIONS(3570), 1, + ACTIONS(2524), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3574), 1, - sym_metavariable, - ACTIONS(3628), 1, - anon_sym_GT, - STATE(1729), 1, - sym_lifetime, - STATE(1883), 1, - sym_constrained_type_parameter, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54477] = 5, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(3726), 1, + anon_sym_SEMI, + STATE(367), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53215] = 9, + ACTIONS(2524), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54499] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(3628), 1, + sym_crate, + ACTIONS(3728), 1, anon_sym_RBRACE, - STATE(2112), 1, + STATE(2180), 1, sym_enum_variant, - STATE(2459), 1, + STATE(2348), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1476), 2, + STATE(1532), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53245] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3632), 1, - anon_sym_RBRACE, - STATE(2085), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + [54529] = 7, + ACTIONS(3303), 1, + anon_sym_LPAREN, + ACTIONS(3307), 1, + anon_sym_COLON, + ACTIONS(3319), 1, + anon_sym_BANG, + ACTIONS(3730), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53275] = 9, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3301), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [54555] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3514), 1, + ACTIONS(3628), 1, sym_crate, - ACTIONS(3524), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3732), 1, anon_sym_RBRACE, - STATE(2112), 1, - sym_enum_variant, - STATE(2459), 1, + STATE(2163), 1, + sym_field_declaration, + STATE(2338), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1476), 2, + STATE(1518), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53305] = 9, - ACTIONS(2123), 1, + [54585] = 9, + ACTIONS(2219), 1, anon_sym_SQUOTE, - ACTIONS(3568), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3570), 1, + ACTIONS(3660), 1, anon_sym_const, - ACTIONS(3574), 1, + ACTIONS(3664), 1, sym_metavariable, - ACTIONS(3636), 1, + ACTIONS(3734), 1, anon_sym_GT, - STATE(1729), 1, + STATE(1828), 1, sym_lifetime, - STATE(1883), 1, + STATE(1864), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, + STATE(2227), 2, sym_const_parameter, sym_optional_type_parameter, - [53335] = 9, - ACTIONS(2123), 1, + [54615] = 9, + ACTIONS(2219), 1, anon_sym_SQUOTE, - ACTIONS(3568), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3570), 1, + ACTIONS(3660), 1, anon_sym_const, - ACTIONS(3574), 1, + ACTIONS(3664), 1, sym_metavariable, - ACTIONS(3638), 1, + ACTIONS(3736), 1, anon_sym_GT, - STATE(1729), 1, + STATE(1828), 1, sym_lifetime, - STATE(1883), 1, + STATE(1864), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, + STATE(2227), 2, sym_const_parameter, sym_optional_type_parameter, - [53365] = 9, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3568), 1, + [54645] = 7, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3738), 1, + anon_sym_for, + STATE(1337), 1, + sym_type_arguments, + STATE(1357), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2484), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54671] = 7, + ACTIONS(2223), 1, + anon_sym_POUND, + ACTIONS(3646), 1, sym_identifier, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3574), 1, - sym_metavariable, - ACTIONS(3640), 1, - anon_sym_GT, - STATE(1729), 1, - sym_lifetime, - STATE(1883), 1, - sym_constrained_type_parameter, + ACTIONS(3652), 1, + anon_sym_DOT_DOT, + ACTIONS(3740), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53395] = 5, - ACTIONS(3578), 1, + STATE(1813), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2200), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54697] = 10, + ACTIONS(3668), 1, + anon_sym_LPAREN, + ACTIONS(3670), 1, anon_sym_LBRACE, - ACTIONS(3642), 1, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3674), 1, + anon_sym_LT, + ACTIONS(3742), 1, + anon_sym_SEMI, + STATE(926), 1, + sym_field_declaration_list, + STATE(1568), 1, + sym_type_parameters, + STATE(1998), 1, + sym_ordered_field_declaration_list, + STATE(2172), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54729] = 5, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(3744), 1, anon_sym_SEMI, - STATE(871), 1, + STATE(965), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, + ACTIONS(2524), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53417] = 9, + [54751] = 10, + ACTIONS(3668), 1, + anon_sym_LPAREN, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3674), 1, + anon_sym_LT, + ACTIONS(3680), 1, + anon_sym_LBRACE, + ACTIONS(3746), 1, + anon_sym_SEMI, + STATE(372), 1, + sym_field_declaration_list, + STATE(1574), 1, + sym_type_parameters, + STATE(2030), 1, + sym_ordered_field_declaration_list, + STATE(2146), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54783] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3514), 1, + ACTIONS(3628), 1, sym_crate, - ACTIONS(3524), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3748), 1, anon_sym_RBRACE, - STATE(2112), 1, - sym_enum_variant, - STATE(2459), 1, + STATE(2163), 1, + sym_field_declaration, + STATE(2338), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1476), 2, + STATE(1518), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53447] = 9, - ACTIONS(2123), 1, + [54813] = 9, + ACTIONS(2219), 1, anon_sym_SQUOTE, - ACTIONS(3568), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3570), 1, + ACTIONS(3660), 1, anon_sym_const, - ACTIONS(3574), 1, + ACTIONS(3664), 1, sym_metavariable, - ACTIONS(3646), 1, + ACTIONS(3750), 1, anon_sym_GT, - STATE(1729), 1, + STATE(1739), 1, sym_lifetime, - STATE(1883), 1, + STATE(1864), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, + STATE(2227), 2, sym_const_parameter, sym_optional_type_parameter, - [53477] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3648), 1, + [54843] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2223), 1, + anon_sym_POUND, + ACTIONS(3622), 1, sym_identifier, - STATE(47), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53499] = 6, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - ACTIONS(3652), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2394), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3314), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [53522] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3655), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53547] = 5, - ACTIONS(3660), 1, - anon_sym_fn, - ACTIONS(3662), 1, - anon_sym_extern, + ACTIONS(3628), 1, + sym_crate, + ACTIONS(3752), 1, + anon_sym_RBRACE, + STATE(2180), 1, + sym_enum_variant, + STATE(2348), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1464), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3657), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [53568] = 6, - ACTIONS(3314), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_COLON, - ACTIONS(3478), 1, - anon_sym_COLON_COLON, + STATE(1532), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54873] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2223), 1, + anon_sym_POUND, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3628), 1, + sym_crate, + ACTIONS(3754), 1, + anon_sym_RBRACE, + STATE(2180), 1, + sym_enum_variant, + STATE(2348), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2394), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [53591] = 8, - ACTIONS(802), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, + STATE(1532), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54903] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2223), 1, + anon_sym_POUND, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(3667), 1, + ACTIONS(3628), 1, + sym_crate, + ACTIONS(3756), 1, anon_sym_RBRACE, - ACTIONS(3669), 1, - anon_sym_COMMA, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, + STATE(2180), 1, + sym_enum_variant, + STATE(2348), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1930), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [53618] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + STATE(1532), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54933] = 7, + ACTIONS(3313), 1, anon_sym_LT2, - ACTIONS(3675), 1, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3758), 1, anon_sym_for, - STATE(1276), 1, + STATE(1337), 1, sym_type_arguments, - STATE(1300), 1, + STATE(1357), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, + ACTIONS(2484), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53643] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + [54959] = 7, + ACTIONS(3313), 1, anon_sym_LT2, - ACTIONS(3677), 1, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_for, - STATE(1276), 1, + STATE(1337), 1, sym_type_arguments, - STATE(1300), 1, + STATE(1357), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, + ACTIONS(2484), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53668] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + [54985] = 7, + ACTIONS(3313), 1, anon_sym_LT2, - ACTIONS(3679), 1, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3762), 1, anon_sym_for, - STATE(1276), 1, + STATE(1337), 1, sym_type_arguments, - STATE(1300), 1, + STATE(1357), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, + ACTIONS(2484), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53693] = 9, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3683), 1, - anon_sym_LT, - STATE(891), 1, - sym_declaration_list, - STATE(1592), 1, - sym_type_parameters, - STATE(1766), 1, - sym_trait_bounds, - STATE(2109), 1, - sym_where_clause, + [55011] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2223), 1, + anon_sym_POUND, + ACTIONS(3628), 1, + sym_crate, + ACTIONS(3630), 1, + sym_identifier, + STATE(2114), 1, + sym_field_declaration, + STATE(2338), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53722] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3685), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + STATE(1090), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [55038] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2223), 1, + anon_sym_POUND, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3628), 1, + sym_crate, + STATE(2180), 1, + sym_enum_variant, + STATE(2348), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53747] = 6, - ACTIONS(3215), 1, - anon_sym_LPAREN, - ACTIONS(3290), 1, + STATE(1532), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [55065] = 4, + ACTIONS(2554), 1, anon_sym_COLON_COLON, - ACTIONS(3368), 1, + ACTIONS(3764), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [53770] = 4, - ACTIONS(3689), 1, - anon_sym_PLUS, - STATE(1490), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(2524), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55084] = 6, + ACTIONS(3640), 1, + anon_sym_COLON_COLON, + ACTIONS(3766), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3687), 6, + ACTIONS(2484), 2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(3416), 2, anon_sym_COMMA, - anon_sym_GT, - [53789] = 8, - ACTIONS(2123), 1, + anon_sym_PIPE, + ACTIONS(3422), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55107] = 8, + ACTIONS(2219), 1, anon_sym_SQUOTE, - ACTIONS(3570), 1, + ACTIONS(3660), 1, anon_sym_const, - ACTIONS(3691), 1, + ACTIONS(3769), 1, sym_identifier, - ACTIONS(3693), 1, + ACTIONS(3771), 1, sym_metavariable, - STATE(1615), 1, + STATE(1714), 1, sym_lifetime, - STATE(1728), 1, + STATE(1743), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1830), 2, + STATE(2092), 2, sym_const_parameter, sym_optional_type_parameter, - [53816] = 6, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3215), 1, - anon_sym_LPAREN, - ACTIONS(3695), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [53839] = 8, + [55134] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3514), 1, + ACTIONS(3628), 1, sym_crate, - ACTIONS(3524), 1, + ACTIONS(3630), 1, sym_identifier, - STATE(2215), 1, - sym_enum_variant, - STATE(2459), 1, + STATE(1886), 1, + sym_field_declaration, + STATE(2338), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1077), 2, + STATE(1090), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53866] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3697), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + [55161] = 4, + ACTIONS(3775), 1, + anon_sym_PLUS, + STATE(1531), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, + ACTIONS(3773), 6, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_where, - [53891] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - STATE(2226), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1077), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53918] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - STATE(2085), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55180] = 4, + ACTIONS(3779), 1, + anon_sym_PLUS, + STATE(1525), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53945] = 7, - ACTIONS(2394), 1, + ACTIONS(3777), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55199] = 4, + ACTIONS(3782), 1, anon_sym_PLUS, - ACTIONS(3314), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_COLON, - ACTIONS(3384), 1, - anon_sym_COLON_COLON, + STATE(1531), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3652), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53970] = 9, - ACTIONS(3564), 1, + ACTIONS(3773), 6, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3683), 1, - anon_sym_LT, - STATE(337), 1, - sym_declaration_list, - STATE(1572), 1, - sym_type_parameters, - STATE(1701), 1, - sym_trait_bounds, - STATE(2149), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55218] = 4, + ACTIONS(3784), 1, + anon_sym_PLUS, + STATE(1531), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53999] = 4, - ACTIONS(718), 1, - aux_sym_string_literal_token1, - STATE(1507), 1, - sym_string_literal, + ACTIONS(3773), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55237] = 5, + ACTIONS(3789), 1, + anon_sym_fn, + ACTIONS(3791), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 6, + STATE(1528), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3786), 4, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [54018] = 4, - ACTIONS(3701), 1, - anon_sym_PLUS, - STATE(1473), 1, - aux_sym_trait_bounds_repeat1, + [55258] = 8, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(3660), 1, + anon_sym_const, + ACTIONS(3769), 1, + sym_identifier, + ACTIONS(3771), 1, + sym_metavariable, + STATE(1608), 1, + sym_lifetime, + STATE(1743), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3699), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54037] = 9, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3683), 1, - anon_sym_LT, - STATE(845), 1, - sym_declaration_list, - STATE(1569), 1, - sym_type_parameters, - STATE(1699), 1, - sym_trait_bounds, - STATE(2157), 1, - sym_where_clause, + sym_line_comment, + STATE(2092), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55285] = 8, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(3660), 1, + anon_sym_const, + ACTIONS(3794), 1, + sym_identifier, + ACTIONS(3796), 1, + sym_metavariable, + STATE(1698), 1, + sym_lifetime, + STATE(1774), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54066] = 4, - ACTIONS(3703), 1, + STATE(1985), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55312] = 4, + ACTIONS(3775), 1, anon_sym_PLUS, - STATE(1473), 1, + STATE(1525), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3699), 6, + ACTIONS(3798), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54085] = 8, + [55331] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(1850), 1, + ACTIONS(3628), 1, + sym_crate, + STATE(2127), 1, sym_enum_variant, - STATE(2459), 1, + STATE(2348), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1077), 2, + STATE(1090), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54112] = 4, - ACTIONS(3689), 1, - anon_sym_PLUS, - STATE(1473), 1, - aux_sym_trait_bounds_repeat1, + [55358] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3699), 6, + ACTIONS(3800), 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, + [55373] = 9, + ACTIONS(3672), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54131] = 9, - ACTIONS(3564), 1, + ACTIONS(3724), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3681), 1, + ACTIONS(3802), 1, anon_sym_COLON, - ACTIONS(3683), 1, + ACTIONS(3804), 1, anon_sym_LT, - STATE(255), 1, + STATE(928), 1, sym_declaration_list, - STATE(1578), 1, + STATE(1653), 1, sym_type_parameters, - STATE(1759), 1, + STATE(1769), 1, sym_trait_bounds, - STATE(2122), 1, + STATE(2171), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54160] = 8, - ACTIONS(3705), 1, - anon_sym_LPAREN, - ACTIONS(3710), 1, - anon_sym_LBRACE, - ACTIONS(3713), 1, - anon_sym_LBRACK, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2416), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3708), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [54187] = 4, - ACTIONS(3718), 1, - anon_sym_PLUS, - STATE(1490), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3716), 6, - anon_sym_SEMI, - anon_sym_LBRACE, + [55402] = 9, + ACTIONS(3672), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54206] = 5, - ACTIONS(3723), 1, - anon_sym_fn, - ACTIONS(3725), 1, - anon_sym_extern, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(377), 1, + sym_declaration_list, + STATE(1663), 1, + sym_type_parameters, + STATE(1766), 1, + sym_trait_bounds, + STATE(2156), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1464), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3721), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [54227] = 8, + [55431] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, + ACTIONS(3628), 1, sym_crate, - STATE(1923), 1, + ACTIONS(3630), 1, + sym_identifier, + STATE(2163), 1, sym_field_declaration, - STATE(2318), 1, + STATE(2338), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1077), 2, + STATE(1518), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54254] = 8, - ACTIONS(802), 1, + [55458] = 8, + ACTIONS(810), 1, anon_sym_DOT_DOT, - ACTIONS(3665), 1, + ACTIONS(3806), 1, sym_identifier, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, - ACTIONS(3727), 1, + ACTIONS(3808), 1, anon_sym_RBRACE, - ACTIONS(3729), 1, + ACTIONS(3810), 1, anon_sym_COMMA, + ACTIONS(3812), 1, + anon_sym_ref, + ACTIONS(3814), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1926), 2, + STATE(1987), 2, sym_field_pattern, sym_remaining_field_pattern, - [54281] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - STATE(1990), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1077), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54308] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3731), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54333] = 4, - ACTIONS(3298), 1, - anon_sym_COLON_COLON, - ACTIONS(3382), 1, - anon_sym_BANG, + [55485] = 4, + ACTIONS(3337), 1, + anon_sym_trait, + ACTIONS(3816), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, + ACTIONS(2524), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54352] = 4, - ACTIONS(874), 1, - anon_sym_LBRACE, - STATE(1374), 1, - sym_block, + [55504] = 4, + ACTIONS(3470), 1, + anon_sym_COLON_COLON, + ACTIONS(3818), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, + ACTIONS(2524), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54371] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3733), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54396] = 8, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3568), 1, + [55523] = 6, + ACTIONS(2223), 1, + anon_sym_POUND, + ACTIONS(3646), 1, sym_identifier, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3574), 1, - sym_metavariable, - STATE(1729), 1, - sym_lifetime, - STATE(1883), 1, - sym_constrained_type_parameter, + ACTIONS(3652), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54423] = 4, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, - ACTIONS(3735), 1, - anon_sym_BANG, + STATE(1813), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2200), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [55546] = 9, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(762), 1, + sym_declaration_list, + STATE(1627), 1, + sym_type_parameters, + STATE(1765), 1, + sym_trait_bounds, + STATE(2154), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54442] = 4, - ACTIONS(3241), 1, - anon_sym_trait, - ACTIONS(3737), 1, - anon_sym_impl, + [55575] = 9, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(916), 1, + sym_declaration_list, + STATE(1690), 1, + sym_type_parameters, + STATE(1750), 1, + sym_trait_bounds, + STATE(2108), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54461] = 8, + [55604] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(2112), 1, + ACTIONS(3628), 1, + sym_crate, + STATE(1880), 1, sym_enum_variant, - STATE(2459), 1, + STATE(2348), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1476), 2, + STATE(1090), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54488] = 8, + [55631] = 9, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(387), 1, + sym_declaration_list, + STATE(1647), 1, + sym_type_parameters, + STATE(1755), 1, + sym_trait_bounds, + STATE(2265), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55660] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2127), 1, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3514), 1, + ACTIONS(3628), 1, sym_crate, - ACTIONS(3524), 1, + ACTIONS(3630), 1, sym_identifier, - STATE(2026), 1, - sym_enum_variant, - STATE(2459), 1, + STATE(2104), 1, + sym_field_declaration, + STATE(2338), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1077), 2, + STATE(1090), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54515] = 4, - ACTIONS(2478), 1, + [55687] = 4, + ACTIONS(3396), 1, anon_sym_COLON_COLON, - ACTIONS(3739), 1, + ACTIONS(3552), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, + ACTIONS(2524), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54534] = 9, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + [55706] = 6, + ACTIONS(3416), 1, + anon_sym_PIPE, + ACTIONS(3418), 1, + anon_sym_COLON, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3422), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2484), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [55729] = 6, + ACTIONS(3303), 1, + anon_sym_LPAREN, + ACTIONS(3319), 1, + anon_sym_BANG, + ACTIONS(3820), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3301), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [55752] = 9, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3681), 1, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, anon_sym_COLON, - ACTIONS(3683), 1, + ACTIONS(3804), 1, anon_sym_LT, - STATE(376), 1, + STATE(415), 1, sym_declaration_list, - STATE(1593), 1, + STATE(1678), 1, sym_type_parameters, - STATE(1711), 1, + STATE(1796), 1, sym_trait_bounds, - STATE(2191), 1, + STATE(2195), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54563] = 8, - ACTIONS(2123), 1, + [55781] = 8, + ACTIONS(2219), 1, anon_sym_SQUOTE, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3741), 1, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3743), 1, + ACTIONS(3660), 1, + anon_sym_const, + ACTIONS(3664), 1, sym_metavariable, - STATE(1644), 1, + STATE(1828), 1, sym_lifetime, - STATE(1713), 1, + STATE(1864), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1940), 2, + STATE(2227), 2, sym_const_parameter, sym_optional_type_parameter, - [54590] = 2, + [55808] = 5, + ACTIONS(3824), 1, + anon_sym_fn, + ACTIONS(3826), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3745), 8, - anon_sym_SEMI, + STATE(1528), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3822), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [55829] = 4, + ACTIONS(870), 1, anon_sym_LBRACE, + STATE(1454), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2524), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54605] = 9, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3683), 1, - anon_sym_LT, - STATE(945), 1, - sym_declaration_list, - STATE(1613), 1, - sym_type_parameters, - STATE(1739), 1, - sym_trait_bounds, - STATE(2041), 1, - sym_where_clause, + [55848] = 4, + ACTIONS(700), 1, + aux_sym_string_literal_token1, + STATE(1533), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54634] = 8, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3570), 1, + ACTIONS(3486), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3691), 1, - sym_identifier, - ACTIONS(3693), 1, - sym_metavariable, - STATE(1649), 1, - sym_lifetime, - STATE(1728), 1, - sym_constrained_type_parameter, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55867] = 7, + ACTIONS(2484), 1, + anon_sym_PLUS, + ACTIONS(3416), 1, + anon_sym_PIPE, + ACTIONS(3418), 1, + anon_sym_COLON, + ACTIONS(3554), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1830), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54661] = 6, - ACTIONS(2127), 1, + ACTIONS(3422), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3766), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55892] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2223), 1, anon_sym_POUND, - ACTIONS(3552), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(3558), 1, - anon_sym_DOT_DOT, + ACTIONS(3628), 1, + sym_crate, + STATE(2078), 1, + sym_enum_variant, + STATE(2348), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1738), 2, + STATE(1090), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2177), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [54684] = 6, - ACTIONS(3747), 1, + [55919] = 6, + ACTIONS(3303), 1, anon_sym_LPAREN, - ACTIONS(3751), 1, - anon_sym_EQ, - ACTIONS(3753), 1, + ACTIONS(3375), 1, anon_sym_COLON_COLON, - STATE(1819), 1, - sym_meta_arguments, + ACTIONS(3455), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3749), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3301), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [55942] = 8, + ACTIONS(810), 1, + anon_sym_DOT_DOT, + ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3812), 1, + anon_sym_ref, + ACTIONS(3814), 1, + sym_mutable_specifier, + ACTIONS(3828), 1, + anon_sym_RBRACE, + ACTIONS(3830), 1, anon_sym_COMMA, - [54706] = 8, - ACTIONS(3584), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1943), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55969] = 8, + ACTIONS(3832), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3594), 1, + ACTIONS(3837), 1, anon_sym_LBRACE, - ACTIONS(3755), 1, - anon_sym_SEMI, - STATE(936), 1, - sym_field_declaration_list, - STATE(2027), 1, - sym_ordered_field_declaration_list, - STATE(2060), 1, - sym_where_clause, + ACTIONS(3840), 1, + anon_sym_LBRACK, + STATE(1558), 1, + aux_sym_macro_definition_repeat1, + STATE(2369), 1, + sym_token_tree_pattern, + STATE(2460), 1, + sym_macro_rule, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54732] = 3, - ACTIONS(2478), 1, - anon_sym_COLON_COLON, + ACTIONS(3835), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [55996] = 7, + ACTIONS(810), 1, + anon_sym_DOT_DOT, + ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3812), 1, + anon_sym_ref, + ACTIONS(3814), 1, + sym_mutable_specifier, + ACTIONS(3843), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54748] = 8, - ACTIONS(3757), 1, + STATE(2170), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56020] = 8, + ACTIONS(3845), 1, anon_sym_LPAREN, - ACTIONS(3759), 1, - anon_sym_RPAREN, - ACTIONS(3761), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, - ACTIONS(3763), 1, + ACTIONS(3849), 1, + anon_sym_RBRACE, + ACTIONS(3851), 1, anon_sym_LBRACK, - STATE(1489), 1, + STATE(1558), 1, aux_sym_macro_definition_repeat1, - STATE(2169), 1, + STATE(2234), 1, sym_macro_rule, - STATE(2454), 1, + STATE(2369), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54774] = 8, - ACTIONS(3757), 1, + [56046] = 8, + ACTIONS(3845), 1, anon_sym_LPAREN, - ACTIONS(3761), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, - ACTIONS(3763), 1, + ACTIONS(3851), 1, anon_sym_LBRACK, - ACTIONS(3765), 1, + ACTIONS(3853), 1, + anon_sym_RBRACE, + STATE(1603), 1, + aux_sym_macro_definition_repeat1, + STATE(2255), 1, + sym_macro_rule, + STATE(2369), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56072] = 6, + ACTIONS(3855), 1, + anon_sym_LPAREN, + ACTIONS(3859), 1, + anon_sym_EQ, + ACTIONS(3861), 1, + anon_sym_COLON_COLON, + STATE(1953), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3857), 3, anon_sym_RPAREN, - STATE(1523), 1, + anon_sym_RBRACK, + anon_sym_COMMA, + [56094] = 8, + ACTIONS(3845), 1, + anon_sym_LPAREN, + ACTIONS(3847), 1, + anon_sym_LBRACE, + ACTIONS(3851), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, + anon_sym_RBRACE, + STATE(1577), 1, aux_sym_macro_definition_repeat1, - STATE(2202), 1, + STATE(2147), 1, sym_macro_rule, - STATE(2454), 1, + STATE(2369), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54800] = 7, - ACTIONS(802), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, - sym_identifier, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, - ACTIONS(3767), 1, + [56120] = 6, + ACTIONS(3668), 1, + anon_sym_LPAREN, + ACTIONS(3670), 1, + anon_sym_LBRACE, + ACTIONS(3867), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3865), 2, anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1951), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [56142] = 8, + ACTIONS(3845), 1, + anon_sym_LPAREN, + ACTIONS(3847), 1, + anon_sym_LBRACE, + ACTIONS(3851), 1, + anon_sym_LBRACK, + ACTIONS(3869), 1, + anon_sym_RPAREN, + STATE(1558), 1, + aux_sym_macro_definition_repeat1, + STATE(2225), 1, + sym_macro_rule, + STATE(2369), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2066), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54824] = 8, - ACTIONS(3757), 1, + [56168] = 6, + ACTIONS(3855), 1, + anon_sym_LPAREN, + ACTIONS(3859), 1, + anon_sym_EQ, + ACTIONS(3871), 1, + anon_sym_COLON_COLON, + STATE(1953), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3857), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [56190] = 7, + ACTIONS(3301), 1, + anon_sym_PIPE, + ACTIONS(3303), 1, + anon_sym_LPAREN, + ACTIONS(3307), 1, + anon_sym_COLON, + ACTIONS(3319), 1, + anon_sym_BANG, + ACTIONS(3873), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [56214] = 8, + ACTIONS(3668), 1, + anon_sym_LPAREN, + ACTIONS(3670), 1, + anon_sym_LBRACE, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3875), 1, + anon_sym_SEMI, + STATE(947), 1, + sym_field_declaration_list, + STATE(2061), 1, + sym_ordered_field_declaration_list, + STATE(2123), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56240] = 8, + ACTIONS(3845), 1, anon_sym_LPAREN, - ACTIONS(3761), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, - ACTIONS(3763), 1, + ACTIONS(3851), 1, anon_sym_LBRACK, - ACTIONS(3769), 1, + ACTIONS(3877), 1, anon_sym_RPAREN, - STATE(1519), 1, + STATE(1558), 1, aux_sym_macro_definition_repeat1, - STATE(2204), 1, + STATE(2226), 1, sym_macro_rule, - STATE(2454), 1, + STATE(2369), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54850] = 3, - ACTIONS(3771), 1, + [56266] = 3, + ACTIONS(3879), 1, anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, + ACTIONS(2524), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56282] = 6, + ACTIONS(3470), 1, + anon_sym_COLON_COLON, + ACTIONS(3855), 1, + anon_sym_LPAREN, + ACTIONS(3883), 1, + anon_sym_EQ, + STATE(1956), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3881), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [56304] = 3, + ACTIONS(3885), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3690), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54866] = 8, - ACTIONS(3757), 1, + [56320] = 8, + ACTIONS(3668), 1, anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3773), 1, - anon_sym_RPAREN, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2180), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54892] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3775), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3672), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54906] = 8, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3586), 1, + ACTIONS(3680), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3777), 1, + ACTIONS(3887), 1, anon_sym_SEMI, - STATE(276), 1, + STATE(403), 1, sym_field_declaration_list, - STATE(1840), 1, + STATE(1927), 1, sym_ordered_field_declaration_list, - STATE(2164), 1, + STATE(2198), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54932] = 7, - ACTIONS(802), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, - sym_identifier, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, - ACTIONS(3779), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2066), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54956] = 8, - ACTIONS(3757), 1, + [56346] = 8, + ACTIONS(3668), 1, anon_sym_LPAREN, - ACTIONS(3761), 1, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3680), 1, anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3781), 1, - anon_sym_RPAREN, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2179), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + ACTIONS(3889), 1, + anon_sym_SEMI, + STATE(468), 1, + sym_field_declaration_list, + STATE(2094), 1, + sym_ordered_field_declaration_list, + STATE(2272), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54982] = 3, - ACTIONS(3783), 1, + [56372] = 3, + ACTIONS(3891), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 6, + ACTIONS(3690), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54998] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3785), 1, - anon_sym_RBRACE, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2055), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55024] = 3, - ACTIONS(3298), 1, + [56388] = 3, + ACTIONS(3396), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, + ACTIONS(2524), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55040] = 8, - ACTIONS(3757), 1, + [56404] = 8, + ACTIONS(3845), 1, anon_sym_LPAREN, - ACTIONS(3761), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, - ACTIONS(3763), 1, + ACTIONS(3851), 1, anon_sym_LBRACK, - ACTIONS(3787), 1, + ACTIONS(3893), 1, anon_sym_RBRACE, - STATE(1533), 1, + STATE(1558), 1, aux_sym_macro_definition_repeat1, - STATE(2111), 1, + STATE(2131), 1, sym_macro_rule, - STATE(2454), 1, + STATE(2369), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55066] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - anon_sym_RBRACE, - STATE(1525), 1, - aux_sym_macro_definition_repeat1, - STATE(2121), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + [56430] = 3, + ACTIONS(3895), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55092] = 6, - ACTIONS(3584), 1, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56446] = 6, + ACTIONS(3668), 1, anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3670), 1, anon_sym_LBRACE, - ACTIONS(3793), 1, + ACTIONS(3899), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3791), 2, + ACTIONS(3897), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1984), 2, + STATE(1884), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [55114] = 8, - ACTIONS(3757), 1, + [56468] = 8, + ACTIONS(3668), 1, anon_sym_LPAREN, - ACTIONS(3761), 1, + ACTIONS(3670), 1, anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3795), 1, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3901), 1, + anon_sym_SEMI, + STATE(769), 1, + sym_field_declaration_list, + STATE(2022), 1, + sym_ordered_field_declaration_list, + STATE(2151), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56494] = 7, + ACTIONS(810), 1, + anon_sym_DOT_DOT, + ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3812), 1, + anon_sym_ref, + ACTIONS(3814), 1, + sym_mutable_specifier, + ACTIONS(3903), 1, anon_sym_RBRACE, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2172), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55140] = 3, - ACTIONS(3797), 1, + STATE(2170), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56518] = 6, + ACTIONS(3855), 1, + anon_sym_LPAREN, + ACTIONS(3859), 1, + anon_sym_EQ, + ACTIONS(3905), 1, + anon_sym_COLON_COLON, + STATE(1953), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3857), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [56540] = 3, + ACTIONS(3907), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 6, + ACTIONS(3690), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55156] = 7, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3213), 1, - anon_sym_PIPE, - ACTIONS(3215), 1, - anon_sym_LPAREN, - ACTIONS(3219), 1, - anon_sym_COLON, - ACTIONS(3799), 1, + [56556] = 3, + ACTIONS(2554), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [55180] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3801), 1, - anon_sym_RBRACE, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2057), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55206] = 2, + ACTIONS(2524), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56572] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 7, + ACTIONS(3909), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -111113,11 +113729,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55220] = 2, + [56586] = 3, + ACTIONS(3911), 1, + anon_sym_trait, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2524), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56602] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 7, + ACTIONS(3913), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -111125,41 +113754,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55234] = 8, - ACTIONS(3757), 1, + [56616] = 8, + ACTIONS(3845), 1, anon_sym_LPAREN, - ACTIONS(3761), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, - ACTIONS(3763), 1, + ACTIONS(3851), 1, anon_sym_LBRACK, - ACTIONS(3803), 1, - anon_sym_RBRACE, - STATE(1547), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + STATE(1565), 1, aux_sym_macro_definition_repeat1, - STATE(2050), 1, + STATE(2249), 1, sym_macro_rule, - STATE(2454), 1, + STATE(2369), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55260] = 2, + [56642] = 8, + ACTIONS(3845), 1, + anon_sym_LPAREN, + ACTIONS(3847), 1, + anon_sym_LBRACE, + ACTIONS(3851), 1, + anon_sym_LBRACK, + ACTIONS(3917), 1, + anon_sym_RPAREN, + STATE(1569), 1, + aux_sym_macro_definition_repeat1, + STATE(2252), 1, + sym_macro_rule, + STATE(2369), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55274] = 2, + [56668] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 7, + ACTIONS(3777), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -111167,11 +113802,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55288] = 2, + [56682] = 7, + ACTIONS(810), 1, + anon_sym_DOT_DOT, + ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3812), 1, + anon_sym_ref, + ACTIONS(3814), 1, + sym_mutable_specifier, + ACTIONS(3919), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2170), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56706] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 7, + ACTIONS(3777), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -111179,83 +113831,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55302] = 8, - ACTIONS(3757), 1, + [56720] = 8, + ACTIONS(3845), 1, anon_sym_LPAREN, - ACTIONS(3761), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, - ACTIONS(3763), 1, + ACTIONS(3851), 1, anon_sym_LBRACK, - ACTIONS(3805), 1, - anon_sym_RPAREN, - STATE(1489), 1, + ACTIONS(3921), 1, + anon_sym_RBRACE, + STATE(1558), 1, aux_sym_macro_definition_repeat1, - STATE(2178), 1, + STATE(2128), 1, sym_macro_rule, - STATE(2454), 1, + STATE(2369), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55328] = 8, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3594), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_SEMI, - STATE(895), 1, - sym_field_declaration_list, - STATE(1980), 1, - sym_ordered_field_declaration_list, - STATE(2106), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55354] = 8, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3586), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3809), 1, - anon_sym_SEMI, - STATE(334), 1, - sym_field_declaration_list, - STATE(1951), 1, - sym_ordered_field_declaration_list, - STATE(2158), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55380] = 8, - ACTIONS(3757), 1, + [56746] = 8, + ACTIONS(3845), 1, anon_sym_LPAREN, - ACTIONS(3761), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, - ACTIONS(3763), 1, + ACTIONS(3851), 1, anon_sym_LBRACK, - ACTIONS(3811), 1, + ACTIONS(3923), 1, anon_sym_RPAREN, - STATE(1540), 1, + STATE(1598), 1, aux_sym_macro_definition_repeat1, - STATE(2101), 1, + STATE(2251), 1, sym_macro_rule, - STATE(2454), 1, + STATE(2369), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55406] = 2, + [56772] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3813), 7, + ACTIONS(3777), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -111263,10491 +113879,10544 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55420] = 3, - ACTIONS(3815), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55436] = 7, - ACTIONS(802), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, - sym_identifier, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, - ACTIONS(3817), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2066), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55460] = 8, - ACTIONS(3757), 1, + [56786] = 8, + ACTIONS(3845), 1, anon_sym_LPAREN, - ACTIONS(3761), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, - ACTIONS(3763), 1, + ACTIONS(3851), 1, anon_sym_LBRACK, - ACTIONS(3819), 1, - anon_sym_RBRACE, - STATE(1489), 1, + ACTIONS(3925), 1, + anon_sym_RPAREN, + STATE(1558), 1, aux_sym_macro_definition_repeat1, - STATE(2181), 1, + STATE(2238), 1, sym_macro_rule, - STATE(2454), 1, + STATE(2369), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55486] = 6, - ACTIONS(3747), 1, - anon_sym_LPAREN, - ACTIONS(3751), 1, - anon_sym_EQ, - ACTIONS(3821), 1, - anon_sym_COLON_COLON, - STATE(1819), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3749), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [55508] = 8, - ACTIONS(3757), 1, + [56812] = 8, + ACTIONS(3845), 1, anon_sym_LPAREN, - ACTIONS(3761), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, - ACTIONS(3763), 1, + ACTIONS(3851), 1, anon_sym_LBRACK, - ACTIONS(3823), 1, + ACTIONS(3927), 1, anon_sym_RBRACE, - STATE(1530), 1, + STATE(1560), 1, aux_sym_macro_definition_repeat1, - STATE(2117), 1, + STATE(2259), 1, sym_macro_rule, - STATE(2454), 1, + STATE(2369), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55534] = 8, - ACTIONS(3757), 1, + [56838] = 8, + ACTIONS(3845), 1, anon_sym_LPAREN, - ACTIONS(3761), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, - ACTIONS(3763), 1, + ACTIONS(3851), 1, anon_sym_LBRACK, - ACTIONS(3825), 1, + ACTIONS(3929), 1, anon_sym_RPAREN, - STATE(1514), 1, + STATE(1558), 1, aux_sym_macro_definition_repeat1, - STATE(2138), 1, + STATE(2243), 1, sym_macro_rule, - STATE(2454), 1, + STATE(2369), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55560] = 7, - ACTIONS(802), 1, + [56864] = 7, + ACTIONS(810), 1, anon_sym_DOT_DOT, - ACTIONS(3665), 1, + ACTIONS(3806), 1, sym_identifier, - ACTIONS(3671), 1, + ACTIONS(3812), 1, anon_sym_ref, - ACTIONS(3673), 1, + ACTIONS(3814), 1, sym_mutable_specifier, - ACTIONS(3827), 1, + ACTIONS(3931), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2066), 2, + STATE(2170), 2, sym_field_pattern, sym_remaining_field_pattern, - [55584] = 3, - ACTIONS(3829), 1, - anon_sym_trait, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55600] = 6, - ACTIONS(3747), 1, - anon_sym_LPAREN, - ACTIONS(3751), 1, - anon_sym_EQ, - ACTIONS(3831), 1, - anon_sym_COLON_COLON, - STATE(1819), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3749), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [55622] = 6, - ACTIONS(3584), 1, + [56888] = 8, + ACTIONS(3845), 1, anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, - ACTIONS(3835), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3833), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1848), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55644] = 6, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, - ACTIONS(3747), 1, - anon_sym_LPAREN, - ACTIONS(3839), 1, - anon_sym_EQ, - STATE(1816), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3837), 3, + ACTIONS(3851), 1, + anon_sym_LBRACK, + ACTIONS(3933), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [55666] = 3, - ACTIONS(3841), 1, - sym_identifier, + STATE(1596), 1, + aux_sym_macro_definition_repeat1, + STATE(2257), 1, + sym_macro_rule, + STATE(2369), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55682] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3843), 1, - anon_sym_SEMI, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(3847), 1, - anon_sym_DASH_GT, - STATE(339), 1, - sym_block, - STATE(1964), 1, - sym_where_clause, + [56914] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55705] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3849), 1, + ACTIONS(3777), 7, anon_sym_SEMI, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3853), 1, - anon_sym_DASH_GT, - STATE(828), 1, - sym_block, - STATE(1961), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55728] = 7, - ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3855), 1, - sym_identifier, - ACTIONS(3857), 1, - anon_sym_STAR, - STATE(1813), 1, - sym_use_list, - STATE(2322), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55751] = 7, - ACTIONS(3588), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(3859), 1, - anon_sym_SEMI, - ACTIONS(3861), 1, - anon_sym_DASH_GT, - STATE(463), 1, - sym_block, - STATE(1947), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55774] = 5, - ACTIONS(3865), 1, - anon_sym_COLON, - ACTIONS(3867), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3863), 2, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_COMMA, - [55793] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3869), 1, - anon_sym_SEMI, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(741), 1, - sym_block, - STATE(1946), 1, - sym_where_clause, + anon_sym_GT, + [56928] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55816] = 7, - ACTIONS(3157), 1, + ACTIONS(3777), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3855), 1, - sym_identifier, - ACTIONS(3857), 1, - anon_sym_STAR, - STATE(1813), 1, - sym_use_list, - STATE(2364), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55839] = 7, - ACTIONS(3588), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3594), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56942] = 8, + ACTIONS(3845), 1, + anon_sym_LPAREN, + ACTIONS(3847), 1, anon_sym_LBRACE, - STATE(963), 1, - sym_field_declaration_list, - STATE(1757), 1, - sym_type_parameters, - STATE(2047), 1, - sym_where_clause, + ACTIONS(3851), 1, + anon_sym_LBRACK, + ACTIONS(3935), 1, + anon_sym_RBRACE, + STATE(1558), 1, + aux_sym_macro_definition_repeat1, + STATE(2287), 1, + sym_macro_rule, + STATE(2369), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55862] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3873), 1, + [56968] = 8, + ACTIONS(3845), 1, + anon_sym_LPAREN, + ACTIONS(3847), 1, anon_sym_LBRACE, - STATE(949), 1, - sym_enum_variant_list, - STATE(1743), 1, - sym_type_parameters, - STATE(2044), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55885] = 7, - ACTIONS(3588), 1, - anon_sym_where, ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3875), 1, - anon_sym_SEMI, - ACTIONS(3877), 1, - anon_sym_DASH_GT, - STATE(774), 1, - sym_block, - STATE(1952), 1, - sym_where_clause, + anon_sym_LBRACK, + ACTIONS(3937), 1, + anon_sym_RBRACE, + STATE(1593), 1, + aux_sym_macro_definition_repeat1, + STATE(2155), 1, + sym_macro_rule, + STATE(2369), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55908] = 7, - ACTIONS(3588), 1, + [56994] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3845), 1, + ACTIONS(3724), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3879), 1, + ACTIONS(3939), 1, anon_sym_SEMI, - STATE(367), 1, - sym_block, - STATE(2012), 1, + ACTIONS(3941), 1, + anon_sym_PLUS, + STATE(859), 1, + sym_declaration_list, + STATE(2095), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55931] = 7, - ACTIONS(3588), 1, + [57017] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(3881), 1, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3943), 1, anon_sym_SEMI, - ACTIONS(3883), 1, - anon_sym_DASH_GT, - STATE(436), 1, + ACTIONS(3945), 1, + anon_sym_LBRACE, + STATE(825), 1, sym_block, - STATE(1957), 1, + STATE(1916), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55954] = 7, - ACTIONS(3578), 1, + [57040] = 7, + ACTIONS(3670), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3681), 1, + ACTIONS(3674), 1, + anon_sym_LT, + STATE(901), 1, + sym_field_declaration_list, + STATE(1748), 1, + sym_type_parameters, + STATE(2119), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57063] = 7, + ACTIONS(3802), 1, anon_sym_COLON, - STATE(940), 1, - sym_declaration_list, - STATE(1725), 1, + ACTIONS(3947), 1, + anon_sym_COMMA, + ACTIONS(3949), 1, + anon_sym_GT, + STATE(1861), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2035), 1, + aux_sym_type_parameters_repeat1, + STATE(2038), 1, sym_trait_bounds, - STATE(2058), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55977] = 7, - ACTIONS(3588), 1, + [57086] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3845), 1, + ACTIONS(3674), 1, + anon_sym_LT, + ACTIONS(3951), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3885), 1, - anon_sym_SEMI, - STATE(382), 1, - sym_block, - STATE(1853), 1, + STATE(287), 1, + sym_enum_variant_list, + STATE(1807), 1, + sym_type_parameters, + STATE(2256), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56000] = 4, - ACTIONS(3887), 1, + [57109] = 4, + ACTIONS(3953), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3398), 2, + ACTIONS(3600), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2564), 3, + ACTIONS(2614), 3, anon_sym_SEMI, anon_sym_PLUS, anon_sym_DASH_GT, - [56017] = 7, - ACTIONS(3564), 1, + [57126] = 4, + ACTIONS(3394), 1, + anon_sym_COLON_COLON, + ACTIONS(3762), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2484), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3588), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(460), 1, - sym_declaration_list, - STATE(1709), 1, - sym_trait_bounds, - STATE(2168), 1, + [57143] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3945), 1, + anon_sym_LBRACE, + ACTIONS(3956), 1, + anon_sym_SEMI, + STATE(999), 1, + sym_block, + STATE(1932), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56040] = 7, - ACTIONS(3588), 1, + [57166] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3845), 1, + ACTIONS(3674), 1, + anon_sym_LT, + ACTIONS(3680), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3890), 1, - anon_sym_SEMI, - STATE(411), 1, - sym_block, - STATE(1884), 1, + STATE(344), 1, + sym_field_declaration_list, + STATE(1812), 1, + sym_type_parameters, + STATE(2106), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56063] = 7, - ACTIONS(3588), 1, + [57189] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3845), 1, + ACTIONS(3674), 1, + anon_sym_LT, + ACTIONS(3680), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3892), 1, - anon_sym_SEMI, - STATE(364), 1, - sym_block, - STATE(1845), 1, + STATE(385), 1, + sym_field_declaration_list, + STATE(1773), 1, + sym_type_parameters, + STATE(2176), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56086] = 7, - ACTIONS(3588), 1, + [57212] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3845), 1, + ACTIONS(3724), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(3894), 1, + ACTIONS(3958), 1, anon_sym_SEMI, - STATE(345), 1, - sym_block, - STATE(1834), 1, + STATE(848), 1, + sym_declaration_list, + STATE(1979), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56109] = 4, + [57235] = 4, + ACTIONS(3960), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2530), 2, + ACTIONS(3476), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2660), 3, + anon_sym_SEMI, anon_sym_PLUS, anon_sym_DASH_GT, - ACTIONS(3474), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3896), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56126] = 7, - ACTIONS(3588), 1, + [57252] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(3702), 1, anon_sym_LBRACE, - ACTIONS(3899), 1, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3963), 1, anon_sym_SEMI, - ACTIONS(3901), 1, - anon_sym_DASH_GT, - STATE(952), 1, - sym_block, - STATE(2018), 1, + STATE(282), 1, + sym_declaration_list, + STATE(2042), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56149] = 7, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + [57275] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(322), 1, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3965), 1, + anon_sym_SEMI, + STATE(280), 1, sym_declaration_list, - STATE(1774), 1, - sym_trait_bounds, - STATE(2198), 1, + STATE(2000), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56172] = 7, - ACTIONS(3588), 1, + [57298] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(3945), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3903), 1, + ACTIONS(3967), 1, anon_sym_SEMI, - STATE(782), 1, + ACTIONS(3969), 1, + anon_sym_DASH_GT, + STATE(973), 1, sym_block, - STATE(1955), 1, + STATE(1928), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56195] = 7, - ACTIONS(3588), 1, + [57321] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3873), 1, + ACTIONS(3971), 1, + anon_sym_SEMI, + ACTIONS(3973), 1, anon_sym_LBRACE, - STATE(808), 1, - sym_enum_variant_list, - STATE(1719), 1, - sym_type_parameters, - STATE(2205), 1, + ACTIONS(3975), 1, + anon_sym_DASH_GT, + STATE(426), 1, + sym_block, + STATE(1905), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56218] = 7, - ACTIONS(3588), 1, + [57344] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3845), 1, + ACTIONS(3702), 1, anon_sym_LBRACE, - ACTIONS(3905), 1, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3977), 1, anon_sym_SEMI, - ACTIONS(3907), 1, - anon_sym_DASH_GT, - STATE(400), 1, - sym_block, - STATE(1868), 1, + STATE(312), 1, + sym_declaration_list, + STATE(2079), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56241] = 7, - ACTIONS(3588), 1, + [57367] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3909), 1, + ACTIONS(3702), 1, anon_sym_LBRACE, - STATE(275), 1, - sym_enum_variant_list, - STATE(1712), 1, - sym_type_parameters, - STATE(2054), 1, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3979), 1, + anon_sym_SEMI, + STATE(306), 1, + sym_declaration_list, + STATE(2080), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56264] = 5, - ACTIONS(3913), 1, - anon_sym_COLON, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3911), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56283] = 7, - ACTIONS(3588), 1, + [57390] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(3945), 1, anon_sym_LBRACE, - ACTIONS(3917), 1, + ACTIONS(3981), 1, anon_sym_SEMI, - ACTIONS(3919), 1, + ACTIONS(3983), 1, anon_sym_DASH_GT, - STATE(849), 1, + STATE(931), 1, sym_block, - STATE(1970), 1, + STATE(1954), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56306] = 4, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, + [57413] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2394), 3, + ACTIONS(3476), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2660), 4, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [56323] = 4, - ACTIONS(3896), 1, - anon_sym_RBRACK, + anon_sym_DASH_GT, + [57428] = 4, + ACTIONS(3394), 1, + anon_sym_COLON_COLON, + ACTIONS(3706), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2530), 3, + ACTIONS(2484), 4, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH_GT, - [56340] = 7, - ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3921), 1, - anon_sym_SEMI, - ACTIONS(3923), 1, - anon_sym_DASH_GT, - STATE(909), 1, - sym_block, - STATE(1998), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56363] = 7, - ACTIONS(3586), 1, + [57445] = 7, + ACTIONS(3670), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3590), 1, + ACTIONS(3674), 1, anon_sym_LT, - STATE(266), 1, + STATE(933), 1, sym_field_declaration_list, - STATE(1744), 1, + STATE(1768), 1, sym_type_parameters, - STATE(2139), 1, + STATE(2168), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56386] = 7, - ACTIONS(3588), 1, + [57468] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(3724), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3925), 1, - anon_sym_SEMI, - STATE(757), 1, - sym_block, - STATE(1950), 1, + ACTIONS(3802), 1, + anon_sym_COLON, + STATE(923), 1, + sym_declaration_list, + STATE(1779), 1, + sym_trait_bounds, + STATE(2187), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56409] = 7, - ACTIONS(3588), 1, + [57491] = 7, + ACTIONS(3674), 1, + anon_sym_LT, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(3985), 1, + anon_sym_SEMI, + ACTIONS(3987), 1, + anon_sym_EQ, + STATE(2477), 1, + sym_trait_bounds, + STATE(2481), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57514] = 7, + ACTIONS(3674), 1, + anon_sym_LT, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(3989), 1, + anon_sym_SEMI, + ACTIONS(3991), 1, + anon_sym_EQ, + STATE(2475), 1, + sym_type_parameters, + STATE(2483), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57537] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3845), 1, + ACTIONS(3702), 1, anon_sym_LBRACE, - ACTIONS(3927), 1, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3993), 1, anon_sym_SEMI, - ACTIONS(3929), 1, - anon_sym_DASH_GT, - STATE(325), 1, - sym_block, - STATE(1945), 1, + STATE(488), 1, + sym_declaration_list, + STATE(2017), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56432] = 7, - ACTIONS(3588), 1, + [57560] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3845), 1, + ACTIONS(3702), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(3931), 1, + ACTIONS(3995), 1, anon_sym_SEMI, - STATE(448), 1, - sym_block, - STATE(1915), 1, + STATE(483), 1, + sym_declaration_list, + STATE(2018), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56455] = 7, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + [57583] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(833), 1, - sym_declaration_list, - STATE(1704), 1, - sym_trait_bounds, - STATE(2142), 1, + ACTIONS(3674), 1, + anon_sym_LT, + ACTIONS(3951), 1, + anon_sym_LBRACE, + STATE(275), 1, + sym_enum_variant_list, + STATE(1834), 1, + sym_type_parameters, + STATE(2244), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56478] = 7, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + [57606] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(268), 1, - sym_declaration_list, - STATE(1742), 1, - sym_trait_bounds, - STATE(2146), 1, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(3997), 1, + anon_sym_SEMI, + STATE(290), 1, + sym_block, + STATE(2088), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56501] = 7, - ACTIONS(3586), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + [57629] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3590), 1, + ACTIONS(3674), 1, anon_sym_LT, - STATE(384), 1, - sym_field_declaration_list, - STATE(1772), 1, + ACTIONS(3999), 1, + anon_sym_LBRACE, + STATE(912), 1, + sym_enum_variant_list, + STATE(1749), 1, sym_type_parameters, - STATE(2203), 1, + STATE(2113), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56524] = 4, - ACTIONS(3933), 1, + [57652] = 4, + ACTIONS(3394), 1, anon_sym_COLON_COLON, + ACTIONS(3718), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2394), 3, + ACTIONS(2484), 4, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [56541] = 7, - ACTIONS(2247), 1, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3935), 1, - anon_sym_COMMA, - ACTIONS(3937), 1, - anon_sym_GT, - STATE(1890), 1, - sym_trait_bounds, - STATE(1892), 1, - aux_sym_type_parameters_repeat1, + anon_sym_where, + [57669] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3945), 1, + anon_sym_LBRACE, + ACTIONS(4001), 1, + anon_sym_SEMI, + ACTIONS(4003), 1, + anon_sym_DASH_GT, + STATE(879), 1, + sym_block, + STATE(1964), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56564] = 7, - ACTIONS(3588), 1, + [57692] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3871), 1, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(3939), 1, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(4005), 1, anon_sym_SEMI, - STATE(748), 1, + STATE(464), 1, sym_block, - STATE(1949), 1, + STATE(1837), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56587] = 5, - ACTIONS(3913), 1, - anon_sym_COLON, + [57715] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LBRACE, ACTIONS(3941), 1, - anon_sym_COLON_COLON, + anon_sym_PLUS, + ACTIONS(4007), 1, + anon_sym_SEMI, + STATE(917), 1, + sym_declaration_list, + STATE(2064), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3911), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56606] = 7, - ACTIONS(3588), 1, + [57738] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(3702), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(3943), 1, + ACTIONS(4009), 1, anon_sym_SEMI, - STATE(814), 1, - sym_block, - STATE(1960), 1, + STATE(300), 1, + sym_declaration_list, + STATE(1890), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56629] = 4, + [57761] = 4, + ACTIONS(3394), 1, + anon_sym_COLON_COLON, + ACTIONS(3710), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 2, + ACTIONS(2484), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3398), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3887), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56646] = 7, - ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3851), 1, + [57778] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3973), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, + ACTIONS(4011), 1, + anon_sym_SEMI, + ACTIONS(4013), 1, + anon_sym_DASH_GT, + STATE(266), 1, + sym_block, + STATE(1899), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57801] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(3945), 1, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(4015), 1, anon_sym_SEMI, - STATE(881), 1, + STATE(402), 1, sym_block, - STATE(1975), 1, + STATE(2053), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56669] = 7, - ACTIONS(3330), 1, + [57824] = 7, + ACTIONS(3404), 1, anon_sym_EQ, - ACTIONS(3681), 1, + ACTIONS(3802), 1, anon_sym_COLON, - ACTIONS(3947), 1, + ACTIONS(4017), 1, anon_sym_COMMA, - ACTIONS(3949), 1, + ACTIONS(4019), 1, anon_sym_GT, - STATE(1894), 1, + STATE(2020), 1, sym_trait_bounds, - STATE(2007), 1, + STATE(2050), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56692] = 7, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3951), 1, - anon_sym_SEMI, - ACTIONS(3953), 1, - anon_sym_EQ, - STATE(2338), 1, - sym_type_parameters, - STATE(2339), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56715] = 7, - ACTIONS(3588), 1, + [57847] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3909), 1, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3945), 1, anon_sym_LBRACE, - STATE(257), 1, - sym_enum_variant_list, - STATE(1756), 1, - sym_type_parameters, - STATE(2128), 1, + ACTIONS(4021), 1, + anon_sym_SEMI, + STATE(957), 1, + sym_block, + STATE(1942), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56738] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3398), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2564), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [56753] = 6, - ACTIONS(2995), 1, + [57870] = 4, + ACTIONS(3394), 1, anon_sym_COLON_COLON, - ACTIONS(3935), 1, - anon_sym_COMMA, - ACTIONS(3937), 1, - anon_sym_GT, - STATE(1892), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3758), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 2, + ACTIONS(2484), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_as, - [56774] = 6, - ACTIONS(802), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, - sym_identifier, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2066), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56795] = 4, - ACTIONS(3941), 1, + anon_sym_where, + [57887] = 5, + ACTIONS(4025), 1, + anon_sym_COLON, + ACTIONS(4027), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3311), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2394), 3, + ACTIONS(4023), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [56812] = 7, - ACTIONS(3588), 1, + [57906] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3594), 1, + ACTIONS(3702), 1, anon_sym_LBRACE, - STATE(858), 1, - sym_field_declaration_list, - STATE(1702), 1, - sym_type_parameters, - STATE(2151), 1, + ACTIONS(3802), 1, + anon_sym_COLON, + STATE(336), 1, + sym_declaration_list, + STATE(1809), 1, + sym_trait_bounds, + STATE(2107), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56835] = 3, + [57929] = 7, + ACTIONS(3404), 1, + anon_sym_EQ, + ACTIONS(3406), 1, + anon_sym_COMMA, + ACTIONS(3408), 1, + anon_sym_GT, + ACTIONS(3802), 1, + anon_sym_COLON, + STATE(2020), 1, + sym_trait_bounds, + STATE(2021), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57952] = 6, + ACTIONS(3171), 1, + anon_sym_COLON_COLON, + ACTIONS(4029), 1, + anon_sym_COMMA, + ACTIONS(4031), 1, + anon_sym_GT, + STATE(2035), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2530), 4, - anon_sym_RPAREN, + ACTIONS(2484), 2, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [56850] = 7, - ACTIONS(3588), 1, + anon_sym_as, + [57973] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4033), 1, + anon_sym_SEMI, + STATE(318), 1, + sym_declaration_list, + STATE(1872), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57996] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3845), 1, + ACTIONS(3702), 1, anon_sym_LBRACE, - ACTIONS(3955), 1, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4035), 1, anon_sym_SEMI, - ACTIONS(3957), 1, - anon_sym_DASH_GT, - STATE(294), 1, - sym_block, - STATE(1861), 1, + STATE(479), 1, + sym_declaration_list, + STATE(1874), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56873] = 7, - ACTIONS(3330), 1, - anon_sym_EQ, - ACTIONS(3332), 1, - anon_sym_COMMA, - ACTIONS(3334), 1, - anon_sym_GT, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(1893), 1, - aux_sym_type_parameters_repeat1, - STATE(1894), 1, - sym_trait_bounds, + [58019] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56896] = 7, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(2614), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3600), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3953), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58036] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3681), 1, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, anon_sym_COLON, - STATE(904), 1, + STATE(930), 1, sym_declaration_list, - STATE(1776), 1, + STATE(1751), 1, sym_trait_bounds, - STATE(2096), 1, + STATE(2126), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56919] = 7, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3959), 1, + [58059] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4037), 1, anon_sym_SEMI, - ACTIONS(3961), 1, - anon_sym_EQ, - STATE(2380), 1, - sym_trait_bounds, - STATE(2436), 1, - sym_type_parameters, + STATE(858), 1, + sym_declaration_list, + STATE(1972), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56942] = 7, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3963), 1, - anon_sym_COMMA, - ACTIONS(3965), 1, - anon_sym_GT, - STATE(1879), 1, - aux_sym_for_lifetimes_repeat1, - STATE(1890), 1, - sym_trait_bounds, - STATE(1892), 1, - aux_sym_type_parameters_repeat1, + [58082] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4039), 1, + anon_sym_SEMI, + STATE(820), 1, + sym_declaration_list, + STATE(1999), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56965] = 7, - ACTIONS(3588), 1, + [58105] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3973), 1, anon_sym_LBRACE, - ACTIONS(3967), 1, + ACTIONS(4041), 1, anon_sym_SEMI, - ACTIONS(3969), 1, - anon_sym_DASH_GT, - STATE(901), 1, + STATE(328), 1, sym_block, - STATE(1983), 1, + STATE(2072), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56988] = 5, - ACTIONS(3380), 1, - anon_sym_COLON, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3478), 1, - anon_sym_COLON_COLON, + [58128] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4043), 1, + anon_sym_SEMI, + STATE(813), 1, + sym_declaration_list, + STATE(2001), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57006] = 2, + [58151] = 7, + ACTIONS(2355), 1, + anon_sym_PLUS, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(4029), 1, + anon_sym_COMMA, + ACTIONS(4031), 1, + anon_sym_GT, + STATE(2035), 1, + aux_sym_type_parameters_repeat1, + STATE(2038), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3971), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [58174] = 7, + ACTIONS(3672), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57018] = 6, - ACTIONS(3578), 1, + ACTIONS(3724), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, + ACTIONS(3941), 1, anon_sym_PLUS, - STATE(923), 1, + ACTIONS(4045), 1, + anon_sym_SEMI, + STATE(976), 1, sym_declaration_list, - STATE(2076), 1, + STATE(2054), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57038] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3973), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [58197] = 7, + ACTIONS(3672), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57050] = 2, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3945), 1, + anon_sym_LBRACE, + ACTIONS(4047), 1, + anon_sym_SEMI, + STATE(781), 1, + sym_block, + STATE(2004), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3975), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [58220] = 7, + ACTIONS(3672), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57062] = 6, - ACTIONS(3578), 1, + ACTIONS(3702), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, + ACTIONS(3941), 1, anon_sym_PLUS, - STATE(873), 1, + ACTIONS(4049), 1, + anon_sym_SEMI, + STATE(348), 1, sym_declaration_list, - STATE(2126), 1, + STATE(2075), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57082] = 4, - ACTIONS(3915), 1, + [58243] = 4, + ACTIONS(4051), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3311), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3977), 2, + ACTIONS(2484), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [57098] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3979), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [58260] = 7, + ACTIONS(3672), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57110] = 4, - ACTIONS(3981), 1, - anon_sym_RBRACK, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, + anon_sym_COLON, + STATE(429), 1, + sym_declaration_list, + STATE(1746), 1, + sym_trait_bounds, + STATE(2269), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2880), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3390), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [57126] = 2, + [58283] = 5, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4055), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3984), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57138] = 5, - ACTIONS(3986), 1, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4053), 2, anon_sym_RPAREN, - ACTIONS(3989), 1, anon_sym_COMMA, - STATE(1854), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3213), 2, + [58302] = 5, + ACTIONS(4055), 1, anon_sym_COLON, - anon_sym_PIPE, - [57156] = 2, + ACTIONS(4057), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3992), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4053), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [57168] = 4, - ACTIONS(3996), 1, - anon_sym_as, - ACTIONS(3998), 1, - anon_sym_COLON_COLON, + [58321] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4059), 1, + anon_sym_SEMI, + STATE(389), 1, + sym_declaration_list, + STATE(2062), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3994), 3, + [58344] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(4061), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [57184] = 2, + STATE(298), 1, + sym_block, + STATE(2084), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4000), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [58367] = 7, + ACTIONS(3672), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57196] = 2, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(4063), 1, + anon_sym_SEMI, + ACTIONS(4065), 1, + anon_sym_DASH_GT, + STATE(474), 1, + sym_block, + STATE(2028), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4002), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57208] = 2, + [58390] = 4, + ACTIONS(3394), 1, + anon_sym_COLON_COLON, + ACTIONS(3716), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4004), 5, + ACTIONS(2484), 4, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57220] = 6, - ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3871), 1, + [58407] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(3941), 1, anon_sym_PLUS, - STATE(375), 1, + ACTIONS(4067), 1, + anon_sym_SEMI, + STATE(462), 1, sym_declaration_list, - STATE(2053), 1, + STATE(2044), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57240] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(373), 1, - sym_declaration_list, - STATE(2042), 1, - sym_where_clause, + [58430] = 4, + ACTIONS(4057), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57260] = 5, - ACTIONS(4006), 1, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2484), 3, anon_sym_RPAREN, - ACTIONS(4008), 1, + anon_sym_PLUS, anon_sym_COMMA, - STATE(1854), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3213), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57278] = 2, + [58447] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4069), 1, + anon_sym_SEMI, + STATE(993), 1, + sym_declaration_list, + STATE(1936), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4010), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [58470] = 7, + ACTIONS(3672), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57290] = 2, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3945), 1, + anon_sym_LBRACE, + ACTIONS(4071), 1, + anon_sym_SEMI, + STATE(1011), 1, + sym_block, + STATE(1918), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3708), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, + [58493] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3674), 1, + anon_sym_LT, + ACTIONS(3999), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [57302] = 4, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - ACTIONS(3733), 1, - anon_sym_for, + STATE(836), 1, + sym_enum_variant_list, + STATE(1777), 1, + sym_type_parameters, + STATE(2182), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, + [58516] = 7, + ACTIONS(3672), 1, anon_sym_where, - [57318] = 6, - ACTIONS(3564), 1, + ACTIONS(3945), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(256), 1, - sym_declaration_list, - STATE(2127), 1, + ACTIONS(4073), 1, + anon_sym_SEMI, + ACTIONS(4075), 1, + anon_sym_DASH_GT, + STATE(876), 1, + sym_block, + STATE(2087), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57338] = 4, - ACTIONS(3915), 1, + [58539] = 4, + ACTIONS(4077), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3311), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3863), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57354] = 6, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3328), 1, - anon_sym_COLON, - STATE(1285), 1, - sym_type_arguments, - STATE(1852), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57374] = 4, - ACTIONS(2880), 1, + ACTIONS(2484), 3, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS, + [58556] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(4079), 1, + anon_sym_SEMI, + ACTIONS(4081), 1, + anon_sym_DASH_GT, + STATE(388), 1, + sym_block, + STATE(1845), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3390), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3981), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57390] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + [58579] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(911), 1, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, + anon_sym_COLON, + STATE(450), 1, sym_declaration_list, - STATE(2093), 1, + STATE(1764), 1, + sym_trait_bounds, + STATE(2150), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57410] = 6, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(4012), 1, - anon_sym_COMMA, - ACTIONS(4014), 1, - anon_sym_GT, - STATE(1890), 1, - sym_trait_bounds, - STATE(2009), 1, - aux_sym_type_parameters_repeat1, + [58602] = 4, + ACTIONS(3394), 1, + anon_sym_COLON_COLON, + ACTIONS(3738), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57430] = 6, - ACTIONS(3564), 1, + ACTIONS(2484), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, anon_sym_PLUS, - STATE(300), 1, - sym_declaration_list, - STATE(2220), 1, - sym_where_clause, + anon_sym_where, + [58619] = 4, + ACTIONS(3394), 1, + anon_sym_COLON_COLON, + ACTIONS(3760), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57450] = 5, - ACTIONS(3330), 1, - anon_sym_EQ, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(1894), 1, - sym_trait_bounds, + ACTIONS(2484), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [58636] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4016), 2, + ACTIONS(3600), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2614), 4, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_GT, - [57468] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + anon_sym_DASH_GT, + [58651] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3871), 1, + ACTIONS(3941), 1, anon_sym_PLUS, - STATE(315), 1, - sym_declaration_list, - STATE(2206), 1, + ACTIONS(3945), 1, + anon_sym_LBRACE, + ACTIONS(4083), 1, + anon_sym_SEMI, + STATE(874), 1, + sym_block, + STATE(1923), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57488] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + [58674] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3871), 1, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(3941), 1, anon_sym_PLUS, - STATE(827), 1, + ACTIONS(4085), 1, + anon_sym_SEMI, + STATE(843), 1, sym_declaration_list, - STATE(2170), 1, + STATE(2098), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57508] = 6, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3935), 1, - anon_sym_COMMA, - ACTIONS(3937), 1, - anon_sym_GT, - STATE(1890), 1, - sym_trait_bounds, - STATE(1892), 1, - aux_sym_type_parameters_repeat1, + [58697] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(4087), 1, + anon_sym_SEMI, + ACTIONS(4089), 1, + anon_sym_DASH_GT, + STATE(350), 1, + sym_block, + STATE(1920), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57528] = 4, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - ACTIONS(3697), 1, - anon_sym_for, + [58720] = 6, + ACTIONS(810), 1, + anon_sym_DOT_DOT, + ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3812), 1, + anon_sym_ref, + ACTIONS(3814), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, + STATE(2170), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [58741] = 7, + ACTIONS(3672), 1, anon_sym_where, - [57544] = 4, - ACTIONS(15), 1, + ACTIONS(3724), 1, anon_sym_LBRACE, - ACTIONS(4018), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(43), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [57560] = 2, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4091), 1, + anon_sym_SEMI, + STATE(996), 1, + sym_declaration_list, + STATE(1935), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4020), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [58764] = 7, + ACTIONS(3672), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57572] = 4, - ACTIONS(3996), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_COLON_COLON, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(4093), 1, + anon_sym_SEMI, + STATE(399), 1, + sym_block, + STATE(2063), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3994), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [57588] = 5, - ACTIONS(772), 1, - anon_sym_RPAREN, - ACTIONS(4024), 1, - anon_sym_COMMA, - STATE(1976), 1, - aux_sym_parameters_repeat1, + [58787] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, + ACTIONS(2660), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3476), 2, anon_sym_COLON, anon_sym_PIPE, - [57606] = 5, - ACTIONS(4026), 1, + ACTIONS(3960), 2, anon_sym_RPAREN, - ACTIONS(4028), 1, anon_sym_COMMA, - STATE(2022), 1, - aux_sym_parameters_repeat1, + [58804] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4095), 1, + anon_sym_SEMI, + STATE(793), 1, + sym_declaration_list, + STATE(2073), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, + [58827] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, anon_sym_COLON, - anon_sym_PIPE, - [57624] = 4, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - ACTIONS(3685), 1, - anon_sym_for, + STATE(786), 1, + sym_declaration_list, + STATE(1763), 1, + sym_trait_bounds, + STATE(2141), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, + [58850] = 7, + ACTIONS(3253), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(4097), 1, + sym_identifier, + ACTIONS(4099), 1, + anon_sym_STAR, + STATE(1961), 1, + sym_use_list, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58873] = 7, + ACTIONS(3672), 1, anon_sym_where, - [57640] = 6, - ACTIONS(3564), 1, + ACTIONS(3724), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, + ACTIONS(3941), 1, anon_sym_PLUS, - STATE(423), 1, + ACTIONS(4101), 1, + anon_sym_SEMI, + STATE(898), 1, sym_declaration_list, - STATE(2105), 1, + STATE(1991), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57660] = 6, - ACTIONS(3564), 1, + [58896] = 7, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3945), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(4103), 1, + anon_sym_SEMI, + ACTIONS(4105), 1, + anon_sym_DASH_GT, + STATE(779), 1, + sym_block, + STATE(2025), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58919] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(299), 1, - sym_declaration_list, - STATE(2243), 1, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(4107), 1, + anon_sym_SEMI, + ACTIONS(4109), 1, + anon_sym_DASH_GT, + STATE(442), 1, + sym_block, + STATE(2034), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57680] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + [58942] = 7, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(790), 1, - sym_declaration_list, - STATE(2154), 1, + ACTIONS(3945), 1, + anon_sym_LBRACE, + ACTIONS(4111), 1, + anon_sym_SEMI, + ACTIONS(4113), 1, + anon_sym_DASH_GT, + STATE(1009), 1, + sym_block, + STATE(2043), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57700] = 6, - ACTIONS(3564), 1, + [58965] = 7, + ACTIONS(3253), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(347), 1, - sym_declaration_list, - STATE(2120), 1, - sym_where_clause, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(4097), 1, + sym_identifier, + ACTIONS(4099), 1, + anon_sym_STAR, + STATE(1961), 1, + sym_use_list, + STATE(2303), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57720] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(426), 1, - sym_declaration_list, - STATE(2123), 1, - sym_where_clause, + [58988] = 4, + ACTIONS(4057), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57740] = 5, - ACTIONS(3380), 1, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4023), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59004] = 6, + ACTIONS(3802), 1, anon_sym_COLON, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3384), 1, + ACTIONS(4115), 1, + anon_sym_COMMA, + ACTIONS(4117), 1, + anon_sym_GT, + STATE(2038), 1, + sym_trait_bounds, + STATE(2052), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59024] = 6, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3321), 1, anon_sym_COLON_COLON, + STATE(1326), 1, + sym_type_arguments, + STATE(1355), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57758] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + [59044] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4119), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(789), 1, - sym_declaration_list, - STATE(2155), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [59056] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57778] = 4, - ACTIONS(644), 1, + ACTIONS(4121), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [59068] = 4, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(4030), 1, + ACTIONS(4123), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(217), 3, + STATE(1115), 3, sym_if_expression, sym_if_let_expression, sym_block, - [57794] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(931), 1, - sym_declaration_list, - STATE(2081), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57814] = 4, - ACTIONS(4034), 1, + [59084] = 4, + ACTIONS(4127), 1, anon_sym_as, - ACTIONS(4036), 1, + ACTIONS(4129), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4032), 3, + ACTIONS(4125), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [57830] = 4, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - ACTIONS(3731), 1, - anon_sym_for, + [59100] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57846] = 6, - ACTIONS(2362), 1, + ACTIONS(3835), 5, anon_sym_LPAREN, - ACTIONS(3209), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [59112] = 5, + ACTIONS(3550), 1, + anon_sym_COLON, + ACTIONS(3552), 1, + anon_sym_BANG, + ACTIONS(3554), 1, anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - STATE(925), 1, - sym_parameters, - STATE(1285), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57866] = 3, + ACTIONS(3422), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59130] = 5, + ACTIONS(778), 1, + anon_sym_RPAREN, + ACTIONS(4131), 1, + anon_sym_COMMA, + STATE(2009), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3390), 2, + ACTIONS(3301), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2880), 3, + [59148] = 5, + ACTIONS(4133), 1, anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(4136), 1, anon_sym_COMMA, - [57880] = 4, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - ACTIONS(3679), 1, - anon_sym_for, + STATE(1838), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57896] = 2, + ACTIONS(3301), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59166] = 5, + ACTIONS(4139), 1, + anon_sym_RPAREN, + ACTIONS(4141), 1, + anon_sym_COMMA, + STATE(1838), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4038), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3301), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59184] = 5, + ACTIONS(4143), 1, + anon_sym_RPAREN, + ACTIONS(4145), 1, anon_sym_COMMA, - [57908] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(420), 1, - sym_declaration_list, - STATE(2232), 1, - sym_where_clause, + STATE(2082), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57928] = 4, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - ACTIONS(3677), 1, - anon_sym_for, + ACTIONS(3301), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59202] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4147), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57944] = 2, + STATE(51), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [59218] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4040), 5, + ACTIONS(4149), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57956] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(857), 1, - sym_declaration_list, - STATE(2037), 1, - sym_where_clause, + [59230] = 6, + ACTIONS(2458), 1, + anon_sym_LPAREN, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3321), 1, + anon_sym_COLON_COLON, + STATE(967), 1, + sym_parameters, + STATE(1326), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57976] = 2, + [59250] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4042), 5, + ACTIONS(4151), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57988] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(4044), 1, - anon_sym_if, + [59262] = 6, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(4029), 1, + anon_sym_COMMA, + ACTIONS(4031), 1, + anon_sym_GT, + STATE(2035), 1, + aux_sym_type_parameters_repeat1, + STATE(2038), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(979), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [58004] = 4, - ACTIONS(3312), 1, + [59282] = 4, + ACTIONS(4051), 1, anon_sym_COLON_COLON, - ACTIONS(3675), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58020] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(302), 1, - sym_declaration_list, - STATE(2224), 1, - sym_where_clause, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4023), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59298] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58040] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(4153), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(944), 1, - sym_declaration_list, - STATE(2040), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [59310] = 5, + ACTIONS(3550), 1, + anon_sym_COLON, + ACTIONS(3552), 1, + anon_sym_BANG, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58060] = 6, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, + ACTIONS(3422), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59328] = 5, + ACTIONS(768), 1, + anon_sym_RPAREN, + ACTIONS(4155), 1, + anon_sym_COMMA, + STATE(1970), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3301), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59346] = 6, + ACTIONS(3313), 1, anon_sym_LT2, - STATE(1285), 1, + ACTIONS(3321), 1, + anon_sym_COLON_COLON, + ACTIONS(3402), 1, + anon_sym_COLON, + STATE(1326), 1, sym_type_arguments, - STATE(1301), 1, - sym_parameters, + STATE(2068), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58080] = 4, - ACTIONS(3312), 1, + [59366] = 4, + ACTIONS(4127), 1, + anon_sym_as, + ACTIONS(4157), 1, anon_sym_COLON_COLON, - ACTIONS(3655), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58096] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(4125), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [59382] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4159), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(860), 1, - sym_declaration_list, - STATE(2132), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [59394] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58116] = 4, - ACTIONS(3996), 1, - anon_sym_as, - ACTIONS(4046), 1, + ACTIONS(4161), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [59406] = 4, + ACTIONS(4051), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3994), 3, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4163), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59422] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4165), 5, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COMMA, - [58132] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3871), 1, + anon_sym_EQ, + anon_sym_COMMA, + [59434] = 4, + ACTIONS(2995), 1, anon_sym_PLUS, - STATE(874), 1, - sym_declaration_list, - STATE(2125), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58152] = 4, - ACTIONS(3941), 1, + ACTIONS(3574), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4167), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59450] = 4, + ACTIONS(4057), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3311), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3977), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58168] = 5, - ACTIONS(778), 1, + ACTIONS(4163), 2, anon_sym_RPAREN, - ACTIONS(4048), 1, anon_sym_COMMA, - STATE(2011), 1, - aux_sym_parameters_repeat1, + [59466] = 5, + ACTIONS(3404), 1, + anon_sym_EQ, + ACTIONS(3802), 1, + anon_sym_COLON, + STATE(2020), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58186] = 6, - ACTIONS(4050), 1, + ACTIONS(4170), 2, + anon_sym_COMMA, + anon_sym_GT, + [59484] = 6, + ACTIONS(4172), 1, anon_sym_RPAREN, - ACTIONS(4052), 1, + ACTIONS(4174), 1, anon_sym_COLON, - ACTIONS(4054), 1, + ACTIONS(4176), 1, anon_sym_COMMA, - ACTIONS(4056), 1, + ACTIONS(4178), 1, anon_sym_PIPE, - STATE(1867), 1, + STATE(1849), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58206] = 6, - ACTIONS(3578), 1, + [59504] = 4, + ACTIONS(714), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(938), 1, - sym_declaration_list, - STATE(2078), 1, - sym_where_clause, + ACTIONS(4180), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58226] = 4, - ACTIONS(3941), 1, - anon_sym_COLON_COLON, + STATE(233), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [59520] = 4, + ACTIONS(4167), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3863), 2, + ACTIONS(2995), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3574), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [59536] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3574), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2995), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [58242] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + [59550] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4182), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(418), 1, - sym_declaration_list, - STATE(2235), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [59562] = 4, + ACTIONS(4186), 1, + anon_sym_as, + ACTIONS(4188), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58262] = 5, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - STATE(928), 1, - sym_parameters, - STATE(1276), 1, - sym_type_arguments, + ACTIONS(4184), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [59578] = 4, + ACTIONS(4127), 1, + anon_sym_as, + ACTIONS(4190), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58279] = 4, - ACTIONS(4060), 1, + ACTIONS(4125), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1693), 1, - aux_sym_tuple_pattern_repeat1, + [59594] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4058), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [58294] = 5, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - STATE(1276), 1, - sym_type_arguments, - STATE(1309), 1, - sym_parameters, + ACTIONS(4192), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [59606] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58311] = 4, - ACTIONS(3318), 1, - anon_sym_COLON_COLON, - ACTIONS(4063), 1, - anon_sym_COLON, + ACTIONS(4194), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [59618] = 5, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3674), 1, + anon_sym_LT, + STATE(1695), 1, + sym_parameters, + STATE(2266), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58326] = 5, - ACTIONS(4065), 1, + [59635] = 5, + ACTIONS(4196), 1, anon_sym_LPAREN, - ACTIONS(4067), 1, + ACTIONS(4198), 1, anon_sym_LBRACE, - ACTIONS(4069), 1, + ACTIONS(4200), 1, anon_sym_LBRACK, - STATE(46), 1, + STATE(806), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58343] = 5, - ACTIONS(778), 1, - anon_sym_RPAREN, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4048), 1, - anon_sym_COMMA, - STATE(2011), 1, - aux_sym_parameters_repeat1, + [59652] = 4, + ACTIONS(3802), 1, + anon_sym_COLON, + STATE(2038), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58360] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, + ACTIONS(4202), 2, + anon_sym_COMMA, + anon_sym_GT, + [59667] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1065), 1, + sym_line_comment, + ACTIONS(4205), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4207), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59682] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4058), 3, + ACTIONS(3301), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4209), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [58373] = 5, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(939), 1, - sym_declaration_list, - STATE(2059), 1, - sym_where_clause, + [59695] = 5, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4211), 1, + anon_sym_RPAREN, + ACTIONS(4213), 1, + anon_sym_COMMA, + STATE(1882), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58390] = 5, - ACTIONS(3402), 1, - anon_sym_PIPE, - ACTIONS(4071), 1, - anon_sym_SEMI, - ACTIONS(4073), 1, - anon_sym_COLON, - ACTIONS(4075), 1, + [59712] = 5, + ACTIONS(4029), 1, + anon_sym_COMMA, + ACTIONS(4031), 1, + anon_sym_GT, + ACTIONS(4215), 1, anon_sym_EQ, + STATE(2035), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58407] = 5, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(459), 1, - sym_declaration_list, - STATE(2167), 1, - sym_where_clause, + [59729] = 3, + ACTIONS(4217), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58424] = 5, - ACTIONS(3588), 1, + ACTIONS(4219), 3, + sym_self, + sym_super, + sym_crate, + [59742] = 5, + ACTIONS(778), 1, + anon_sym_RPAREN, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4131), 1, + anon_sym_COMMA, + STATE(2009), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59759] = 5, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3594), 1, + ACTIONS(3702), 1, anon_sym_LBRACE, - STATE(943), 1, - sym_field_declaration_list, - STATE(2231), 1, + STATE(260), 1, + sym_declaration_list, + STATE(2223), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58441] = 5, - ACTIONS(3205), 1, + [59776] = 5, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3317), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(1616), 1, + STATE(1337), 1, + sym_type_arguments, + STATE(1354), 1, sym_parameters, - STATE(2185), 1, - sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58458] = 5, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + [59793] = 5, + ACTIONS(3670), 1, + anon_sym_LBRACE, + ACTIONS(3672), 1, + anon_sym_where, + STATE(764), 1, + sym_field_declaration_list, + STATE(2153), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59810] = 5, + ACTIONS(3672), 1, anon_sym_where, - STATE(777), 1, - sym_declaration_list, - STATE(2160), 1, + ACTIONS(3999), 1, + anon_sym_LBRACE, + STATE(773), 1, + sym_enum_variant_list, + STATE(2148), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58475] = 4, - ACTIONS(3318), 1, - anon_sym_COLON_COLON, - ACTIONS(3739), 1, - anon_sym_BANG, + [59827] = 5, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LBRACE, + STATE(787), 1, + sym_declaration_list, + STATE(2140), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58490] = 5, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(1557), 1, - sym_parameters, - STATE(2043), 1, - sym_type_parameters, + [59844] = 5, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LBRACE, + STATE(803), 1, + sym_declaration_list, + STATE(2135), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58507] = 5, - ACTIONS(3157), 1, - anon_sym_LBRACE, - ACTIONS(3855), 1, - sym_identifier, - ACTIONS(3857), 1, - anon_sym_STAR, - STATE(1813), 1, - sym_use_list, + [59861] = 4, + ACTIONS(3552), 1, + anon_sym_BANG, + ACTIONS(3554), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58524] = 5, - ACTIONS(3402), 1, + ACTIONS(3422), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59876] = 5, + ACTIONS(3564), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4221), 1, anon_sym_SEMI, - ACTIONS(4079), 1, + ACTIONS(4223), 1, anon_sym_COLON, - ACTIONS(4081), 1, + ACTIONS(4225), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58541] = 5, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(405), 1, - sym_declaration_list, - STATE(2216), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58558] = 4, - ACTIONS(4083), 1, - anon_sym_COMMA, - STATE(1714), 1, - aux_sym_where_clause_repeat1, + [59893] = 4, + ACTIONS(3420), 1, + anon_sym_COLON_COLON, + ACTIONS(3550), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2804), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [58573] = 5, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(3422), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59908] = 5, + ACTIONS(3672), 1, anon_sym_where, - STATE(269), 1, + ACTIONS(3702), 1, + anon_sym_LBRACE, + STATE(334), 1, sym_declaration_list, - STATE(2153), 1, + STATE(2220), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58590] = 5, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3909), 1, - anon_sym_LBRACE, - STATE(249), 1, - sym_enum_variant_list, - STATE(2073), 1, - sym_where_clause, + [59925] = 4, + ACTIONS(3420), 1, + anon_sym_COLON_COLON, + ACTIONS(3764), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58607] = 5, - ACTIONS(4012), 1, + ACTIONS(3422), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59940] = 5, + ACTIONS(2355), 1, + anon_sym_PLUS, + ACTIONS(4227), 1, anon_sym_COMMA, - ACTIONS(4014), 1, + ACTIONS(4229), 1, anon_sym_GT, - ACTIONS(4085), 1, - anon_sym_EQ, - STATE(2009), 1, - aux_sym_type_parameters_repeat1, + STATE(2089), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58624] = 4, - ACTIONS(4089), 1, + [59957] = 5, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4227), 1, anon_sym_COMMA, - STATE(1714), 1, - aux_sym_where_clause_repeat1, + ACTIONS(4229), 1, + anon_sym_GT, + STATE(2089), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4087), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [58639] = 4, - ACTIONS(4094), 1, - anon_sym_COMMA, - STATE(1710), 1, - aux_sym_where_clause_repeat1, + [59974] = 4, + ACTIONS(4027), 1, + anon_sym_COLON_COLON, + ACTIONS(4055), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4092), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [58654] = 3, - ACTIONS(4096), 1, - anon_sym_in, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59989] = 5, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4143), 1, + anon_sym_RPAREN, + ACTIONS(4145), 1, + anon_sym_COMMA, + STATE(2082), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4098), 3, - sym_self, - sym_super, - sym_crate, - [58667] = 4, + [60006] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(986), 1, + ACTIONS(1065), 1, sym_line_comment, - ACTIONS(4100), 1, + ACTIONS(4231), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4102), 3, + ACTIONS(4233), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [58682] = 5, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4104), 1, - anon_sym_RPAREN, - ACTIONS(4106), 1, - anon_sym_COMMA, - STATE(2005), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, + [60021] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1065), 1, sym_line_comment, - [58699] = 5, - ACTIONS(3588), 1, + ACTIONS(4235), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4237), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60036] = 5, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3873), 1, + ACTIONS(3724), 1, anon_sym_LBRACE, - STATE(889), 1, - sym_enum_variant_list, - STATE(2094), 1, + STATE(869), 1, + sym_declaration_list, + STATE(2181), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58716] = 5, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4108), 1, - anon_sym_RPAREN, - ACTIONS(4110), 1, - anon_sym_COMMA, - STATE(1919), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [60053] = 5, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3702), 1, + anon_sym_LBRACE, + STATE(283), 1, + sym_declaration_list, + STATE(2184), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58733] = 4, - ACTIONS(3), 1, + [60070] = 5, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LBRACE, + STATE(922), 1, + sym_declaration_list, + STATE(2186), 1, + sym_where_clause, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(986), 1, sym_line_comment, - ACTIONS(4112), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4114), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [58748] = 4, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3384), 1, - anon_sym_COLON_COLON, + [60087] = 5, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3702), 1, + anon_sym_LBRACE, + STATE(441), 1, + sym_declaration_list, + STATE(2270), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58763] = 5, - ACTIONS(3871), 1, + [60104] = 5, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(4006), 1, + ACTIONS(4239), 1, anon_sym_RPAREN, - ACTIONS(4008), 1, + ACTIONS(4241), 1, anon_sym_COMMA, - STATE(1854), 1, - aux_sym_parameters_repeat1, + STATE(2070), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58780] = 5, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(1558), 1, - sym_parameters, - STATE(2163), 1, - sym_type_parameters, + [60121] = 5, + ACTIONS(3670), 1, + anon_sym_LBRACE, + ACTIONS(3672), 1, + anon_sym_where, + STATE(920), 1, + sym_field_declaration_list, + STATE(2137), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58797] = 5, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + [60138] = 5, + ACTIONS(3672), 1, anon_sym_where, - STATE(915), 1, + ACTIONS(3724), 1, + anon_sym_LBRACE, + STATE(936), 1, sym_declaration_list, - STATE(2090), 1, + STATE(2125), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58814] = 4, - ACTIONS(3318), 1, - anon_sym_COLON_COLON, - ACTIONS(3380), 1, + [60155] = 5, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(4243), 1, + anon_sym_SEMI, + ACTIONS(4245), 1, anon_sym_COLON, + ACTIONS(4247), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58829] = 5, - ACTIONS(3205), 1, + [60172] = 5, + ACTIONS(2458), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(1587), 1, + ACTIONS(3313), 1, + anon_sym_LT2, + STATE(966), 1, sym_parameters, - STATE(2209), 1, - sym_type_parameters, + STATE(1337), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58846] = 5, - ACTIONS(3935), 1, + [60189] = 5, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4249), 1, + anon_sym_RPAREN, + ACTIONS(4251), 1, anon_sym_COMMA, - ACTIONS(3937), 1, - anon_sym_GT, - ACTIONS(4085), 1, - anon_sym_EQ, - STATE(1892), 1, - aux_sym_type_parameters_repeat1, + STATE(1994), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58863] = 4, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(1890), 1, - sym_trait_bounds, + [60206] = 5, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(420), 1, + sym_field_declaration_list, + STATE(2267), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4116), 2, + [60223] = 5, + ACTIONS(4115), 1, anon_sym_COMMA, + ACTIONS(4117), 1, anon_sym_GT, - [58878] = 4, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(1890), 1, - sym_trait_bounds, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(2052), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4118), 2, + [60240] = 5, + ACTIONS(4174), 1, + anon_sym_COLON, + ACTIONS(4253), 1, anon_sym_COMMA, - anon_sym_GT, - [58893] = 5, - ACTIONS(4121), 1, - anon_sym_LPAREN, - ACTIONS(4123), 1, - anon_sym_LBRACE, - ACTIONS(4125), 1, - anon_sym_LBRACK, - STATE(1974), 1, - sym_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58910] = 3, + ACTIONS(4255), 1, + anon_sym_PIPE, + STATE(1904), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4127), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58923] = 5, - ACTIONS(3871), 1, + [60257] = 5, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(4129), 1, + ACTIONS(4257), 1, anon_sym_RPAREN, - ACTIONS(4131), 1, + ACTIONS(4259), 1, anon_sym_COMMA, - STATE(1911), 1, + STATE(2048), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58940] = 4, - ACTIONS(3867), 1, - anon_sym_COLON_COLON, - ACTIONS(3913), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58955] = 5, - ACTIONS(4121), 1, - anon_sym_LPAREN, - ACTIONS(4123), 1, + [60274] = 5, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(4125), 1, - anon_sym_LBRACK, - STATE(1038), 1, - sym_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58972] = 4, - ACTIONS(4133), 1, - anon_sym_DQUOTE, - STATE(1749), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4135), 2, - sym__string_content, - sym_escape_sequence, - [58987] = 5, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(1590), 1, - sym_parameters, - STATE(2118), 1, - sym_type_parameters, + STATE(1008), 1, + sym_enum_variant_list, + STATE(2143), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59004] = 4, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(4137), 1, - sym_identifier, + [60291] = 4, + ACTIONS(4263), 1, + anon_sym_COMMA, + STATE(1778), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1077), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [59019] = 5, - ACTIONS(3578), 1, + ACTIONS(4261), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3588), 1, + [60306] = 5, + ACTIONS(3672), 1, anon_sym_where, - STATE(905), 1, + ACTIONS(3724), 1, + anon_sym_LBRACE, + STATE(980), 1, sym_declaration_list, - STATE(2095), 1, + STATE(2205), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59036] = 5, - ACTIONS(772), 1, - anon_sym_RPAREN, - ACTIONS(3871), 1, + [60323] = 5, + ACTIONS(2355), 1, anon_sym_PLUS, - ACTIONS(4024), 1, + ACTIONS(4266), 1, anon_sym_COMMA, - STATE(1976), 1, - aux_sym_parameters_repeat1, + ACTIONS(4268), 1, + anon_sym_GT, + STATE(1857), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59053] = 5, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(1560), 1, - sym_parameters, - STATE(2147), 1, - sym_type_parameters, + [60340] = 5, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4266), 1, + anon_sym_COMMA, + ACTIONS(4268), 1, + anon_sym_GT, + STATE(1857), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59070] = 5, - ACTIONS(3564), 1, + [60357] = 5, + ACTIONS(4270), 1, + anon_sym_LPAREN, + ACTIONS(4272), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(312), 1, - sym_declaration_list, - STATE(2211), 1, - sym_where_clause, + ACTIONS(4274), 1, + anon_sym_LBRACK, + STATE(1070), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59087] = 5, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3873), 1, - anon_sym_LBRACE, - STATE(899), 1, - sym_enum_variant_list, - STATE(2103), 1, - sym_where_clause, + [60374] = 4, + ACTIONS(4276), 1, + anon_sym_DQUOTE, + STATE(1808), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59104] = 5, - ACTIONS(3586), 1, + ACTIONS(4278), 2, + sym__string_content, + sym_escape_sequence, + [60389] = 5, + ACTIONS(3253), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(336), 1, - sym_field_declaration_list, - STATE(2152), 1, - sym_where_clause, + ACTIONS(4280), 1, + sym_identifier, + ACTIONS(4282), 1, + anon_sym_STAR, + STATE(2012), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59121] = 4, - ACTIONS(4139), 1, - anon_sym_DQUOTE, - STATE(1788), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, + [60406] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1065), 1, sym_line_comment, - ACTIONS(4141), 2, - sym__string_content, - sym_escape_sequence, - [59136] = 4, - ACTIONS(3382), 1, + ACTIONS(4284), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4286), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60421] = 4, + ACTIONS(3552), 1, anon_sym_BANG, - ACTIONS(3550), 1, + ACTIONS(3568), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, + ACTIONS(3422), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59151] = 4, - ACTIONS(3), 1, + [60436] = 3, + ACTIONS(4288), 1, + anon_sym_in, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(986), 1, sym_line_comment, - ACTIONS(4143), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4145), 3, - anon_sym_PLUS, + ACTIONS(4290), 3, + sym_self, + sym_super, + sym_crate, + [60449] = 5, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(4292), 1, + anon_sym_SEMI, + ACTIONS(4294), 1, + anon_sym_COLON, + ACTIONS(4296), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60466] = 5, + ACTIONS(3253), 1, + anon_sym_LBRACE, + ACTIONS(4097), 1, + sym_identifier, + ACTIONS(4099), 1, anon_sym_STAR, - anon_sym_QMARK, - [59166] = 5, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4147), 1, - anon_sym_RPAREN, - ACTIONS(4149), 1, - anon_sym_COMMA, - STATE(2000), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1961), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59183] = 4, - ACTIONS(4151), 1, + [60483] = 4, + ACTIONS(4298), 1, anon_sym_DQUOTE, - STATE(1749), 1, + STATE(1791), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4153), 2, + ACTIONS(4300), 2, sym__string_content, sym_escape_sequence, - [59198] = 5, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_RPAREN, - ACTIONS(4158), 1, - anon_sym_COMMA, - STATE(1959), 1, - aux_sym_tuple_pattern_repeat1, + [60498] = 4, + ACTIONS(4302), 1, + anon_sym_DQUOTE, + STATE(1808), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59215] = 5, - ACTIONS(4160), 1, - anon_sym_LPAREN, - ACTIONS(4162), 1, - anon_sym_LBRACE, - ACTIONS(4164), 1, - anon_sym_LBRACK, - STATE(793), 1, - sym_token_tree, + ACTIONS(4278), 2, + sym__string_content, + sym_escape_sequence, + [60513] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59232] = 5, - ACTIONS(4160), 1, + ACTIONS(4304), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60526] = 5, + ACTIONS(4306), 1, anon_sym_LPAREN, - ACTIONS(4162), 1, + ACTIONS(4308), 1, anon_sym_LBRACE, - ACTIONS(4164), 1, + ACTIONS(4310), 1, anon_sym_LBRACK, - STATE(794), 1, + STATE(49), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59249] = 5, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4166), 1, - anon_sym_SEMI, - ACTIONS(4168), 1, - anon_sym_COLON, - ACTIONS(4170), 1, - anon_sym_EQ, + [60543] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59266] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(986), 1, - sym_line_comment, - ACTIONS(4172), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4174), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59281] = 5, - ACTIONS(4056), 1, + ACTIONS(4312), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, + [60556] = 5, + ACTIONS(4172), 1, + anon_sym_RPAREN, ACTIONS(4176), 1, - anon_sym_RBRACK, - ACTIONS(4178), 1, anon_sym_COMMA, - STATE(1956), 1, + ACTIONS(4178), 1, + anon_sym_PIPE, + STATE(1849), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59298] = 5, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3909), 1, - anon_sym_LBRACE, - STATE(327), 1, - sym_enum_variant_list, - STATE(2166), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59315] = 5, - ACTIONS(3588), 1, + [60573] = 5, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(3594), 1, - anon_sym_LBRACE, - STATE(892), 1, - sym_field_declaration_list, - STATE(2108), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59332] = 5, - ACTIONS(3157), 1, + ACTIONS(3702), 1, anon_sym_LBRACE, - ACTIONS(4180), 1, - sym_identifier, - ACTIONS(4182), 1, - anon_sym_STAR, - STATE(1804), 1, - sym_use_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59349] = 5, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(321), 1, + STATE(451), 1, sym_declaration_list, - STATE(2201), 1, + STATE(2157), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59366] = 5, - ACTIONS(2247), 1, - anon_sym_PLUS, - ACTIONS(4184), 1, - anon_sym_COMMA, - ACTIONS(4186), 1, - anon_sym_GT, - STATE(1872), 1, - aux_sym_type_arguments_repeat1, + [60590] = 5, + ACTIONS(4270), 1, + anon_sym_LPAREN, + ACTIONS(4272), 1, + anon_sym_LBRACE, + ACTIONS(4274), 1, + anon_sym_LBRACK, + STATE(1111), 1, + sym_token_tree, ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59383] = 5, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4184), 1, - anon_sym_COMMA, - ACTIONS(4186), 1, - anon_sym_GT, - STATE(1872), 1, - aux_sym_type_arguments_repeat1, + sym_block_comment, + sym_line_comment, + [60607] = 4, + ACTIONS(4314), 1, + anon_sym_DQUOTE, + STATE(1783), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59400] = 4, - ACTIONS(3382), 1, + ACTIONS(4316), 2, + sym__string_content, + sym_escape_sequence, + [60622] = 4, + ACTIONS(3552), 1, anon_sym_BANG, - ACTIONS(3478), 1, + ACTIONS(3640), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, + ACTIONS(3422), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59415] = 3, - ACTIONS(4188), 1, - anon_sym_COLON, + [60637] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3402), 3, + ACTIONS(4318), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [59428] = 5, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4026), 1, - anon_sym_RPAREN, - ACTIONS(4028), 1, - anon_sym_COMMA, - STATE(2022), 1, - aux_sym_parameters_repeat1, + [60650] = 4, + ACTIONS(4320), 1, + anon_sym_DQUOTE, + STATE(1821), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59445] = 5, - ACTIONS(3871), 1, + ACTIONS(4322), 2, + sym__string_content, + sym_escape_sequence, + [60665] = 3, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(4190), 1, - anon_sym_RPAREN, - ACTIONS(4192), 1, - anon_sym_COMMA, - STATE(1901), 1, - aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59462] = 5, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(836), 1, - sym_declaration_list, - STATE(2141), 1, - sym_where_clause, + ACTIONS(4324), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60678] = 4, + ACTIONS(3420), 1, + anon_sym_COLON_COLON, + ACTIONS(4326), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59479] = 4, - ACTIONS(3865), 1, + ACTIONS(3422), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60693] = 4, + ACTIONS(4025), 1, anon_sym_COLON, - ACTIONS(3867), 1, + ACTIONS(4027), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3311), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59494] = 5, - ACTIONS(4052), 1, - anon_sym_COLON, - ACTIONS(4194), 1, - anon_sym_COMMA, - ACTIONS(4196), 1, + [60708] = 5, + ACTIONS(4178), 1, anon_sym_PIPE, - STATE(1898), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4328), 1, + anon_sym_SEMI, + ACTIONS(4330), 1, + anon_sym_COLON, + ACTIONS(4332), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59511] = 3, + [60725] = 3, + ACTIONS(4334), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4198), 2, + ACTIONS(3564), 3, anon_sym_RPAREN, anon_sym_COMMA, - [59524] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + anon_sym_PIPE, + [60738] = 5, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3951), 1, + anon_sym_LBRACE, + STATE(366), 1, + sym_enum_variant_list, + STATE(2167), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4200), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59537] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [60755] = 4, + ACTIONS(4336), 1, + anon_sym_DQUOTE, + STATE(1808), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4202), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59550] = 5, - ACTIONS(3586), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(4338), 2, + sym__string_content, + sym_escape_sequence, + [60770] = 5, + ACTIONS(3672), 1, anon_sym_where, - STATE(262), 1, - sym_field_declaration_list, - STATE(2130), 1, + ACTIONS(3702), 1, + anon_sym_LBRACE, + STATE(480), 1, + sym_declaration_list, + STATE(2162), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59567] = 5, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(1276), 1, - sym_type_arguments, - STATE(1851), 1, - sym_trait_bounds, + [60787] = 5, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3674), 1, + anon_sym_LT, + STATE(1693), 1, + sym_parameters, + STATE(2229), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59584] = 5, - ACTIONS(3564), 1, + [60804] = 5, + ACTIONS(4306), 1, + anon_sym_LPAREN, + ACTIONS(4308), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(4310), 1, + anon_sym_LBRACK, + STATE(66), 1, + sym_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60821] = 5, + ACTIONS(3672), 1, anon_sym_where, - STATE(433), 1, - sym_declaration_list, - STATE(2174), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(411), 1, + sym_field_declaration_list, + STATE(2196), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59601] = 5, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4204), 1, - anon_sym_SEMI, - ACTIONS(4206), 1, - anon_sym_COLON, - ACTIONS(4208), 1, - anon_sym_EQ, + [60838] = 4, + ACTIONS(2223), 1, + anon_sym_POUND, + ACTIONS(4341), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59618] = 5, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(854), 1, - sym_declaration_list, - STATE(2136), 1, - sym_where_clause, + STATE(1090), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [60853] = 5, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4139), 1, + anon_sym_RPAREN, + ACTIONS(4141), 1, + anon_sym_COMMA, + STATE(1838), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59635] = 5, - ACTIONS(4121), 1, + [60870] = 5, + ACTIONS(3317), 1, anon_sym_LPAREN, - ACTIONS(4123), 1, + ACTIONS(3674), 1, + anon_sym_LT, + STATE(1684), 1, + sym_parameters, + STATE(2240), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60887] = 5, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3674), 1, + anon_sym_LT, + STATE(1694), 1, + sym_parameters, + STATE(2193), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60904] = 5, + ACTIONS(4343), 1, + anon_sym_LPAREN, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4125), 1, + ACTIONS(4347), 1, anon_sym_LBRACK, - STATE(1074), 1, + STATE(1385), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59652] = 5, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4210), 1, - anon_sym_COMMA, - ACTIONS(4212), 1, - anon_sym_GT, - STATE(2013), 1, - aux_sym_type_arguments_repeat1, + [60921] = 5, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3674), 1, + anon_sym_LT, + STATE(1620), 1, + sym_parameters, + STATE(2242), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59669] = 5, - ACTIONS(4214), 1, + [60938] = 5, + ACTIONS(4270), 1, anon_sym_LPAREN, - ACTIONS(4216), 1, + ACTIONS(4272), 1, anon_sym_LBRACE, - ACTIONS(4218), 1, + ACTIONS(4274), 1, anon_sym_LBRACK, - STATE(1345), 1, + STATE(1946), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59686] = 4, - ACTIONS(4220), 1, + [60955] = 5, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(4349), 1, + anon_sym_RBRACK, + ACTIONS(4351), 1, + anon_sym_COMMA, + STATE(1907), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60972] = 4, + ACTIONS(4353), 1, anon_sym_DQUOTE, - STATE(1749), 1, + STATE(1808), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(4278), 2, sym__string_content, sym_escape_sequence, - [59701] = 5, - ACTIONS(4214), 1, + [60987] = 5, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4216), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4218), 1, + ACTIONS(4347), 1, anon_sym_LBRACK, - STATE(1316), 1, + STATE(1391), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59718] = 5, - ACTIONS(2247), 1, + [61004] = 5, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(4210), 1, + ACTIONS(4355), 1, + anon_sym_RPAREN, + ACTIONS(4357), 1, anon_sym_COMMA, - ACTIONS(4212), 1, - anon_sym_GT, - STATE(2013), 1, - aux_sym_type_arguments_repeat1, + STATE(2007), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59735] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [61021] = 5, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3674), 1, + anon_sym_LT, + STATE(1623), 1, + sym_parameters, + STATE(2217), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4222), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + [61038] = 5, + ACTIONS(4178), 1, anon_sym_PIPE, - [59748] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4224), 3, + ACTIONS(4359), 1, anon_sym_RPAREN, + ACTIONS(4361), 1, anon_sym_COMMA, - anon_sym_PIPE, - [59761] = 4, - ACTIONS(4226), 1, - anon_sym_DQUOTE, - STATE(1780), 1, - aux_sym_string_literal_repeat1, + STATE(1906), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4228), 2, - sym__string_content, - sym_escape_sequence, - [59776] = 5, - ACTIONS(4050), 1, + [61055] = 5, + ACTIONS(768), 1, anon_sym_RPAREN, - ACTIONS(4054), 1, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4155), 1, anon_sym_COMMA, - ACTIONS(4056), 1, - anon_sym_PIPE, - STATE(1867), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1970), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59793] = 3, - ACTIONS(4230), 1, - anon_sym_in, + [61072] = 4, + ACTIONS(4363), 1, + anon_sym_COMMA, + STATE(1778), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4232), 3, - sym_self, - sym_super, - sym_crate, - [59806] = 4, - ACTIONS(4234), 1, - anon_sym_DQUOTE, - STATE(1749), 1, - aux_sym_string_literal_repeat1, + ACTIONS(2989), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [61087] = 4, + ACTIONS(3802), 1, + anon_sym_COLON, + STATE(2038), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4135), 2, - sym__string_content, - sym_escape_sequence, - [59821] = 4, - ACTIONS(4236), 1, - anon_sym_DQUOTE, - STATE(1736), 1, - aux_sym_string_literal_repeat1, + ACTIONS(4365), 2, + anon_sym_COMMA, + anon_sym_GT, + [61102] = 5, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3802), 1, + anon_sym_COLON, + STATE(1337), 1, + sym_type_arguments, + STATE(1879), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4238), 2, - sym__string_content, - sym_escape_sequence, - [59836] = 5, - ACTIONS(4065), 1, + [61119] = 5, + ACTIONS(4196), 1, anon_sym_LPAREN, - ACTIONS(4067), 1, + ACTIONS(4198), 1, anon_sym_LBRACE, - ACTIONS(4069), 1, + ACTIONS(4200), 1, anon_sym_LBRACK, - STATE(59), 1, + STATE(822), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59853] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [61136] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4240), 2, + ACTIONS(4367), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [59865] = 4, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(4242), 1, - anon_sym_GT, - STATE(2046), 1, - sym_lifetime, + [61149] = 4, + ACTIONS(4371), 1, + anon_sym_COMMA, + STATE(1827), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59879] = 3, - ACTIONS(4244), 1, - sym_identifier, + ACTIONS(4369), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [61164] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4246), 2, - anon_sym_default, - anon_sym_union, - [59891] = 4, - ACTIONS(628), 1, - anon_sym_RBRACK, - ACTIONS(2945), 1, + ACTIONS(3301), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4373), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2002), 1, - aux_sym_array_expression_repeat1, + [61177] = 5, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(3951), 1, + anon_sym_LBRACE, + STATE(268), 1, + sym_enum_variant_list, + STATE(2285), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59905] = 4, - ACTIONS(3173), 1, - anon_sym_RBRACE, - ACTIONS(4248), 1, + [61194] = 4, + ACTIONS(4375), 1, anon_sym_COMMA, - STATE(1934), 1, - aux_sym_use_list_repeat1, + STATE(1835), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59919] = 2, + ACTIONS(4367), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [61209] = 4, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4378), 1, + anon_sym_SEMI, + ACTIONS(4380), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4250), 3, + [61223] = 4, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(4382), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [59929] = 2, + STATE(400), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [59939] = 2, + [61237] = 4, + ACTIONS(768), 1, + anon_sym_RPAREN, + ACTIONS(4155), 1, + anon_sym_COMMA, + STATE(1968), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2696), 3, - anon_sym_LBRACE, + [61251] = 4, + ACTIONS(3394), 1, + anon_sym_COLON_COLON, + ACTIONS(3402), 1, anon_sym_COLON, - anon_sym_where, - [59949] = 2, + STATE(1879), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4252), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [61265] = 4, + ACTIONS(768), 1, + anon_sym_RPAREN, + ACTIONS(4155), 1, anon_sym_COMMA, - [59959] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2660), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [59969] = 4, - ACTIONS(4254), 1, - sym_identifier, - ACTIONS(4256), 1, - anon_sym_ref, - ACTIONS(4258), 1, - sym_mutable_specifier, + STATE(1970), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59983] = 2, + [61279] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 3, + ACTIONS(2919), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, - [59993] = 2, + [61289] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 3, + ACTIONS(2927), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, - [60003] = 2, + [61299] = 4, + ACTIONS(3396), 1, + anon_sym_COLON_COLON, + ACTIONS(3402), 1, + anon_sym_COLON, + STATE(1879), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61313] = 4, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(4384), 1, + sym_identifier, + STATE(2303), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4260), 3, + [61327] = 4, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(4386), 1, anon_sym_SEMI, + STATE(453), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61341] = 4, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(4384), 1, + sym_identifier, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61355] = 4, + ACTIONS(4388), 1, anon_sym_RBRACE, + ACTIONS(4390), 1, anon_sym_COMMA, - [60013] = 4, - ACTIONS(4262), 1, + STATE(1883), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61369] = 4, + ACTIONS(4392), 1, sym_identifier, - ACTIONS(4264), 1, - anon_sym_ref, - ACTIONS(4266), 1, - sym_mutable_specifier, + ACTIONS(4394), 1, + anon_sym_await, + ACTIONS(4396), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60027] = 4, - ACTIONS(3211), 1, + [61383] = 4, + ACTIONS(2335), 1, + anon_sym_RPAREN, + ACTIONS(4398), 1, + anon_sym_COMMA, + STATE(1835), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61397] = 4, + ACTIONS(2466), 1, anon_sym_LT2, - ACTIONS(4268), 1, + ACTIONS(4400), 1, sym_identifier, - STATE(2364), 1, + STATE(794), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60041] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4268), 1, + [61411] = 4, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4402), 1, + anon_sym_SEMI, + ACTIONS(4404), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61425] = 4, + ACTIONS(618), 1, + anon_sym_RBRACK, + ACTIONS(4406), 1, + anon_sym_COMMA, + STATE(2040), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61439] = 4, + ACTIONS(4408), 1, + anon_sym_for, + ACTIONS(4410), 1, + anon_sym_loop, + ACTIONS(4412), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61453] = 3, + ACTIONS(4414), 1, sym_identifier, - STATE(2322), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60055] = 2, + ACTIONS(4416), 2, + anon_sym_default, + anon_sym_union, + [61465] = 3, + ACTIONS(4420), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4270), 3, - anon_sym_SEMI, + ACTIONS(4418), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61477] = 4, + ACTIONS(3931), 1, anon_sym_RBRACE, + ACTIONS(4422), 1, anon_sym_COMMA, - [60065] = 2, + STATE(1976), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2716), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [60075] = 2, + [61491] = 4, + ACTIONS(880), 1, + anon_sym_GT, + ACTIONS(4424), 1, + anon_sym_COMMA, + STATE(1988), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61505] = 4, + ACTIONS(3919), 1, + anon_sym_RBRACE, + ACTIONS(4426), 1, + anon_sym_COMMA, + STATE(1976), 1, + aux_sym_struct_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61519] = 4, + ACTIONS(4428), 1, + anon_sym_RPAREN, + ACTIONS(4430), 1, + anon_sym_COMMA, + STATE(1859), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61533] = 4, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_GT, + STATE(2164), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61547] = 4, + ACTIONS(4433), 1, + anon_sym_GT, + ACTIONS(4435), 1, + anon_sym_COMMA, + STATE(1992), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4272), 3, + [61561] = 3, + ACTIONS(3941), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60085] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4274), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4437), 2, anon_sym_COMMA, - [60095] = 4, - ACTIONS(3211), 1, + anon_sym_GT, + [61573] = 3, + ACTIONS(4027), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61585] = 3, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4365), 2, + anon_sym_COMMA, + anon_sym_GT, + [61597] = 4, + ACTIONS(3313), 1, anon_sym_LT2, - ACTIONS(4276), 1, + ACTIONS(4439), 1, sym_identifier, - STATE(2322), 1, + STATE(2303), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60109] = 2, + [61611] = 4, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(4439), 1, + sym_identifier, + STATE(2302), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4278), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [60119] = 4, - ACTIONS(4280), 1, - anon_sym_for, - ACTIONS(4282), 1, - anon_sym_loop, - ACTIONS(4284), 1, - anon_sym_while, + [61625] = 4, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(3941), 1, + anon_sym_PLUS, + STATE(1078), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60133] = 4, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(4286), 1, - anon_sym_EQ, - STATE(2448), 1, - sym_type_parameters, + [61639] = 4, + ACTIONS(4365), 1, + anon_sym_GT, + ACTIONS(4441), 1, + anon_sym_COMMA, + STATE(1868), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60147] = 2, + [61653] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4288), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4444), 2, anon_sym_COMMA, - [60157] = 4, - ACTIONS(2370), 1, + anon_sym_GT, + [61665] = 4, + ACTIONS(3313), 1, anon_sym_LT2, - ACTIONS(4290), 1, + ACTIONS(4446), 1, sym_identifier, - STATE(747), 1, + STATE(2303), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60171] = 4, - ACTIONS(3211), 1, + [61679] = 4, + ACTIONS(3313), 1, anon_sym_LT2, - ACTIONS(3855), 1, + ACTIONS(4446), 1, sym_identifier, - STATE(2322), 1, + STATE(2302), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60185] = 2, + [61693] = 4, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(4448), 1, + anon_sym_SEMI, + STATE(276), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61707] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4450), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61717] = 4, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(4452), 1, + anon_sym_SEMI, + STATE(314), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4292), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [60195] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4276), 1, - sym_identifier, - STATE(2364), 1, - sym_type_arguments, + [61731] = 4, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4454), 1, + anon_sym_SEMI, + ACTIONS(4456), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60209] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3855), 1, + [61745] = 4, + ACTIONS(4458), 1, sym_identifier, - STATE(2364), 1, - sym_type_arguments, + ACTIONS(4460), 1, + anon_sym_ref, + ACTIONS(4462), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60223] = 4, - ACTIONS(4294), 1, - sym_identifier, - ACTIONS(4296), 1, - anon_sym_await, - ACTIONS(4298), 1, - sym_integer_literal, + [61759] = 4, + ACTIONS(3674), 1, + anon_sym_LT, + ACTIONS(4464), 1, + anon_sym_EQ, + STATE(2374), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60237] = 4, - ACTIONS(3871), 1, + [61773] = 4, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(4300), 1, + ACTIONS(4466), 1, anon_sym_SEMI, - ACTIONS(4302), 1, - anon_sym_RBRACK, + ACTIONS(4468), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60251] = 3, - ACTIONS(4052), 1, - anon_sym_COLON, + [61787] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4304), 2, + ACTIONS(4470), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_PIPE, - [60263] = 4, - ACTIONS(4304), 1, - anon_sym_PIPE, - ACTIONS(4306), 1, + [61797] = 4, + ACTIONS(3720), 1, + anon_sym_RBRACE, + ACTIONS(4472), 1, anon_sym_COMMA, - STATE(1825), 1, - aux_sym_closure_parameters_repeat1, + STATE(1958), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60277] = 4, - ACTIONS(279), 1, + [61811] = 4, + ACTIONS(3702), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(1006), 1, - sym_block, + ACTIONS(4474), 1, + anon_sym_SEMI, + STATE(331), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60291] = 4, - ACTIONS(3606), 1, - anon_sym_RBRACE, - ACTIONS(4309), 1, + [61825] = 4, + ACTIONS(2237), 1, + anon_sym_RPAREN, + ACTIONS(4476), 1, anon_sym_COMMA, - STATE(1944), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2010), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60305] = 3, - ACTIONS(4311), 1, - sym_identifier, + [61839] = 4, + ACTIONS(3720), 1, + anon_sym_RBRACE, + ACTIONS(4472), 1, + anon_sym_COMMA, + STATE(1950), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4313), 2, - anon_sym_default, - anon_sym_union, - [60317] = 3, - ACTIONS(4317), 1, - anon_sym_COLON, + [61853] = 3, + ACTIONS(4480), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4315), 2, + ACTIONS(4478), 2, anon_sym_RBRACE, anon_sym_COMMA, - [60329] = 4, - ACTIONS(3935), 1, + [61865] = 4, + ACTIONS(3682), 1, + anon_sym_RBRACE, + ACTIONS(4482), 1, anon_sym_COMMA, - ACTIONS(3937), 1, - anon_sym_GT, - STATE(1892), 1, - aux_sym_type_parameters_repeat1, + STATE(2015), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60343] = 3, - ACTIONS(3933), 1, + [61879] = 4, + ACTIONS(3682), 1, + anon_sym_RBRACE, + ACTIONS(4482), 1, + anon_sym_COMMA, + STATE(2016), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61893] = 3, + ACTIONS(3420), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3422), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60355] = 4, - ACTIONS(4319), 1, + [61905] = 4, + ACTIONS(3470), 1, + anon_sym_COLON_COLON, + ACTIONS(3818), 1, + anon_sym_BANG, + ACTIONS(4484), 1, sym_identifier, - ACTIONS(4321), 1, - anon_sym_ref, - ACTIONS(4323), 1, - sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60369] = 4, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(4325), 1, - anon_sym_SEMI, - STATE(2373), 1, - sym_where_clause, + [61919] = 4, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(4486), 1, + sym_identifier, + STATE(2302), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60383] = 4, - ACTIONS(3845), 1, + [61933] = 4, + ACTIONS(3702), 1, anon_sym_LBRACE, - ACTIONS(4327), 1, + ACTIONS(4488), 1, anon_sym_SEMI, - STATE(338), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60397] = 4, - ACTIONS(4329), 1, - anon_sym_for, - ACTIONS(4331), 1, - anon_sym_loop, - ACTIONS(4333), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60411] = 3, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, + STATE(485), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60423] = 4, - ACTIONS(371), 1, - anon_sym_RPAREN, - ACTIONS(2955), 1, - anon_sym_COMMA, - STATE(1965), 1, - aux_sym_arguments_repeat1, + [61947] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60437] = 4, - ACTIONS(2422), 1, + ACTIONS(2806), 3, anon_sym_LBRACE, - ACTIONS(4335), 1, - anon_sym_COLON_COLON, - STATE(1082), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60451] = 4, - ACTIONS(4337), 1, + anon_sym_COLON, + anon_sym_where, + [61957] = 4, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(4486), 1, sym_identifier, - ACTIONS(4339), 1, - anon_sym_ref, - ACTIONS(4341), 1, - sym_mutable_specifier, + STATE(2303), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60465] = 4, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(4343), 1, - anon_sym_SEMI, - STATE(2306), 1, - sym_where_clause, + [61971] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60479] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + ACTIONS(2800), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [61981] = 4, + ACTIONS(371), 1, + anon_sym_RPAREN, + ACTIONS(3059), 1, + anon_sym_COMMA, + STATE(1938), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4345), 2, + [61995] = 4, + ACTIONS(4139), 1, anon_sym_RPAREN, + ACTIONS(4141), 1, anon_sym_COMMA, - [60491] = 2, + STATE(1838), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4347), 3, - anon_sym_SEMI, + [62009] = 4, + ACTIONS(4490), 1, anon_sym_RBRACE, + ACTIONS(4492), 1, anon_sym_COMMA, - [60501] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(4349), 1, - anon_sym_move, - STATE(1071), 1, - sym_block, + STATE(1914), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60515] = 4, - ACTIONS(4351), 1, + [62023] = 3, + ACTIONS(4496), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4494), 2, anon_sym_RBRACE, - ACTIONS(4353), 1, anon_sym_COMMA, - STATE(1921), 1, - aux_sym_field_declaration_list_repeat1, + [62035] = 4, + ACTIONS(2355), 1, + anon_sym_PLUS, + ACTIONS(4498), 1, + sym_mutable_specifier, + ACTIONS(4500), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60529] = 4, - ACTIONS(3845), 1, + [62049] = 4, + ACTIONS(3973), 1, anon_sym_LBRACE, - ACTIONS(4355), 1, + ACTIONS(4502), 1, anon_sym_SEMI, - STATE(343), 1, + STATE(325), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60543] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4357), 1, - anon_sym_SEMI, - ACTIONS(4359), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60557] = 4, - ACTIONS(3588), 1, + [62063] = 4, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(4361), 1, + ACTIONS(4504), 1, anon_sym_SEMI, - STATE(2405), 1, + STATE(2435), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60571] = 3, - ACTIONS(4365), 1, - anon_sym_EQ, + [62077] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4363), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [60583] = 4, - ACTIONS(3608), 1, + ACTIONS(4506), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4367), 1, anon_sym_COMMA, - STATE(1979), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60597] = 4, - ACTIONS(3608), 1, + [62087] = 4, + ACTIONS(4508), 1, anon_sym_RBRACE, - ACTIONS(4367), 1, + ACTIONS(4510), 1, anon_sym_COMMA, - STATE(1985), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1902), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60611] = 2, + [62101] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4369), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4513), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [60621] = 2, + [62111] = 4, + ACTIONS(4253), 1, + anon_sym_COMMA, + ACTIONS(4515), 1, + anon_sym_PIPE, + STATE(1919), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4371), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [60631] = 4, - ACTIONS(3845), 1, + [62125] = 4, + ACTIONS(3973), 1, anon_sym_LBRACE, - ACTIONS(4373), 1, + ACTIONS(4517), 1, anon_sym_SEMI, - STATE(350), 1, + STATE(361), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60645] = 4, - ACTIONS(778), 1, + [62139] = 4, + ACTIONS(2339), 1, anon_sym_RPAREN, - ACTIONS(4048), 1, + ACTIONS(4519), 1, anon_sym_COMMA, - STATE(2008), 1, - aux_sym_parameters_repeat1, + STATE(1835), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60659] = 4, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4375), 1, - anon_sym_EQ_GT, - ACTIONS(4377), 1, - anon_sym_if, + [62153] = 4, + ACTIONS(2337), 1, + anon_sym_RBRACK, + ACTIONS(4521), 1, + anon_sym_COMMA, + STATE(1835), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60673] = 2, + [62167] = 4, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(4523), 1, + anon_sym_move, + STATE(1016), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4379), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [60683] = 4, - ACTIONS(778), 1, + [62181] = 4, + ACTIONS(4525), 1, anon_sym_RPAREN, - ACTIONS(4048), 1, + ACTIONS(4527), 1, anon_sym_COMMA, - STATE(2011), 1, - aux_sym_parameters_repeat1, + STATE(2026), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60697] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, + [62195] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4381), 2, - anon_sym_RBRACE, + ACTIONS(4529), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [60709] = 2, + [62205] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4383), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4531), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [60719] = 4, - ACTIONS(2370), 1, - anon_sym_LT2, - ACTIONS(4290), 1, - sym_identifier, - STATE(763), 1, - sym_type_arguments, + [62215] = 4, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4533), 1, + anon_sym_SEMI, + ACTIONS(4535), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60733] = 4, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(4385), 1, - anon_sym_SEMI, - STATE(359), 1, - sym_block, + [62229] = 3, + ACTIONS(4539), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60747] = 4, - ACTIONS(4387), 1, + ACTIONS(4537), 2, anon_sym_RBRACE, - ACTIONS(4389), 1, anon_sym_COMMA, - STATE(1795), 1, - aux_sym_use_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60761] = 2, + [62241] = 4, + ACTIONS(3740), 1, + anon_sym_RBRACE, + ACTIONS(4541), 1, + anon_sym_COMMA, + STATE(1917), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4391), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60771] = 4, - ACTIONS(3871), 1, + [62255] = 4, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(4393), 1, - anon_sym_SEMI, - ACTIONS(4395), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60785] = 2, + STATE(1015), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4397), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60795] = 2, + [62269] = 4, + ACTIONS(3945), 1, + anon_sym_LBRACE, + ACTIONS(4543), 1, + anon_sym_SEMI, + STATE(810), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4399), 3, - anon_sym_SEMI, + [62283] = 4, + ACTIONS(4545), 1, anon_sym_RBRACE, + ACTIONS(4547), 1, anon_sym_COMMA, - [60805] = 4, - ACTIONS(2235), 1, - anon_sym_RPAREN, - ACTIONS(4401), 1, - anon_sym_COMMA, - STATE(1693), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1917), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60819] = 4, - ACTIONS(3845), 1, + [62297] = 4, + ACTIONS(3945), 1, anon_sym_LBRACE, - ACTIONS(4403), 1, + ACTIONS(4550), 1, anon_sym_SEMI, - STATE(366), 1, + STATE(821), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60833] = 3, - ACTIONS(4407), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4405), 2, - anon_sym_RBRACE, + [62311] = 4, + ACTIONS(4552), 1, anon_sym_COMMA, - [60845] = 3, - ACTIONS(3318), 1, - anon_sym_COLON_COLON, + ACTIONS(4555), 1, + anon_sym_PIPE, + STATE(1919), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60857] = 4, - ACTIONS(3767), 1, - anon_sym_RBRACE, - ACTIONS(4409), 1, - anon_sym_COMMA, - STATE(2021), 1, - aux_sym_struct_pattern_repeat1, + [62325] = 4, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(4557), 1, + anon_sym_SEMI, + STATE(471), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60871] = 4, - ACTIONS(904), 1, - anon_sym_GT, - ACTIONS(4411), 1, - anon_sym_COMMA, - STATE(2032), 1, - aux_sym_type_arguments_repeat1, + [62339] = 4, + ACTIONS(714), 1, + anon_sym_LBRACE, + ACTIONS(4559), 1, + anon_sym_move, + STATE(223), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60885] = 4, - ACTIONS(4413), 1, + [62353] = 4, + ACTIONS(4561), 1, anon_sym_for, - ACTIONS(4415), 1, + ACTIONS(4563), 1, anon_sym_loop, - ACTIONS(4417), 1, + ACTIONS(4565), 1, anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60899] = 4, - ACTIONS(3779), 1, - anon_sym_RBRACE, - ACTIONS(4419), 1, - anon_sym_COMMA, - STATE(2021), 1, - aux_sym_struct_pattern_repeat1, + [62367] = 4, + ACTIONS(3945), 1, + anon_sym_LBRACE, + ACTIONS(4567), 1, + anon_sym_SEMI, + STATE(827), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60913] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [62381] = 4, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(4569), 1, + sym_identifier, + STATE(2302), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4421), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60925] = 4, - ACTIONS(644), 1, - anon_sym_LBRACE, - ACTIONS(4423), 1, - anon_sym_move, - STATE(231), 1, - sym_block, + [62395] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60939] = 4, - ACTIONS(4421), 1, + ACTIONS(4428), 2, anon_sym_RPAREN, - ACTIONS(4425), 1, anon_sym_COMMA, - STATE(1877), 1, - aux_sym_tuple_type_repeat1, + [62407] = 4, + ACTIONS(2480), 1, + anon_sym_LBRACE, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, + STATE(1048), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60953] = 4, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(4428), 1, - anon_sym_GT, - STATE(2046), 1, - sym_lifetime, + [62421] = 4, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(4573), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60967] = 4, - ACTIONS(4428), 1, - anon_sym_GT, - ACTIONS(4430), 1, - anon_sym_COMMA, - STATE(2035), 1, - aux_sym_for_lifetimes_repeat1, + [62435] = 4, + ACTIONS(3945), 1, + anon_sym_LBRACE, + ACTIONS(4575), 1, + anon_sym_SEMI, + STATE(855), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60981] = 4, - ACTIONS(3871), 1, + [62449] = 4, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(4432), 1, + ACTIONS(4577), 1, anon_sym_SEMI, - ACTIONS(4434), 1, + ACTIONS(4579), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60995] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [62463] = 3, + ACTIONS(4174), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4436), 2, + ACTIONS(4555), 2, anon_sym_COMMA, - anon_sym_GT, - [61007] = 3, - ACTIONS(3941), 1, + anon_sym_PIPE, + [62475] = 3, + ACTIONS(4051), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3311), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [61019] = 3, - ACTIONS(4085), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4116), 2, - anon_sym_COMMA, - anon_sym_GT, - [61031] = 4, - ACTIONS(3845), 1, + [62487] = 4, + ACTIONS(3945), 1, anon_sym_LBRACE, - ACTIONS(4438), 1, + ACTIONS(4581), 1, anon_sym_SEMI, - STATE(378), 1, + STATE(866), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61045] = 4, - ACTIONS(4116), 1, - anon_sym_GT, - ACTIONS(4440), 1, - anon_sym_COMMA, - STATE(1885), 1, - aux_sym_type_parameters_repeat1, + [62501] = 4, + ACTIONS(4583), 1, + anon_sym_for, + ACTIONS(4585), 1, + anon_sym_loop, + ACTIONS(4587), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61059] = 4, - ACTIONS(4443), 1, - anon_sym_RPAREN, - ACTIONS(4445), 1, - anon_sym_COMMA, - STATE(1886), 1, - aux_sym_meta_arguments_repeat1, + [62515] = 4, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(4589), 1, + anon_sym_SEMI, + STATE(363), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61073] = 4, - ACTIONS(2422), 1, + [62529] = 4, + ACTIONS(3724), 1, anon_sym_LBRACE, - ACTIONS(4448), 1, - anon_sym_COLON_COLON, - STATE(1082), 1, - sym_field_initializer_list, + ACTIONS(4591), 1, + anon_sym_SEMI, + STATE(892), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61087] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [62543] = 4, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(4593), 1, + anon_sym_SEMI, + STATE(904), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4450), 2, - anon_sym_COMMA, - anon_sym_GT, - [61099] = 2, + [62557] = 4, + ACTIONS(2466), 1, + anon_sym_LT2, + ACTIONS(4400), 1, + sym_identifier, + STATE(829), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4452), 3, + [62571] = 4, + ACTIONS(3157), 1, anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4595), 1, anon_sym_COMMA, - [61109] = 2, + STATE(1938), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4454), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [61119] = 3, - ACTIONS(3867), 1, - anon_sym_COLON_COLON, + [62585] = 4, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(4569), 1, + sym_identifier, + STATE(2303), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61131] = 4, - ACTIONS(3640), 1, - anon_sym_GT, - ACTIONS(4456), 1, - anon_sym_COMMA, - STATE(1885), 1, - aux_sym_type_parameters_repeat1, + [62599] = 3, + ACTIONS(4600), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61145] = 4, - ACTIONS(3628), 1, - anon_sym_GT, - ACTIONS(4458), 1, + ACTIONS(4598), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1885), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61159] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4460), 3, - anon_sym_EQ, + [62611] = 4, + ACTIONS(385), 1, + anon_sym_RPAREN, + ACTIONS(4602), 1, anon_sym_COMMA, - anon_sym_GT, - [61169] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4462), 1, - sym_identifier, - STATE(2364), 1, - sym_type_arguments, + STATE(1938), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61183] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [62625] = 4, + ACTIONS(3945), 1, + anon_sym_LBRACE, + ACTIONS(4604), 1, + anon_sym_SEMI, + STATE(951), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4464), 2, + [62639] = 4, + ACTIONS(4606), 1, anon_sym_RBRACE, + ACTIONS(4608), 1, anon_sym_COMMA, - [61195] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4462), 1, - sym_identifier, - STATE(2322), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61209] = 4, - ACTIONS(4194), 1, - anon_sym_COMMA, - ACTIONS(4466), 1, - anon_sym_PIPE, - STATE(1825), 1, - aux_sym_closure_parameters_repeat1, + STATE(1856), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61223] = 4, - ACTIONS(3211), 1, + [62653] = 4, + ACTIONS(3313), 1, anon_sym_LT2, - ACTIONS(3538), 1, - anon_sym_LBRACE, - STATE(1276), 1, + ACTIONS(4610), 1, + sym_identifier, + STATE(2302), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61237] = 4, - ACTIONS(3578), 1, + [62667] = 4, + ACTIONS(3724), 1, anon_sym_LBRACE, - ACTIONS(4468), 1, + ACTIONS(4612), 1, anon_sym_SEMI, - STATE(834), 1, + STATE(918), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61251] = 4, - ACTIONS(4470), 1, - anon_sym_RPAREN, - ACTIONS(4472), 1, - anon_sym_COMMA, - STATE(1997), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [62681] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61265] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + ACTIONS(4614), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [62691] = 3, + ACTIONS(4077), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4474), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61277] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4476), 1, - anon_sym_SEMI, - ACTIONS(4478), 1, - anon_sym_EQ, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62703] = 3, + ACTIONS(4616), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61291] = 3, - ACTIONS(4482), 1, - anon_sym_COLON, + ACTIONS(4618), 2, + anon_sym_default, + anon_sym_union, + [62715] = 4, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(4097), 1, + sym_identifier, + STATE(2303), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4480), 2, + [62729] = 4, + ACTIONS(4620), 1, anon_sym_RBRACE, + ACTIONS(4622), 1, anon_sym_COMMA, - [61303] = 4, - ACTIONS(4484), 1, + STATE(1950), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62743] = 3, + ACTIONS(4627), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4625), 2, anon_sym_RBRACE, - ACTIONS(4486), 1, anon_sym_COMMA, - STATE(1827), 1, - aux_sym_field_initializer_list_repeat1, + [62755] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61317] = 4, - ACTIONS(4488), 1, + ACTIONS(4629), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4490), 1, - anon_sym_GT, - STATE(1879), 1, - aux_sym_for_lifetimes_repeat1, + [62765] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61331] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4492), 1, - sym_identifier, - STATE(2364), 1, - sym_type_arguments, + ACTIONS(4631), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [62775] = 4, + ACTIONS(3945), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + anon_sym_SEMI, + STATE(970), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61345] = 4, - ACTIONS(3211), 1, + [62789] = 4, + ACTIONS(3313), 1, anon_sym_LT2, - ACTIONS(4492), 1, + ACTIONS(4097), 1, sym_identifier, - STATE(2322), 1, + STATE(2302), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61359] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, + [62803] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4494), 2, - anon_sym_RBRACE, + ACTIONS(4635), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [61371] = 4, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, - ACTIONS(3735), 1, - anon_sym_BANG, - ACTIONS(4496), 1, + [62813] = 4, + ACTIONS(2466), 1, + anon_sym_LT2, + ACTIONS(4637), 1, sym_identifier, + STATE(1282), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61385] = 4, - ACTIONS(2315), 1, - anon_sym_RPAREN, - ACTIONS(4498), 1, + [62827] = 4, + ACTIONS(3754), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, anon_sym_COMMA, - STATE(1877), 1, - aux_sym_tuple_type_repeat1, + STATE(1950), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61399] = 4, - ACTIONS(2370), 1, - anon_sym_LT2, - ACTIONS(4500), 1, - sym_identifier, - STATE(1209), 1, - sym_type_arguments, + [62841] = 4, + ACTIONS(4641), 1, + anon_sym_RBRACE, + ACTIONS(4643), 1, + anon_sym_COMMA, + STATE(2045), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61413] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4502), 1, - anon_sym_SEMI, - ACTIONS(4504), 1, - anon_sym_EQ, + [62855] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61427] = 4, - ACTIONS(4194), 1, + ACTIONS(4261), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(4506), 1, - anon_sym_PIPE, - STATE(1898), 1, - aux_sym_closure_parameters_repeat1, + [62865] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61441] = 4, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(4508), 1, + ACTIONS(4645), 3, anon_sym_SEMI, - STATE(392), 1, - sym_block, + anon_sym_RBRACE, + anon_sym_COMMA, + [62875] = 4, + ACTIONS(4266), 1, + anon_sym_COMMA, + ACTIONS(4268), 1, + anon_sym_GT, + STATE(1857), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61455] = 4, - ACTIONS(3211), 1, + [62889] = 4, + ACTIONS(2466), 1, anon_sym_LT2, - ACTIONS(4510), 1, + ACTIONS(4637), 1, sym_identifier, - STATE(2364), 1, + STATE(1251), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61469] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4510), 1, - sym_identifier, - STATE(2322), 1, - sym_type_arguments, + [62903] = 4, + ACTIONS(3945), 1, + anon_sym_LBRACE, + ACTIONS(4647), 1, + anon_sym_SEMI, + STATE(1003), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61483] = 4, - ACTIONS(2370), 1, - anon_sym_LT2, - ACTIONS(4500), 1, - sym_identifier, - STATE(1230), 1, - sym_type_arguments, + [62917] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61497] = 4, - ACTIONS(4512), 1, - anon_sym_RPAREN, - ACTIONS(4514), 1, + ACTIONS(4649), 2, anon_sym_COMMA, - STATE(1997), 1, - aux_sym_ordered_field_declaration_list_repeat1, + anon_sym_GT, + [62929] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61511] = 3, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, + ACTIONS(4373), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62941] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4516), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61523] = 4, - ACTIONS(3622), 1, + ACTIONS(4651), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4518), 1, anon_sym_COMMA, - STATE(1993), 1, - aux_sym_field_declaration_list_repeat1, + [62951] = 4, + ACTIONS(4373), 1, + anon_sym_RPAREN, + ACTIONS(4653), 1, + anon_sym_COMMA, + STATE(1968), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61537] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [62965] = 3, + ACTIONS(3171), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4127), 2, + ACTIONS(4163), 2, anon_sym_RPAREN, anon_sym_COMMA, - [61549] = 4, - ACTIONS(3622), 1, - anon_sym_RBRACE, - ACTIONS(4518), 1, + [62977] = 4, + ACTIONS(772), 1, + anon_sym_RPAREN, + ACTIONS(4656), 1, anon_sym_COMMA, - STATE(1988), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1968), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61563] = 4, - ACTIONS(3564), 1, + [62991] = 4, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(3642), 1, anon_sym_LBRACE, - ACTIONS(4520), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_declaration_list, + STATE(1337), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61577] = 4, - ACTIONS(4184), 1, - anon_sym_COMMA, - ACTIONS(4186), 1, - anon_sym_GT, - STATE(1872), 1, - aux_sym_type_arguments_repeat1, + [63005] = 4, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(4658), 1, + anon_sym_SEMI, + STATE(998), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61591] = 4, - ACTIONS(4522), 1, + [63019] = 4, + ACTIONS(4660), 1, anon_sym_RBRACE, - ACTIONS(4524), 1, + ACTIONS(4662), 1, anon_sym_COMMA, - STATE(1871), 1, - aux_sym_struct_pattern_repeat1, + STATE(1885), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61605] = 3, - ACTIONS(4528), 1, + [63033] = 3, + ACTIONS(4666), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4526), 2, + ACTIONS(4664), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61617] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4530), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61627] = 4, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(4532), 1, - anon_sym_EQ, - STATE(2389), 1, - sym_type_parameters, + [63045] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61641] = 4, - ACTIONS(4534), 1, + ACTIONS(4668), 2, anon_sym_RBRACE, - ACTIONS(4536), 1, anon_sym_COMMA, - STATE(1874), 1, + [63057] = 4, + ACTIONS(4670), 1, + anon_sym_RBRACE, + ACTIONS(4672), 1, + anon_sym_COMMA, + STATE(1976), 1, aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61655] = 4, - ACTIONS(3211), 1, + [63071] = 4, + ACTIONS(3313), 1, anon_sym_LT2, - ACTIONS(4538), 1, + ACTIONS(4675), 1, sym_identifier, - STATE(2364), 1, + STATE(2302), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61669] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4540), 1, - sym_identifier, - STATE(2322), 1, - sym_type_arguments, + [63085] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61683] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4538), 1, - sym_identifier, - STATE(2322), 1, - sym_type_arguments, + ACTIONS(4677), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [63095] = 4, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(4679), 1, + anon_sym_SEMI, + STATE(991), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61697] = 4, - ACTIONS(4542), 1, + [63109] = 4, + ACTIONS(3714), 1, anon_sym_RBRACE, - ACTIONS(4544), 1, + ACTIONS(4681), 1, anon_sym_COMMA, - STATE(1934), 1, - aux_sym_use_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61711] = 2, + STATE(2015), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4547), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61721] = 4, - ACTIONS(3211), 1, + [63123] = 4, + ACTIONS(3313), 1, anon_sym_LT2, - ACTIONS(4540), 1, + ACTIONS(4675), 1, sym_identifier, - STATE(2364), 1, + STATE(2303), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61735] = 4, - ACTIONS(4549), 1, - anon_sym_RPAREN, - ACTIONS(4551), 1, - anon_sym_COMMA, - STATE(1962), 1, - aux_sym_meta_arguments_repeat1, + [63137] = 4, + ACTIONS(3313), 1, + anon_sym_LT2, + ACTIONS(4610), 1, + sym_identifier, + STATE(2303), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61749] = 4, - ACTIONS(3871), 1, + [63151] = 4, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(4553), 1, + ACTIONS(4683), 1, anon_sym_SEMI, - ACTIONS(4555), 1, + ACTIONS(4685), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61763] = 2, + [63165] = 3, + ACTIONS(2355), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4557), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4687), 2, anon_sym_COMMA, - [61773] = 4, - ACTIONS(4012), 1, + anon_sym_GT, + [63177] = 4, + ACTIONS(4115), 1, anon_sym_COMMA, - ACTIONS(4014), 1, + ACTIONS(4117), 1, anon_sym_GT, - STATE(2009), 1, + STATE(2052), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61787] = 2, + [63191] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4559), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61797] = 4, - ACTIONS(3564), 1, + ACTIONS(2971), 3, anon_sym_LBRACE, - ACTIONS(4561), 1, - anon_sym_SEMI, - STATE(362), 1, - sym_declaration_list, + anon_sym_COLON, + anon_sym_where, + [63201] = 4, + ACTIONS(4689), 1, + anon_sym_RBRACE, + ACTIONS(4691), 1, + anon_sym_COMMA, + STATE(1858), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61811] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4563), 1, - anon_sym_as, - ACTIONS(4565), 1, + [63215] = 4, + ACTIONS(4687), 1, anon_sym_GT, + ACTIONS(4693), 1, + anon_sym_COMMA, + STATE(1988), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61825] = 4, - ACTIONS(4567), 1, - anon_sym_RBRACE, - ACTIONS(4569), 1, - anon_sym_COMMA, - STATE(1944), 1, - aux_sym_field_initializer_list_repeat1, + [63229] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61839] = 4, - ACTIONS(3845), 1, + ACTIONS(2949), 3, anon_sym_LBRACE, - ACTIONS(4572), 1, - anon_sym_SEMI, - STATE(440), 1, - sym_block, + anon_sym_COLON, + anon_sym_where, + [63239] = 4, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + ACTIONS(4696), 1, + anon_sym_GT, + STATE(2164), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61853] = 4, - ACTIONS(3851), 1, + [63253] = 4, + ACTIONS(3724), 1, anon_sym_LBRACE, - ACTIONS(4574), 1, + ACTIONS(4698), 1, anon_sym_SEMI, - STATE(736), 1, - sym_block, + STATE(968), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61867] = 4, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(4576), 1, - anon_sym_SEMI, - STATE(398), 1, - sym_block, + [63267] = 4, + ACTIONS(4700), 1, + anon_sym_COMMA, + ACTIONS(4703), 1, + anon_sym_GT, + STATE(1992), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61881] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4578), 1, - anon_sym_SEMI, - ACTIONS(4580), 1, - anon_sym_EQ, + [63281] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61895] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4582), 1, + ACTIONS(4705), 3, anon_sym_SEMI, - STATE(739), 1, - sym_block, + anon_sym_RBRACE, + anon_sym_COMMA, + [63291] = 4, + ACTIONS(2424), 1, + anon_sym_RPAREN, + ACTIONS(4707), 1, + anon_sym_COMMA, + STATE(1859), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61909] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4584), 1, + [63305] = 4, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4709), 1, anon_sym_SEMI, - STATE(743), 1, - sym_block, + ACTIONS(4711), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61923] = 4, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(4586), 1, + [63319] = 4, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4713), 1, anon_sym_SEMI, - STATE(2378), 1, - sym_where_clause, + ACTIONS(4715), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61937] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4588), 1, - anon_sym_SEMI, - STATE(750), 1, - sym_block, + [63333] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61951] = 4, - ACTIONS(3588), 1, + ACTIONS(4717), 2, + anon_sym_COMMA, + anon_sym_GT, + [63345] = 4, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(4590), 1, + ACTIONS(4719), 1, anon_sym_SEMI, - STATE(2471), 1, + STATE(2516), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61965] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4592), 1, + [63359] = 4, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(4721), 1, anon_sym_SEMI, - ACTIONS(4594), 1, - anon_sym_EQ, + STATE(981), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61979] = 4, - ACTIONS(3851), 1, + [63373] = 4, + ACTIONS(3702), 1, anon_sym_LBRACE, - ACTIONS(4596), 1, + ACTIONS(4723), 1, anon_sym_SEMI, - STATE(755), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61993] = 4, - ACTIONS(2245), 1, - anon_sym_RBRACK, - ACTIONS(4598), 1, - anon_sym_COMMA, - STATE(1693), 1, - aux_sym_tuple_pattern_repeat1, + STATE(355), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62007] = 4, - ACTIONS(3845), 1, + [63387] = 4, + ACTIONS(3724), 1, anon_sym_LBRACE, - ACTIONS(4600), 1, + ACTIONS(4725), 1, anon_sym_SEMI, - STATE(413), 1, - sym_block, + STATE(978), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62021] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(1050), 1, - sym_block, + [63401] = 4, + ACTIONS(4727), 1, + anon_sym_COMMA, + ACTIONS(4729), 1, + anon_sym_GT, + STATE(1861), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62035] = 4, - ACTIONS(2233), 1, - anon_sym_RPAREN, - ACTIONS(4602), 1, - anon_sym_COMMA, - STATE(1693), 1, - aux_sym_tuple_pattern_repeat1, + [63415] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62049] = 4, - ACTIONS(3851), 1, + ACTIONS(4687), 2, + anon_sym_COMMA, + anon_sym_GT, + [63427] = 4, + ACTIONS(3945), 1, anon_sym_LBRACE, - ACTIONS(4604), 1, + ACTIONS(4731), 1, anon_sym_SEMI, - STATE(766), 1, + STATE(963), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62063] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4606), 1, + [63441] = 4, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4733), 1, anon_sym_SEMI, - STATE(771), 1, - sym_block, + ACTIONS(4735), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62077] = 4, - ACTIONS(2959), 1, + [63455] = 4, + ACTIONS(4253), 1, + anon_sym_COMMA, + ACTIONS(4737), 1, + anon_sym_PIPE, + STATE(1904), 1, + aux_sym_closure_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63469] = 4, + ACTIONS(2233), 1, anon_sym_RPAREN, - ACTIONS(4608), 1, + ACTIONS(4739), 1, anon_sym_COMMA, - STATE(1886), 1, - aux_sym_meta_arguments_repeat1, + STATE(2010), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62091] = 2, + [63483] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4610), 3, + ACTIONS(4741), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [62101] = 4, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(4612), 1, - anon_sym_SEMI, - STATE(297), 1, - sym_block, + [63495] = 4, + ACTIONS(774), 1, + anon_sym_RPAREN, + ACTIONS(4743), 1, + anon_sym_COMMA, + STATE(1968), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62115] = 4, - ACTIONS(3029), 1, + [63509] = 4, + ACTIONS(4745), 1, anon_sym_RPAREN, - ACTIONS(4614), 1, + ACTIONS(4747), 1, anon_sym_COMMA, - STATE(1965), 1, - aux_sym_arguments_repeat1, + STATE(2010), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62129] = 2, + [63523] = 4, + ACTIONS(3694), 1, + anon_sym_RBRACE, + ACTIONS(4750), 1, + anon_sym_COMMA, + STATE(1950), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4617), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62139] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [63537] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4619), 2, + ACTIONS(4752), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [62151] = 4, - ACTIONS(3578), 1, + [63547] = 4, + ACTIONS(3724), 1, anon_sym_LBRACE, - ACTIONS(4621), 1, + ACTIONS(4754), 1, anon_sym_SEMI, - STATE(956), 1, + STATE(908), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62165] = 4, - ACTIONS(387), 1, - anon_sym_RPAREN, - ACTIONS(4623), 1, - anon_sym_COMMA, - STATE(1965), 1, - aux_sym_arguments_repeat1, + [63561] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62179] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4625), 1, - anon_sym_SEMI, - STATE(785), 1, - sym_block, + ACTIONS(4756), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63573] = 4, + ACTIONS(4758), 1, + anon_sym_RBRACE, + ACTIONS(4760), 1, + anon_sym_COMMA, + STATE(2015), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62193] = 4, - ACTIONS(3612), 1, + [63587] = 4, + ACTIONS(3676), 1, anon_sym_RBRACE, - ACTIONS(4627), 1, + ACTIONS(4763), 1, anon_sym_COMMA, - STATE(1993), 1, + STATE(2015), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62207] = 4, - ACTIONS(2247), 1, - anon_sym_PLUS, - ACTIONS(4629), 1, - sym_mutable_specifier, - ACTIONS(4631), 1, - sym_self, + [63601] = 4, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(4765), 1, + anon_sym_SEMI, + STATE(316), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62221] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4633), 1, + [63615] = 4, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(4767), 1, anon_sym_SEMI, - ACTIONS(4635), 1, - anon_sym_EQ, + STATE(303), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62235] = 2, + [63629] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4637), 3, + ACTIONS(4769), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_RBRACE, - [62245] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4639), 1, - anon_sym_SEMI, - STATE(812), 1, - sym_block, + anon_sym_COMMA, + [63639] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62259] = 4, - ACTIONS(774), 1, - anon_sym_RPAREN, - ACTIONS(4641), 1, + ACTIONS(4771), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(2008), 1, - aux_sym_parameters_repeat1, + anon_sym_GT, + [63649] = 4, + ACTIONS(3698), 1, + anon_sym_GT, + ACTIONS(4773), 1, + anon_sym_COMMA, + STATE(1868), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62273] = 4, - ACTIONS(3620), 1, - anon_sym_RBRACE, - ACTIONS(4643), 1, - anon_sym_COMMA, - STATE(1979), 1, - aux_sym_enum_variant_list_repeat2, + [63663] = 4, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(4775), 1, + anon_sym_SEMI, + STATE(2463), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62287] = 4, - ACTIONS(4006), 1, - anon_sym_RPAREN, - ACTIONS(4008), 1, - anon_sym_COMMA, - STATE(1854), 1, - aux_sym_parameters_repeat1, + [63677] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62301] = 4, - ACTIONS(4645), 1, - anon_sym_RBRACE, - ACTIONS(4647), 1, + ACTIONS(4777), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1979), 1, - aux_sym_enum_variant_list_repeat2, + [63687] = 4, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4779), 1, + anon_sym_SEMI, + ACTIONS(4781), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62315] = 4, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(4650), 1, + [63701] = 4, + ACTIONS(3945), 1, + anon_sym_LBRACE, + ACTIONS(4783), 1, anon_sym_SEMI, - STATE(2387), 1, - sym_where_clause, + STATE(763), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62329] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4652), 1, - anon_sym_SEMI, - ACTIONS(4654), 1, - anon_sym_EQ, + [63715] = 4, + ACTIONS(3047), 1, + anon_sym_RPAREN, + ACTIONS(4785), 1, + anon_sym_COMMA, + STATE(2083), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62343] = 4, - ACTIONS(3871), 1, + [63729] = 4, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(4656), 1, + ACTIONS(4787), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4789), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62357] = 4, - ACTIONS(3851), 1, + [63743] = 4, + ACTIONS(3973), 1, anon_sym_LBRACE, - ACTIONS(4660), 1, + ACTIONS(4791), 1, anon_sym_SEMI, - STATE(847), 1, + STATE(294), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62371] = 3, - ACTIONS(4664), 1, + [63757] = 4, + ACTIONS(3674), 1, + anon_sym_LT, + ACTIONS(4793), 1, anon_sym_EQ, + STATE(2493), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4662), 2, - anon_sym_RBRACE, + [63771] = 4, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(4795), 1, + anon_sym_SEMI, + STATE(2339), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63785] = 4, + ACTIONS(624), 1, + anon_sym_RBRACK, + ACTIONS(3039), 1, anon_sym_COMMA, - [62383] = 4, - ACTIONS(3634), 1, + STATE(2040), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63799] = 4, + ACTIONS(4797), 1, anon_sym_RBRACE, - ACTIONS(4666), 1, + ACTIONS(4799), 1, anon_sym_COMMA, - STATE(1979), 1, + STATE(2077), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62397] = 2, + [63813] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4668), 3, + ACTIONS(4801), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62407] = 4, - ACTIONS(4670), 1, - anon_sym_RBRACE, - ACTIONS(4672), 1, - anon_sym_COMMA, - STATE(2028), 1, - aux_sym_enum_variant_list_repeat2, + [63823] = 4, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(4803), 1, + anon_sym_SEMI, + STATE(263), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62421] = 4, - ACTIONS(3624), 1, - anon_sym_RBRACE, - ACTIONS(4674), 1, + [63837] = 4, + ACTIONS(3704), 1, + anon_sym_GT, + ACTIONS(4805), 1, anon_sym_COMMA, - STATE(1993), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1868), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62435] = 2, + [63851] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4087), 3, + ACTIONS(4807), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [62445] = 4, - ACTIONS(3614), 1, anon_sym_RBRACE, - ACTIONS(4676), 1, anon_sym_COMMA, - STATE(1971), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62459] = 4, - ACTIONS(3614), 1, - anon_sym_RBRACE, - ACTIONS(4676), 1, - anon_sym_COMMA, - STATE(1993), 1, - aux_sym_field_declaration_list_repeat1, + [63861] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62473] = 4, - ACTIONS(3871), 1, + ACTIONS(4809), 3, anon_sym_PLUS, - ACTIONS(4678), 1, - anon_sym_SEMI, - ACTIONS(4680), 1, - anon_sym_EQ, + anon_sym_STAR, + anon_sym_QMARK, + [63871] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62487] = 4, - ACTIONS(4682), 1, - anon_sym_RBRACE, - ACTIONS(4684), 1, + ACTIONS(4811), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(1993), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62501] = 4, - ACTIONS(4026), 1, + anon_sym_GT, + [63881] = 4, + ACTIONS(4143), 1, anon_sym_RPAREN, - ACTIONS(4028), 1, + ACTIONS(4145), 1, anon_sym_COMMA, - STATE(2022), 1, + STATE(2082), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62515] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [63895] = 4, + ACTIONS(3139), 1, + anon_sym_RBRACK, + ACTIONS(4813), 1, + anon_sym_COMMA, + STATE(2040), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4198), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62527] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [63909] = 4, + ACTIONS(4816), 1, + sym_identifier, + ACTIONS(4818), 1, + anon_sym_ref, + ACTIONS(4820), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4687), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62539] = 4, - ACTIONS(4689), 1, - anon_sym_RPAREN, - ACTIONS(4691), 1, - anon_sym_COMMA, - STATE(1997), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [63923] = 4, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(4822), 1, + anon_sym_SEMI, + STATE(352), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62553] = 4, - ACTIONS(3851), 1, + [63937] = 4, + ACTIONS(3945), 1, anon_sym_LBRACE, - ACTIONS(4694), 1, + ACTIONS(4824), 1, anon_sym_SEMI, - STATE(950), 1, + STATE(872), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62567] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4696), 1, + [63951] = 4, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(4826), 1, anon_sym_SEMI, - ACTIONS(4698), 1, - anon_sym_EQ, + STATE(259), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62581] = 4, - ACTIONS(4700), 1, - anon_sym_RPAREN, - ACTIONS(4702), 1, + [63965] = 4, + ACTIONS(3269), 1, + anon_sym_RBRACE, + ACTIONS(4828), 1, anon_sym_COMMA, - STATE(1997), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1902), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62595] = 4, - ACTIONS(4210), 1, + [63979] = 4, + ACTIONS(4227), 1, anon_sym_COMMA, - ACTIONS(4212), 1, + ACTIONS(4229), 1, anon_sym_GT, - STATE(2013), 1, + STATE(2089), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62609] = 4, - ACTIONS(3079), 1, - anon_sym_RBRACK, - ACTIONS(4704), 1, - anon_sym_COMMA, - STATE(2002), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62623] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4707), 1, - anon_sym_SEMI, - ACTIONS(4709), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62637] = 4, - ACTIONS(636), 1, - anon_sym_RBRACK, - ACTIONS(4711), 1, - anon_sym_COMMA, - STATE(2002), 1, - aux_sym_array_expression_repeat1, + [63993] = 4, + ACTIONS(4830), 1, + sym_identifier, + ACTIONS(4832), 1, + anon_sym_ref, + ACTIONS(4834), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62651] = 4, - ACTIONS(2321), 1, + [64007] = 4, + ACTIONS(2411), 1, anon_sym_RPAREN, - ACTIONS(4713), 1, + ACTIONS(4836), 1, anon_sym_COMMA, - STATE(1877), 1, + STATE(1859), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62665] = 4, - ACTIONS(3871), 1, + [64021] = 3, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(4715), 1, - anon_sym_SEMI, - ACTIONS(4717), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62679] = 4, - ACTIONS(3636), 1, - anon_sym_GT, - ACTIONS(4719), 1, - anon_sym_COMMA, - STATE(1885), 1, - aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62693] = 4, - ACTIONS(4198), 1, + ACTIONS(4209), 2, anon_sym_RPAREN, - ACTIONS(4721), 1, anon_sym_COMMA, - STATE(2008), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62707] = 4, - ACTIONS(3638), 1, + [64033] = 4, + ACTIONS(3734), 1, anon_sym_GT, - ACTIONS(4724), 1, + ACTIONS(4838), 1, anon_sym_COMMA, - STATE(1885), 1, + STATE(1868), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62721] = 3, - ACTIONS(2995), 1, + [64047] = 3, + ACTIONS(3171), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3977), 2, + ACTIONS(4840), 2, anon_sym_RPAREN, anon_sym_COMMA, - [62733] = 4, - ACTIONS(768), 1, - anon_sym_RPAREN, - ACTIONS(4726), 1, + [64059] = 4, + ACTIONS(3736), 1, + anon_sym_GT, + ACTIONS(4842), 1, anon_sym_COMMA, - STATE(2008), 1, - aux_sym_parameters_repeat1, + STATE(1868), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62747] = 4, - ACTIONS(3845), 1, + [64073] = 4, + ACTIONS(3973), 1, anon_sym_LBRACE, - ACTIONS(4728), 1, + ACTIONS(4844), 1, anon_sym_SEMI, - STATE(446), 1, + STATE(255), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62761] = 4, - ACTIONS(902), 1, - anon_sym_GT, - ACTIONS(4730), 1, - anon_sym_COMMA, - STATE(2032), 1, - aux_sym_type_arguments_repeat1, + [64087] = 4, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(4846), 1, + anon_sym_SEMI, + STATE(850), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62775] = 4, - ACTIONS(4732), 1, - anon_sym_RBRACE, - ACTIONS(4734), 1, - anon_sym_COMMA, - STATE(1849), 1, - aux_sym_enum_variant_list_repeat2, + [64101] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62789] = 4, - ACTIONS(3871), 1, + ACTIONS(4848), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64113] = 4, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(4736), 1, + ACTIONS(4850), 1, anon_sym_SEMI, - ACTIONS(4738), 1, + ACTIONS(4852), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62803] = 3, - ACTIONS(4742), 1, - anon_sym_COLON, + [64127] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4740), 2, + ACTIONS(4854), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62815] = 4, - ACTIONS(3298), 1, - anon_sym_COLON_COLON, - ACTIONS(3328), 1, - anon_sym_COLON, - STATE(1851), 1, - sym_trait_bounds, + [64137] = 4, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4856), 1, + anon_sym_as, + ACTIONS(4858), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62829] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4744), 1, + [64151] = 4, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4860), 1, anon_sym_SEMI, - STATE(883), 1, - sym_block, + ACTIONS(4862), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62843] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, + [64165] = 4, + ACTIONS(4864), 1, + anon_sym_RBRACE, + ACTIONS(4866), 1, + anon_sym_COMMA, + STATE(2103), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4746), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62855] = 4, - ACTIONS(772), 1, - anon_sym_RPAREN, - ACTIONS(4024), 1, - anon_sym_COMMA, - STATE(1976), 1, - aux_sym_parameters_repeat1, + [64179] = 4, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(4868), 1, + anon_sym_SEMI, + STATE(2502), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62869] = 4, - ACTIONS(4748), 1, - anon_sym_RBRACE, - ACTIONS(4750), 1, - anon_sym_COMMA, - STATE(2021), 1, - aux_sym_struct_pattern_repeat1, + [64193] = 4, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(4870), 1, + anon_sym_SEMI, + STATE(329), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62883] = 4, - ACTIONS(772), 1, - anon_sym_RPAREN, - ACTIONS(4024), 1, - anon_sym_COMMA, - STATE(2008), 1, - aux_sym_parameters_repeat1, + [64207] = 4, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(4872), 1, + anon_sym_SEMI, + STATE(414), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62897] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4753), 1, + [64221] = 4, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(4874), 1, anon_sym_SEMI, - ACTIONS(4755), 1, - anon_sym_EQ, + STATE(791), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62911] = 3, - ACTIONS(3871), 1, + [64235] = 4, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(4876), 1, + anon_sym_EQ_GT, + ACTIONS(4878), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64249] = 3, + ACTIONS(3941), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4757), 2, - anon_sym_COMMA, - anon_sym_GT, - [62923] = 4, - ACTIONS(4759), 1, - anon_sym_RBRACE, - ACTIONS(4761), 1, + ACTIONS(4880), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1991), 1, - aux_sym_field_declaration_list_repeat1, + [64261] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62937] = 4, - ACTIONS(3630), 1, - anon_sym_RBRACE, - ACTIONS(4763), 1, - anon_sym_COMMA, - STATE(1977), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4882), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [64271] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62951] = 4, - ACTIONS(3588), 1, + ACTIONS(4884), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [64281] = 4, + ACTIONS(3672), 1, anon_sym_where, - ACTIONS(4765), 1, + ACTIONS(4886), 1, anon_sym_SEMI, - STATE(2440), 1, + STATE(2494), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62965] = 4, - ACTIONS(3630), 1, - anon_sym_RBRACE, - ACTIONS(4763), 1, + [64295] = 4, + ACTIONS(2229), 1, + anon_sym_RPAREN, + ACTIONS(4888), 1, anon_sym_COMMA, - STATE(1979), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2010), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62979] = 3, - ACTIONS(2247), 1, - anon_sym_PLUS, + [64309] = 4, + ACTIONS(2480), 1, + anon_sym_LBRACE, + ACTIONS(4890), 1, + anon_sym_COLON_COLON, + STATE(1048), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4619), 2, - anon_sym_COMMA, - anon_sym_GT, - [62991] = 2, + [64323] = 4, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(4892), 1, + anon_sym_SEMI, + STATE(409), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4767), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63001] = 4, - ACTIONS(3157), 1, + [64337] = 4, + ACTIONS(3724), 1, anon_sym_LBRACE, - ACTIONS(4769), 1, + ACTIONS(4894), 1, + anon_sym_SEMI, + STATE(853), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64351] = 4, + ACTIONS(4896), 1, sym_identifier, - STATE(1866), 1, - sym_use_list, + ACTIONS(4898), 1, + anon_sym_ref, + ACTIONS(4900), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63015] = 4, - ACTIONS(4619), 1, - anon_sym_GT, - ACTIONS(4771), 1, - anon_sym_COMMA, - STATE(2032), 1, - aux_sym_type_arguments_repeat1, + [64365] = 4, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(4902), 1, + anon_sym_SEMI, + STATE(463), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63029] = 3, - ACTIONS(3871), 1, + [64379] = 3, + ACTIONS(3941), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4774), 2, + ACTIONS(4904), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [63041] = 4, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(4776), 1, - anon_sym_SEMI, - STATE(2429), 1, - sym_where_clause, + [64391] = 4, + ACTIONS(3752), 1, + anon_sym_RBRACE, + ACTIONS(4906), 1, + anon_sym_COMMA, + STATE(1950), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63055] = 4, - ACTIONS(4778), 1, + [64405] = 4, + ACTIONS(3752), 1, + anon_sym_RBRACE, + ACTIONS(4906), 1, anon_sym_COMMA, - ACTIONS(4781), 1, - anon_sym_GT, - STATE(2035), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2011), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63069] = 4, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - ACTIONS(3328), 1, - anon_sym_COLON, - STATE(1851), 1, - sym_trait_bounds, + [64419] = 4, + ACTIONS(3702), 1, + anon_sym_LBRACE, + ACTIONS(4908), 1, + anon_sym_SEMI, + STATE(279), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63083] = 3, - ACTIONS(3578), 1, + [64433] = 4, + ACTIONS(3702), 1, anon_sym_LBRACE, - STATE(788), 1, + ACTIONS(4910), 1, + anon_sym_SEMI, + STATE(292), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63094] = 3, - ACTIONS(2362), 1, - anon_sym_LPAREN, - STATE(820), 1, - sym_parameters, + [64447] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63105] = 3, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(674), 1, - sym_type_parameters, + ACTIONS(4912), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [64457] = 4, + ACTIONS(778), 1, + anon_sym_RPAREN, + ACTIONS(4131), 1, + anon_sym_COMMA, + STATE(1968), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63116] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(908), 1, - sym_declaration_list, + [64471] = 4, + ACTIONS(4914), 1, + anon_sym_RPAREN, + ACTIONS(4916), 1, + anon_sym_COMMA, + STATE(2083), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63127] = 3, - ACTIONS(3578), 1, + [64485] = 4, + ACTIONS(3973), 1, anon_sym_LBRACE, - STATE(906), 1, - sym_declaration_list, + ACTIONS(4919), 1, + anon_sym_SEMI, + STATE(396), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63138] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(441), 1, - sym_declaration_list, + [64499] = 4, + ACTIONS(778), 1, + anon_sym_RPAREN, + ACTIONS(4131), 1, + anon_sym_COMMA, + STATE(2009), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63149] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(1611), 1, - sym_parameters, + [64513] = 3, + ACTIONS(4057), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63160] = 3, - ACTIONS(3873), 1, + ACTIONS(3311), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [64525] = 4, + ACTIONS(3945), 1, anon_sym_LBRACE, - STATE(900), 1, - sym_enum_variant_list, + ACTIONS(4921), 1, + anon_sym_SEMI, + STATE(777), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63171] = 3, - ACTIONS(3594), 1, + [64539] = 4, + ACTIONS(3973), 1, anon_sym_LBRACE, - STATE(897), 1, - sym_field_declaration_list, + ACTIONS(4923), 1, + anon_sym_SEMI, + STATE(305), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64553] = 4, + ACTIONS(892), 1, + anon_sym_GT, + ACTIONS(4925), 1, + anon_sym_COMMA, + STATE(1988), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63182] = 2, + [64567] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4781), 2, + ACTIONS(4927), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_GT, - [63191] = 3, - ACTIONS(3594), 1, - anon_sym_LBRACE, - STATE(893), 1, - sym_field_declaration_list, + [64577] = 4, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4929), 1, + anon_sym_SEMI, + ACTIONS(4931), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63202] = 3, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(1851), 1, - sym_trait_bounds, + [64591] = 4, + ACTIONS(4029), 1, + anon_sym_COMMA, + ACTIONS(4031), 1, + anon_sym_GT, + STATE(2035), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63213] = 3, - ACTIONS(4783), 1, + [64605] = 4, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4933), 1, anon_sym_SEMI, - ACTIONS(4785), 1, - anon_sym_as, + ACTIONS(4935), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63224] = 3, - ACTIONS(3819), 1, - anon_sym_RBRACE, - ACTIONS(4787), 1, + [64619] = 4, + ACTIONS(3672), 1, + anon_sym_where, + ACTIONS(4937), 1, anon_sym_SEMI, + STATE(2411), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63235] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4789), 1, + [64633] = 4, + ACTIONS(3724), 1, + anon_sym_LBRACE, + ACTIONS(4939), 1, anon_sym_SEMI, + STATE(809), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63246] = 2, + [64647] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4619), 2, + ACTIONS(4941), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [63255] = 3, - ACTIONS(3564), 1, + [64657] = 4, + ACTIONS(3253), 1, anon_sym_LBRACE, - STATE(438), 1, - sym_declaration_list, + ACTIONS(4943), 1, + sym_identifier, + STATE(1952), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63266] = 3, - ACTIONS(3909), 1, + [64671] = 4, + ACTIONS(3724), 1, anon_sym_LBRACE, - STATE(363), 1, - sym_enum_variant_list, + ACTIONS(4945), 1, + anon_sym_SEMI, + STATE(833), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64685] = 4, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4947), 1, + anon_sym_SEMI, + ACTIONS(4949), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64699] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63277] = 3, - ACTIONS(4787), 1, + ACTIONS(4951), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [64709] = 4, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4953), 1, anon_sym_SEMI, - ACTIONS(4791), 1, - anon_sym_RBRACE, + ACTIONS(4955), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63288] = 2, + [64723] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4793), 2, - sym_identifier, - sym_metavariable, - [63297] = 3, - ACTIONS(4787), 1, - anon_sym_SEMI, - ACTIONS(4795), 1, + ACTIONS(4957), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64735] = 4, + ACTIONS(3708), 1, anon_sym_RBRACE, + ACTIONS(4959), 1, + anon_sym_COMMA, + STATE(2015), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63308] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(916), 1, - sym_declaration_list, + [64749] = 4, + ACTIONS(3708), 1, + anon_sym_RBRACE, + ACTIONS(4959), 1, + anon_sym_COMMA, + STATE(1980), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63319] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(917), 1, - sym_declaration_list, + [64763] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63330] = 3, - ACTIONS(3594), 1, + ACTIONS(4961), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64775] = 3, + ACTIONS(3680), 1, anon_sym_LBRACE, - STATE(918), 1, + STATE(410), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63341] = 3, - ACTIONS(3775), 1, - anon_sym_COLON, - ACTIONS(3871), 1, - anon_sym_PLUS, + [64786] = 3, + ACTIONS(3702), 1, + anon_sym_LBRACE, + STATE(481), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63352] = 3, - ACTIONS(4797), 1, - sym_identifier, - ACTIONS(4799), 1, - sym_mutable_specifier, + [64797] = 3, + ACTIONS(3724), 1, + anon_sym_LBRACE, + STATE(789), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63363] = 3, - ACTIONS(2854), 1, - anon_sym_COLON, + [64808] = 3, ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63374] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(51), 1, - sym_block, + anon_sym_COLON_COLON, + ACTIONS(4963), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63385] = 3, - ACTIONS(3831), 1, + [64819] = 3, + ACTIONS(3905), 1, anon_sym_COLON_COLON, - ACTIONS(4801), 1, + ACTIONS(4963), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63396] = 2, + [64830] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4748), 2, - anon_sym_RBRACE, + ACTIONS(4914), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [63405] = 3, - ACTIONS(3821), 1, + [64839] = 3, + ACTIONS(3861), 1, anon_sym_COLON_COLON, - ACTIONS(4801), 1, + ACTIONS(4963), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63416] = 3, - ACTIONS(3753), 1, - anon_sym_COLON_COLON, - ACTIONS(4801), 1, - anon_sym_RPAREN, + [64850] = 3, + ACTIONS(3999), 1, + anon_sym_LBRACE, + STATE(778), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63427] = 3, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, - ACTIONS(4803), 1, - anon_sym_RPAREN, + [64861] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63438] = 3, - ACTIONS(4254), 1, - sym_identifier, - ACTIONS(4258), 1, - sym_mutable_specifier, + ACTIONS(4965), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64870] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63449] = 3, - ACTIONS(2370), 1, - anon_sym_LT2, - STATE(997), 1, - sym_type_arguments, + ACTIONS(4967), 2, + sym_identifier, + sym_metavariable, + [64879] = 3, + ACTIONS(3317), 1, + anon_sym_LPAREN, + STATE(1359), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63460] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4805), 1, - anon_sym_EQ, + [64890] = 3, + ACTIONS(3670), 1, + anon_sym_LBRACE, + STATE(771), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63471] = 3, - ACTIONS(3909), 1, + [64901] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(289), 1, - sym_enum_variant_list, + STATE(43), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63482] = 3, - ACTIONS(2362), 1, - anon_sym_LPAREN, - STATE(932), 1, - sym_parameters, + [64912] = 3, + ACTIONS(3670), 1, + anon_sym_LBRACE, + STATE(765), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63493] = 2, + [64923] = 3, + ACTIONS(4969), 1, + sym_identifier, + ACTIONS(4971), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3977), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63502] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(934), 1, - sym_declaration_list, + [64934] = 3, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(2164), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63513] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4807), 1, - anon_sym_in, + [64945] = 3, + ACTIONS(4973), 1, + anon_sym_SEMI, + ACTIONS(4975), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63524] = 3, - ACTIONS(3578), 1, + [64956] = 3, + ACTIONS(3670), 1, anon_sym_LBRACE, - STATE(876), 1, - sym_declaration_list, + STATE(814), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63535] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4809), 1, - anon_sym_EQ, + [64967] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63546] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4811), 1, - anon_sym_EQ, + ACTIONS(4209), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64976] = 3, + ACTIONS(3724), 1, + anon_sym_LBRACE, + STATE(808), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63557] = 3, - ACTIONS(3578), 1, + [64987] = 3, + ACTIONS(3724), 1, anon_sym_LBRACE, - STATE(869), 1, + STATE(807), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63568] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4813), 1, - anon_sym_in, + [64998] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63579] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4815), 1, - anon_sym_EQ, + ACTIONS(4977), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65007] = 3, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(4981), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63590] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4817), 1, - anon_sym_in, + [65018] = 3, + ACTIONS(4896), 1, + sym_identifier, + ACTIONS(4900), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63601] = 2, + [65029] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(4983), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4682), 2, + [65040] = 3, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(4985), 1, anon_sym_RBRACE, - anon_sym_COMMA, - [63610] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4198), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63619] = 2, + [65051] = 3, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(846), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4819), 2, - sym_identifier, - sym_metavariable, - [63628] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4821), 1, - anon_sym_EQ, + [65062] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(4987), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63639] = 3, - ACTIONS(2728), 1, - anon_sym_COLON, - ACTIONS(3871), 1, - anon_sym_PLUS, + [65073] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(4989), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63650] = 3, - ACTIONS(3578), 1, + [65084] = 3, + ACTIONS(3724), 1, anon_sym_LBRACE, - STATE(863), 1, + STATE(840), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63661] = 3, - ACTIONS(3871), 1, + [65095] = 3, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(4823), 1, + ACTIONS(4991), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63672] = 3, - ACTIONS(2724), 1, - anon_sym_COLON, - ACTIONS(3871), 1, - anon_sym_PLUS, + [65106] = 3, + ACTIONS(3670), 1, + anon_sym_LBRACE, + STATE(796), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63683] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(859), 1, - sym_declaration_list, + [65117] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(4993), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63694] = 3, - ACTIONS(3873), 1, - anon_sym_LBRACE, - STATE(734), 1, - sym_enum_variant_list, + [65128] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(4995), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63705] = 3, - ACTIONS(3578), 1, + [65139] = 3, + ACTIONS(3724), 1, anon_sym_LBRACE, - STATE(856), 1, + STATE(860), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63716] = 3, - ACTIONS(3578), 1, + [65150] = 3, + ACTIONS(3724), 1, anon_sym_LBRACE, - STATE(855), 1, + STATE(868), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63727] = 3, - ACTIONS(4056), 1, + [65161] = 3, + ACTIONS(85), 1, anon_sym_PIPE, - ACTIONS(4825), 1, - anon_sym_EQ, + STATE(85), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63738] = 3, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1906), 1, - sym_lifetime, + [65172] = 3, + ACTIONS(3999), 1, + anon_sym_LBRACE, + STATE(884), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63749] = 3, - ACTIONS(4056), 1, + [65183] = 3, + ACTIONS(4178), 1, anon_sym_PIPE, - ACTIONS(4827), 1, - anon_sym_EQ, + ACTIONS(4997), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63760] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4829), 1, - anon_sym_GT, + [65194] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(4999), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63771] = 3, - ACTIONS(3805), 1, - anon_sym_RPAREN, - ACTIONS(4787), 1, - anon_sym_SEMI, + [65205] = 3, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(249), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63782] = 2, + [65216] = 3, + ACTIONS(3893), 1, + anon_sym_RBRACE, + ACTIONS(4979), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4304), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [63791] = 3, - ACTIONS(3873), 1, + [65227] = 3, + ACTIONS(3999), 1, anon_sym_LBRACE, - STATE(844), 1, + STATE(890), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63802] = 2, + [65238] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(5001), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4831), 2, - sym_identifier, - sym_metavariable, - [63811] = 3, - ACTIONS(3564), 1, + [65249] = 3, + ACTIONS(3702), 1, anon_sym_LBRACE, - STATE(421), 1, + STATE(284), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63822] = 3, - ACTIONS(3594), 1, + [65260] = 3, + ACTIONS(3670), 1, anon_sym_LBRACE, - STATE(841), 1, + STATE(899), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63833] = 3, - ACTIONS(3871), 1, + [65271] = 3, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(4833), 1, + ACTIONS(5003), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63844] = 3, - ACTIONS(3594), 1, + [65282] = 3, + ACTIONS(3670), 1, anon_sym_LBRACE, - STATE(839), 1, + STATE(909), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63855] = 3, - ACTIONS(3578), 1, + [65293] = 3, + ACTIONS(3724), 1, anon_sym_LBRACE, - STATE(838), 1, + STATE(915), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63866] = 2, + [65304] = 3, + ACTIONS(3921), 1, + anon_sym_RBRACE, + ACTIONS(4979), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4835), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63875] = 3, - ACTIONS(3801), 1, - anon_sym_RBRACE, - ACTIONS(4787), 1, - anon_sym_SEMI, + [65315] = 3, + ACTIONS(3702), 1, + anon_sym_LBRACE, + STATE(445), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63886] = 2, + [65326] = 3, + ACTIONS(3702), 1, + anon_sym_LBRACE, + STATE(285), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4645), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63895] = 3, - ACTIONS(2642), 1, - anon_sym_COLON, - ACTIONS(3871), 1, + [65337] = 3, + ACTIONS(3941), 1, anon_sym_PLUS, + ACTIONS(5005), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63906] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4837), 1, - anon_sym_in, + [65348] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63917] = 3, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_BANG, + ACTIONS(5007), 2, + sym_identifier, + sym_metavariable, + [65357] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(5009), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63928] = 2, + [65368] = 3, + ACTIONS(279), 1, + anon_sym_LBRACE, + STATE(1106), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4843), 2, - sym_identifier, - sym_metavariable, - [63937] = 3, - ACTIONS(3795), 1, - anon_sym_RBRACE, - ACTIONS(4787), 1, - anon_sym_SEMI, + [65379] = 3, + ACTIONS(3702), 1, + anon_sym_LBRACE, + STATE(302), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63948] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(1568), 1, - sym_parameters, + [65390] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63959] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(1311), 1, - sym_parameters, + ACTIONS(4758), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65399] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63970] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(298), 1, - sym_declaration_list, + ACTIONS(4703), 2, + anon_sym_COMMA, + anon_sym_GT, + [65408] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63981] = 3, - ACTIONS(3785), 1, - anon_sym_RBRACE, - ACTIONS(4787), 1, + ACTIONS(4687), 2, + anon_sym_COMMA, + anon_sym_GT, + [65417] = 3, + ACTIONS(5011), 1, anon_sym_SEMI, + ACTIONS(5013), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63992] = 3, - ACTIONS(3564), 1, + [65428] = 3, + ACTIONS(3951), 1, anon_sym_LBRACE, - STATE(317), 1, - sym_declaration_list, + STATE(250), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64003] = 3, - ACTIONS(3564), 1, + [65439] = 3, + ACTIONS(3670), 1, anon_sym_LBRACE, - STATE(417), 1, - sym_declaration_list, + STATE(924), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64014] = 3, - ACTIONS(4337), 1, - sym_identifier, - ACTIONS(4341), 1, - sym_mutable_specifier, + [65450] = 3, + ACTIONS(2219), 1, + anon_sym_SQUOTE, + STATE(2002), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64025] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(806), 1, - sym_declaration_list, + [65461] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64036] = 3, - ACTIONS(3578), 1, + ACTIONS(4670), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65470] = 3, + ACTIONS(3724), 1, anon_sym_LBRACE, - STATE(805), 1, + STATE(938), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64047] = 3, - ACTIONS(3564), 1, + [65481] = 3, + ACTIONS(3670), 1, anon_sym_LBRACE, - STATE(316), 1, - sym_declaration_list, + STATE(949), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64058] = 3, - ACTIONS(3909), 1, - anon_sym_LBRACE, - STATE(326), 1, - sym_enum_variant_list, + [65492] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(5015), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64069] = 3, - ACTIONS(3586), 1, - anon_sym_LBRACE, - STATE(329), 1, - sym_field_declaration_list, + [65503] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64080] = 3, - ACTIONS(3586), 1, - anon_sym_LBRACE, - STATE(314), 1, - sym_field_declaration_list, + ACTIONS(4163), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65512] = 3, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(984), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64091] = 3, - ACTIONS(279), 1, + [65523] = 3, + ACTIONS(3680), 1, anon_sym_LBRACE, - STATE(1032), 1, - sym_block, + STATE(423), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64102] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(792), 1, - sym_declaration_list, + [65534] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64113] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4845), 1, - anon_sym_EQ, + ACTIONS(5017), 2, + sym_identifier, + sym_metavariable, + [65543] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64124] = 3, - ACTIONS(4052), 1, + ACTIONS(4373), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65552] = 3, + ACTIONS(3909), 1, anon_sym_COLON, - ACTIONS(4056), 1, - anon_sym_PIPE, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64135] = 3, - ACTIONS(4847), 1, - anon_sym_LBRACK, - ACTIONS(4849), 1, - anon_sym_BANG, + [65563] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64146] = 3, - ACTIONS(3578), 1, + ACTIONS(4620), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65572] = 3, + ACTIONS(3724), 1, anon_sym_LBRACE, - STATE(787), 1, + STATE(960), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64157] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4851), 1, - anon_sym_SEMI, + [65583] = 3, + ACTIONS(3999), 1, + anon_sym_LBRACE, + STATE(1007), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64168] = 3, - ACTIONS(3759), 1, - anon_sym_RPAREN, - ACTIONS(4787), 1, - anon_sym_SEMI, + [65594] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(5019), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64179] = 3, - ACTIONS(3586), 1, + [65605] = 3, + ACTIONS(3702), 1, anon_sym_LBRACE, - STATE(335), 1, - sym_field_declaration_list, + STATE(322), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64190] = 3, - ACTIONS(3871), 1, + [65616] = 3, + ACTIONS(3941), 1, anon_sym_PLUS, - ACTIONS(4853), 1, + ACTIONS(5021), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64201] = 3, - ACTIONS(3578), 1, + [65627] = 3, + ACTIONS(3724), 1, anon_sym_LBRACE, - STATE(779), 1, + STATE(987), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64212] = 3, - ACTIONS(3578), 1, + [65638] = 3, + ACTIONS(3724), 1, anon_sym_LBRACE, - STATE(778), 1, + STATE(983), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64223] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(86), 1, - sym_closure_parameters, + [65649] = 3, + ACTIONS(5023), 1, + anon_sym_LBRACK, + ACTIONS(5025), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64234] = 3, - ACTIONS(4855), 1, - anon_sym_SEMI, - ACTIONS(4857), 1, - anon_sym_as, + [65660] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64245] = 3, - ACTIONS(4859), 1, - anon_sym_SEMI, - ACTIONS(4861), 1, - anon_sym_as, + ACTIONS(5027), 2, + sym_identifier, + sym_metavariable, + [65669] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(5029), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64256] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(311), 1, - sym_declaration_list, + [65680] = 3, + ACTIONS(5031), 1, + anon_sym_LBRACK, + ACTIONS(5033), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64267] = 3, - ACTIONS(3205), 1, + [65691] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(5035), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65702] = 3, + ACTIONS(3317), 1, anon_sym_LPAREN, - STATE(1581), 1, + STATE(1641), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64278] = 3, - ACTIONS(4056), 1, + [65713] = 3, + ACTIONS(85), 1, anon_sym_PIPE, - ACTIONS(4863), 1, - anon_sym_in, + STATE(91), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64289] = 3, - ACTIONS(3564), 1, + [65724] = 3, + ACTIONS(3702), 1, anon_sym_LBRACE, - STATE(455), 1, + STATE(454), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64300] = 3, - ACTIONS(15), 1, + [65735] = 3, + ACTIONS(3680), 1, anon_sym_LBRACE, - STATE(65), 1, - sym_block, + STATE(455), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64311] = 3, - ACTIONS(3594), 1, - anon_sym_LBRACE, - STATE(942), 1, - sym_field_declaration_list, + [65746] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(5037), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64322] = 3, - ACTIONS(3586), 1, + [65757] = 3, + ACTIONS(3680), 1, anon_sym_LBRACE, - STATE(453), 1, + STATE(458), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64333] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(310), 1, - sym_declaration_list, + [65768] = 3, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(854), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64344] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(760), 1, - sym_declaration_list, + [65779] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64355] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(759), 1, - sym_declaration_list, + ACTIONS(4545), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65788] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64366] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4865), 1, - anon_sym_SEMI, + ACTIONS(5039), 2, + anon_sym_const, + sym_mutable_specifier, + [65797] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(5041), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64377] = 3, - ACTIONS(3578), 1, + [65808] = 3, + ACTIONS(2480), 1, anon_sym_LBRACE, - STATE(937), 1, - sym_declaration_list, + STATE(1048), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64388] = 3, - ACTIONS(3586), 1, + [65819] = 3, + ACTIONS(5043), 1, + anon_sym_LPAREN, + ACTIONS(5045), 1, anon_sym_LBRACE, - STATE(451), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64399] = 3, - ACTIONS(4867), 1, - anon_sym_LT, - STATE(609), 1, - sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64410] = 3, - ACTIONS(3578), 1, + [65830] = 3, + ACTIONS(3724), 1, anon_sym_LBRACE, - STATE(752), 1, + STATE(863), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64421] = 3, - ACTIONS(3594), 1, + [65841] = 3, + ACTIONS(5047), 1, + anon_sym_LPAREN, + ACTIONS(5049), 1, anon_sym_LBRACE, - STATE(933), 1, - sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64432] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4869), 1, - anon_sym_SEMI, + [65852] = 3, + ACTIONS(279), 1, + anon_sym_LBRACE, + STATE(1108), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64443] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(1566), 1, - sym_parameters, + [65863] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64454] = 3, - ACTIONS(3586), 1, + ACTIONS(4508), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65872] = 3, + ACTIONS(279), 1, anon_sym_LBRACE, - STATE(309), 1, - sym_field_declaration_list, + STATE(1023), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64465] = 3, - ACTIONS(2422), 1, + [65883] = 3, + ACTIONS(279), 1, anon_sym_LBRACE, - STATE(1082), 1, - sym_field_initializer_list, + STATE(1049), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64476] = 3, - ACTIONS(3909), 1, + [65894] = 3, + ACTIONS(714), 1, anon_sym_LBRACE, - STATE(444), 1, - sym_enum_variant_list, + STATE(220), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64487] = 3, - ACTIONS(3564), 1, + [65905] = 3, + ACTIONS(870), 1, anon_sym_LBRACE, - STATE(408), 1, - sym_declaration_list, + STATE(1454), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64498] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(406), 1, - sym_declaration_list, + [65916] = 3, + ACTIONS(3470), 1, + anon_sym_COLON_COLON, + ACTIONS(5051), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64509] = 3, - ACTIONS(4787), 1, - anon_sym_SEMI, - ACTIONS(4871), 1, - anon_sym_RPAREN, + [65927] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64520] = 3, - ACTIONS(3578), 1, + [65938] = 3, + ACTIONS(279), 1, anon_sym_LBRACE, - STATE(924), 1, - sym_declaration_list, + STATE(1045), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64531] = 3, - ACTIONS(644), 1, + [65949] = 3, + ACTIONS(714), 1, anon_sym_LBRACE, - STATE(229), 1, + STATE(222), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64542] = 3, - ACTIONS(4787), 1, - anon_sym_SEMI, - ACTIONS(4873), 1, - anon_sym_RBRACE, + [65960] = 3, + ACTIONS(3317), 1, + anon_sym_LPAREN, + STATE(1619), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64553] = 3, - ACTIONS(644), 1, + [65971] = 3, + ACTIONS(714), 1, anon_sym_LBRACE, - STATE(235), 1, + STATE(216), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64564] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(415), 1, - sym_declaration_list, + [65982] = 3, + ACTIONS(5053), 1, + anon_sym_SEMI, + ACTIONS(5055), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64575] = 3, - ACTIONS(2362), 1, - anon_sym_LPAREN, - STATE(922), 1, - sym_parameters, + [65993] = 3, + ACTIONS(3702), 1, + anon_sym_LBRACE, + STATE(482), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64586] = 3, - ACTIONS(644), 1, + [66004] = 3, + ACTIONS(714), 1, anon_sym_LBRACE, - STATE(226), 1, + STATE(217), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64597] = 2, + [66015] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(5057), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4567), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64606] = 3, - ACTIONS(4787), 1, - anon_sym_SEMI, - ACTIONS(4875), 1, - anon_sym_RPAREN, + [66026] = 3, + ACTIONS(3702), 1, + anon_sym_LBRACE, + STATE(435), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64617] = 3, - ACTIONS(4787), 1, - anon_sym_SEMI, - ACTIONS(4877), 1, - anon_sym_RPAREN, + [66037] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64628] = 3, - ACTIONS(4787), 1, + ACTIONS(5059), 2, + sym_float_literal, + sym_integer_literal, + [66046] = 3, + ACTIONS(4979), 1, anon_sym_SEMI, - ACTIONS(4879), 1, + ACTIONS(5061), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64639] = 3, - ACTIONS(4787), 1, + [66057] = 3, + ACTIONS(4979), 1, anon_sym_SEMI, - ACTIONS(4881), 1, - anon_sym_RBRACE, + ACTIONS(5063), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64650] = 3, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4885), 1, - anon_sym_LBRACE, + [66068] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64661] = 2, + ACTIONS(4365), 2, + anon_sym_COMMA, + anon_sym_GT, + [66077] = 3, + ACTIONS(3447), 1, + anon_sym_COLON_COLON, + ACTIONS(5065), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4887), 2, - sym_identifier, - sym_metavariable, - [64670] = 3, - ACTIONS(4889), 1, + [66088] = 3, + ACTIONS(3317), 1, anon_sym_LPAREN, - ACTIONS(4891), 1, - anon_sym_LBRACE, + STATE(1636), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64681] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(1584), 1, - sym_parameters, + [66099] = 3, + ACTIONS(5067), 1, + sym_identifier, + ACTIONS(5069), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64692] = 2, + [66110] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2157), 2, + ACTIONS(4023), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [64701] = 3, - ACTIONS(279), 1, - anon_sym_LBRACE, - STATE(1072), 1, - sym_block, + [66119] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(5071), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64712] = 2, + [66130] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4542), 2, + ACTIONS(5073), 2, + anon_sym_const, + sym_mutable_specifier, + [66139] = 3, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5075), 1, anon_sym_RBRACE, - anon_sym_COMMA, - [64721] = 3, - ACTIONS(279), 1, - anon_sym_LBRACE, - STATE(1084), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64732] = 3, - ACTIONS(3586), 1, - anon_sym_LBRACE, - STATE(279), 1, - sym_field_declaration_list, + [66150] = 3, + ACTIONS(2874), 1, + anon_sym_COLON, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64743] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(270), 1, - sym_declaration_list, + [66161] = 3, + ACTIONS(3317), 1, + anon_sym_LPAREN, + STATE(1362), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64754] = 2, + [66172] = 3, + ACTIONS(3396), 1, + anon_sym_COLON_COLON, + ACTIONS(3552), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4893), 2, - sym_identifier, - sym_metavariable, - [64763] = 3, - ACTIONS(3831), 1, - anon_sym_COLON_COLON, - ACTIONS(4895), 1, + [66183] = 3, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5077), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64774] = 3, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(4897), 1, - anon_sym_COLON_COLON, + [66194] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64785] = 3, - ACTIONS(3821), 1, - anon_sym_COLON_COLON, - ACTIONS(4895), 1, - anon_sym_RPAREN, + ACTIONS(5079), 2, + sym_identifier, + sym_metavariable, + [66203] = 3, + ACTIONS(3317), 1, + anon_sym_LPAREN, + STATE(1668), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64796] = 3, - ACTIONS(644), 1, + [66214] = 3, + ACTIONS(714), 1, anon_sym_LBRACE, - STATE(213), 1, + STATE(228), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64807] = 3, - ACTIONS(3753), 1, - anon_sym_COLON_COLON, - ACTIONS(4895), 1, - anon_sym_RPAREN, + [66225] = 3, + ACTIONS(3317), 1, + anon_sym_LPAREN, + STATE(1677), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64818] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(430), 1, - sym_declaration_list, + [66236] = 3, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5081), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64829] = 3, - ACTIONS(4899), 1, - sym_identifier, - ACTIONS(4901), 1, - sym_mutable_specifier, + [66247] = 3, + ACTIONS(3951), 1, + anon_sym_LBRACE, + STATE(269), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64840] = 3, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, - ACTIONS(4903), 1, - anon_sym_RPAREN, + [66258] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(70), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64851] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(427), 1, - sym_declaration_list, + [66269] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(5083), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64862] = 3, - ACTIONS(3781), 1, - anon_sym_RPAREN, - ACTIONS(4787), 1, - anon_sym_SEMI, + [66280] = 3, + ACTIONS(2730), 1, + anon_sym_COLON, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64873] = 3, - ACTIONS(3586), 1, - anon_sym_LBRACE, - STATE(263), 1, - sym_field_declaration_list, + [66291] = 3, + ACTIONS(5085), 1, + anon_sym_SEMI, + ACTIONS(5087), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64884] = 3, - ACTIONS(3773), 1, + [66302] = 3, + ACTIONS(3869), 1, anon_sym_RPAREN, - ACTIONS(4787), 1, + ACTIONS(4979), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64895] = 3, - ACTIONS(3873), 1, - anon_sym_LBRACE, - STATE(879), 1, - sym_enum_variant_list, + [66313] = 3, + ACTIONS(2726), 1, + anon_sym_COLON, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64906] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(425), 1, - sym_declaration_list, + [66324] = 3, + ACTIONS(3929), 1, + anon_sym_RPAREN, + ACTIONS(4979), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64917] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(66), 1, - sym_block, + [66335] = 3, + ACTIONS(3877), 1, + anon_sym_RPAREN, + ACTIONS(4979), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64928] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(1295), 1, - sym_parameters, + [66346] = 3, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(384), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64939] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(1577), 1, - sym_parameters, + [66357] = 3, + ACTIONS(3319), 1, + anon_sym_BANG, + ACTIONS(5089), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64950] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4905), 1, + [66368] = 3, + ACTIONS(3935), 1, + anon_sym_RBRACE, + ACTIONS(4979), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64961] = 3, - ACTIONS(3564), 1, + [66379] = 3, + ACTIONS(3951), 1, anon_sym_LBRACE, - STATE(416), 1, - sym_declaration_list, + STATE(365), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64972] = 3, - ACTIONS(279), 1, - anon_sym_LBRACE, - STATE(1085), 1, - sym_block, + [66390] = 3, + ACTIONS(3925), 1, + anon_sym_RPAREN, + ACTIONS(4979), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64983] = 3, - ACTIONS(4907), 1, - sym_identifier, - ACTIONS(4909), 1, - sym_mutable_specifier, + [66401] = 3, + ACTIONS(2466), 1, + anon_sym_LT2, + STATE(1056), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64994] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(83), 1, - sym_closure_parameters, + [66412] = 3, + ACTIONS(3849), 1, + anon_sym_RBRACE, + ACTIONS(4979), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65005] = 2, + [66423] = 3, + ACTIONS(2961), 1, + anon_sym_COLON, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4911), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65014] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(372), 1, - sym_declaration_list, + [66434] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65025] = 3, - ACTIONS(4056), 1, + ACTIONS(4555), 2, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(4913), 1, - anon_sym_EQ, + [66443] = 3, + ACTIONS(3464), 1, + anon_sym_COLON_COLON, + ACTIONS(5065), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65036] = 2, + [66454] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(5091), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4127), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65045] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4915), 1, - anon_sym_in, + [66465] = 3, + ACTIONS(4458), 1, + sym_identifier, + ACTIONS(4462), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65056] = 3, - ACTIONS(3564), 1, + [66476] = 3, + ACTIONS(3702), 1, anon_sym_LBRACE, - STATE(369), 1, + STATE(333), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65067] = 2, + [66487] = 3, + ACTIONS(3317), 1, + anon_sym_LPAREN, + STATE(1675), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4917), 2, - anon_sym_const, - sym_mutable_specifier, - [65076] = 3, - ACTIONS(3368), 1, - anon_sym_BANG, - ACTIONS(4919), 1, - anon_sym_COLON_COLON, + [66498] = 3, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(267), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65087] = 3, - ACTIONS(3348), 1, - anon_sym_COLON_COLON, - ACTIONS(4921), 1, - anon_sym_BANG, + [66509] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(5093), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65098] = 3, - ACTIONS(3564), 1, + [66520] = 3, + ACTIONS(3702), 1, anon_sym_LBRACE, - STATE(381), 1, + STATE(256), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65109] = 2, + [66531] = 3, + ACTIONS(3702), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4923), 2, - anon_sym_const, - sym_mutable_specifier, - [65118] = 2, + [66542] = 3, + ACTIONS(5095), 1, + anon_sym_LT, + STATE(689), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4925), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65127] = 3, - ACTIONS(2478), 1, - anon_sym_COLON_COLON, - ACTIONS(3739), 1, - anon_sym_BANG, + [66553] = 3, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(291), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65138] = 2, + [66564] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3863), 2, - anon_sym_RPAREN, + ACTIONS(2325), 2, anon_sym_COMMA, - [65147] = 3, - ACTIONS(3298), 1, - anon_sym_COLON_COLON, - ACTIONS(3382), 1, + anon_sym_GT, + [66573] = 3, + ACTIONS(3455), 1, anon_sym_BANG, + ACTIONS(5097), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65158] = 2, + [66584] = 3, + ACTIONS(3674), 1, + anon_sym_LT, + STATE(703), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4443), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65167] = 3, - ACTIONS(3594), 1, - anon_sym_LBRACE, - STATE(912), 1, - sym_field_declaration_list, + [66595] = 3, + ACTIONS(3802), 1, + anon_sym_COLON, + STATE(1879), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65178] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(386), 1, - sym_declaration_list, + [66606] = 3, + ACTIONS(2554), 1, + anon_sym_COLON_COLON, + ACTIONS(3764), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65189] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(1304), 1, - sym_parameters, + [66617] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65200] = 3, - ACTIONS(644), 1, - anon_sym_LBRACE, - STATE(224), 1, - sym_block, + ACTIONS(5099), 2, + anon_sym_const, + sym_mutable_specifier, + [66626] = 3, + ACTIONS(3861), 1, + anon_sym_COLON_COLON, + ACTIONS(5101), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65211] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(385), 1, - sym_declaration_list, + [66637] = 3, + ACTIONS(3905), 1, + anon_sym_COLON_COLON, + ACTIONS(5101), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66648] = 3, + ACTIONS(3871), 1, + anon_sym_COLON_COLON, + ACTIONS(5101), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65222] = 3, - ACTIONS(4927), 1, + [66659] = 3, + ACTIONS(5103), 1, anon_sym_LPAREN, - ACTIONS(4929), 1, + ACTIONS(5105), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65233] = 3, - ACTIONS(4931), 1, + [66670] = 3, + ACTIONS(5107), 1, anon_sym_LPAREN, - ACTIONS(4933), 1, + ACTIONS(5109), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65244] = 3, - ACTIONS(4935), 1, - anon_sym_SEMI, - ACTIONS(4937), 1, - anon_sym_as, + [66681] = 3, + ACTIONS(3470), 1, + anon_sym_COLON_COLON, + ACTIONS(5111), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65255] = 2, + [66692] = 3, + ACTIONS(3951), 1, + anon_sym_LBRACE, + STATE(467), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4116), 2, - anon_sym_COMMA, - anon_sym_GT, - [65264] = 3, - ACTIONS(3366), 1, - anon_sym_COLON_COLON, - ACTIONS(4921), 1, - anon_sym_BANG, + [66703] = 3, + ACTIONS(3317), 1, + anon_sym_LPAREN, + STATE(1353), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65275] = 3, - ACTIONS(279), 1, - anon_sym_LBRACE, - STATE(1075), 1, - sym_block, + [66714] = 3, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5113), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65286] = 3, - ACTIONS(874), 1, - anon_sym_LBRACE, - STATE(1374), 1, - sym_block, + [66725] = 3, + ACTIONS(5115), 1, + sym_identifier, + ACTIONS(5117), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65297] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(301), 1, - sym_declaration_list, + [66736] = 3, + ACTIONS(4174), 1, + anon_sym_COLON, + ACTIONS(4178), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65308] = 2, + [66747] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4939), 2, - sym_float_literal, - sym_integer_literal, - [65317] = 2, + ACTIONS(5119), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66756] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4941), 2, - anon_sym_const, - sym_mutable_specifier, - [65326] = 3, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(2046), 1, - sym_lifetime, + ACTIONS(5121), 2, + sym_identifier, + sym_metavariable, + [66765] = 2, + ACTIONS(4400), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65337] = 2, - ACTIONS(2261), 1, - anon_sym_PLUS, + [66773] = 2, + ACTIONS(5123), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65345] = 2, - ACTIONS(4943), 1, - anon_sym_COLON, + [66781] = 2, + ACTIONS(4172), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65353] = 2, - ACTIONS(4534), 1, + [66789] = 2, + ACTIONS(4606), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65361] = 2, - ACTIONS(4945), 1, + [66797] = 2, + ACTIONS(5125), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65369] = 2, - ACTIONS(4947), 1, - sym_identifier, + [66805] = 2, + ACTIONS(4139), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65377] = 2, - ACTIONS(4510), 1, + [66813] = 2, + ACTIONS(5127), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65385] = 2, - ACTIONS(4949), 1, + [66821] = 2, + ACTIONS(5129), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65393] = 2, - ACTIONS(4951), 1, + [66829] = 2, + ACTIONS(4610), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65401] = 2, - ACTIONS(4953), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65409] = 2, - ACTIONS(4268), 1, + [66837] = 2, + ACTIONS(5131), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65417] = 2, - ACTIONS(4955), 1, - anon_sym_LT, + [66845] = 2, + ACTIONS(2588), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65425] = 2, - ACTIONS(4957), 1, - anon_sym_RBRACE, + [66853] = 2, + ACTIONS(2580), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65433] = 2, - ACTIONS(4959), 1, + [66861] = 2, + ACTIONS(5133), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65441] = 2, - ACTIONS(4961), 1, - anon_sym_EQ_GT, + [66869] = 2, + ACTIONS(4689), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65449] = 2, - ACTIONS(4963), 1, - anon_sym_EQ_GT, + [66877] = 2, + ACTIONS(5135), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65457] = 2, - ACTIONS(4965), 1, + [66885] = 2, + ACTIONS(4486), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65465] = 2, - ACTIONS(4500), 1, - sym_identifier, + [66893] = 2, + ACTIONS(4858), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65473] = 2, - ACTIONS(4967), 1, + [66901] = 2, + ACTIONS(5137), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65481] = 2, - ACTIONS(4492), 1, + [66909] = 2, + ACTIONS(5139), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65489] = 2, - ACTIONS(4969), 1, + [66917] = 2, + ACTIONS(5141), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65497] = 2, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65505] = 2, - ACTIONS(4971), 1, - anon_sym_RBRACK, + [66925] = 2, + ACTIONS(5143), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65513] = 2, - ACTIONS(4973), 1, - anon_sym_COLON, + [66933] = 2, + ACTIONS(5145), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65521] = 2, - ACTIONS(4975), 1, - anon_sym_SEMI, + [66941] = 2, + ACTIONS(5147), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65529] = 2, - ACTIONS(4484), 1, - anon_sym_RBRACE, + [66949] = 2, + ACTIONS(5149), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65537] = 2, - ACTIONS(4977), 1, - sym_identifier, + [66957] = 2, + ACTIONS(5151), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65545] = 2, - ACTIONS(4979), 1, - sym_identifier, + [66965] = 2, + ACTIONS(3217), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65553] = 2, - ACTIONS(4462), 1, - sym_identifier, + [66973] = 2, + ACTIONS(5153), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65561] = 2, - ACTIONS(4981), 1, - sym_identifier, + [66981] = 2, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65569] = 2, - ACTIONS(4983), 1, + [66989] = 2, + ACTIONS(5155), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65577] = 2, - ACTIONS(4985), 1, + [66997] = 2, + ACTIONS(5157), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65585] = 2, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, + [67005] = 2, + ACTIONS(5159), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65593] = 2, - ACTIONS(3867), 1, - anon_sym_COLON_COLON, + [67013] = 2, + ACTIONS(5161), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65601] = 2, - ACTIONS(4987), 1, - sym_identifier, + [67021] = 2, + ACTIONS(5163), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65609] = 2, - ACTIONS(4989), 1, + [67029] = 2, + ACTIONS(5165), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65617] = 2, - ACTIONS(4991), 1, + [67037] = 2, + ACTIONS(5167), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65625] = 2, - ACTIONS(4993), 1, - sym_identifier, + [67045] = 2, + ACTIONS(3171), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65633] = 2, - ACTIONS(4995), 1, + [67053] = 2, + ACTIONS(5169), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65641] = 2, - ACTIONS(4997), 1, + [67061] = 2, + ACTIONS(5171), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65649] = 2, - ACTIONS(3111), 1, - anon_sym_COLON_COLON, + [67069] = 2, + ACTIONS(5173), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65657] = 2, - ACTIONS(3292), 1, - anon_sym_COLON_COLON, + [67077] = 2, + ACTIONS(5175), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65665] = 2, - ACTIONS(4999), 1, + [67085] = 2, + ACTIONS(5177), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65673] = 2, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, + [67093] = 2, + ACTIONS(5179), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65681] = 2, - ACTIONS(5001), 1, - anon_sym_COLON_COLON, + [67101] = 2, + ACTIONS(5181), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65689] = 2, - ACTIONS(5003), 1, - sym_identifier, + [67109] = 2, + ACTIONS(4660), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65697] = 2, - ACTIONS(5005), 1, + [67117] = 2, + ACTIONS(5183), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65705] = 2, - ACTIONS(5007), 1, - anon_sym_RBRACK, + [67125] = 2, + ACTIONS(5185), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65713] = 2, - ACTIONS(4769), 1, + [67133] = 2, + ACTIONS(5187), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65721] = 2, - ACTIONS(5009), 1, - sym_identifier, + [67141] = 2, + ACTIONS(5189), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65729] = 2, - ACTIONS(5011), 1, + [67149] = 2, + ACTIONS(5191), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65737] = 2, - ACTIONS(5013), 1, + [67157] = 2, + ACTIONS(5193), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65745] = 2, - ACTIONS(5015), 1, + [67165] = 2, + ACTIONS(5195), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65753] = 2, - ACTIONS(5017), 1, + [67173] = 2, + ACTIONS(5197), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65761] = 2, - ACTIONS(5019), 1, + [67181] = 2, + ACTIONS(5199), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65769] = 2, - ACTIONS(5021), 1, + [67189] = 2, + ACTIONS(5201), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65777] = 2, - ACTIONS(5023), 1, + [67197] = 2, + ACTIONS(5203), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65785] = 2, - ACTIONS(5025), 1, - anon_sym_COLON, + [67205] = 2, + ACTIONS(5205), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65793] = 2, - ACTIONS(5027), 1, + [67213] = 2, + ACTIONS(5207), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65801] = 2, - ACTIONS(5029), 1, + [67221] = 2, + ACTIONS(5209), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65809] = 2, - ACTIONS(5031), 1, - anon_sym_SEMI, + [67229] = 2, + ACTIONS(4384), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65817] = 2, - ACTIONS(5033), 1, + [67237] = 2, + ACTIONS(5211), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65825] = 2, - ACTIONS(5035), 1, - anon_sym_fn, + [67245] = 2, + ACTIONS(5213), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65833] = 2, - ACTIONS(5037), 1, + [67253] = 2, + ACTIONS(4097), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65841] = 2, - ACTIONS(5039), 1, + [67261] = 2, + ACTIONS(5215), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65849] = 2, - ACTIONS(2478), 1, + [67269] = 2, + ACTIONS(4280), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67277] = 2, + ACTIONS(2554), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65857] = 2, - ACTIONS(5041), 1, - anon_sym_RPAREN, + [67285] = 2, + ACTIONS(5217), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65865] = 2, - ACTIONS(4919), 1, + [67293] = 2, + ACTIONS(5097), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65873] = 2, - ACTIONS(5043), 1, - sym_identifier, + [67301] = 2, + ACTIONS(5219), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65881] = 2, - ACTIONS(5045), 1, + [67309] = 2, + ACTIONS(5221), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65889] = 2, - ACTIONS(5047), 1, + [67317] = 2, + ACTIONS(5223), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65897] = 2, - ACTIONS(5049), 1, - anon_sym_EQ_GT, + [67325] = 2, + ACTIONS(4388), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65905] = 2, - ACTIONS(5051), 1, + [67333] = 2, + ACTIONS(5225), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65913] = 2, - ACTIONS(5053), 1, - sym_self, + [67341] = 2, + ACTIONS(5227), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65921] = 2, - ACTIONS(5055), 1, - anon_sym_COLON, + [67349] = 2, + ACTIONS(5229), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65929] = 2, - ACTIONS(4387), 1, - anon_sym_RBRACE, + [67357] = 2, + ACTIONS(3849), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65937] = 2, - ACTIONS(2472), 1, - anon_sym_COLON_COLON, + [67365] = 2, + ACTIONS(5231), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65945] = 2, - ACTIONS(5057), 1, - anon_sym_RBRACE, + [67373] = 2, + ACTIONS(5233), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65953] = 2, - ACTIONS(5059), 1, + [67381] = 2, + ACTIONS(5235), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65961] = 2, - ACTIONS(5061), 1, + [67389] = 2, + ACTIONS(5237), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65969] = 2, - ACTIONS(5063), 1, + [67397] = 2, + ACTIONS(5239), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65977] = 2, - ACTIONS(2951), 1, - anon_sym_RPAREN, + [67405] = 2, + ACTIONS(2355), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65985] = 2, - ACTIONS(5065), 1, + [67413] = 2, + ACTIONS(5241), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65993] = 2, - ACTIONS(5067), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66001] = 2, - ACTIONS(5069), 1, - anon_sym_RBRACE, + [67421] = 2, + ACTIONS(5243), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66009] = 2, - ACTIONS(5071), 1, - sym_identifier, + [67429] = 2, + ACTIONS(624), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66017] = 2, - ACTIONS(2247), 1, - anon_sym_PLUS, + [67437] = 2, + ACTIONS(5245), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66025] = 2, - ACTIONS(5073), 1, - sym_identifier, + [67445] = 2, + ACTIONS(3935), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66033] = 2, - ACTIONS(4290), 1, - sym_identifier, + [67453] = 2, + ACTIONS(2249), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66041] = 2, - ACTIONS(5075), 1, - anon_sym_RBRACK, + [67461] = 2, + ACTIONS(5247), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66049] = 2, - ACTIONS(4540), 1, - sym_identifier, + [67469] = 2, + ACTIONS(5113), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66057] = 2, - ACTIONS(5077), 1, - sym_identifier, + [67477] = 2, + ACTIONS(3061), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66065] = 2, - ACTIONS(5079), 1, - anon_sym_EQ, + [67485] = 2, + ACTIONS(5249), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66073] = 2, - ACTIONS(5081), 1, + [67493] = 2, + ACTIONS(5075), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66081] = 2, - ACTIONS(5083), 1, - sym_identifier, + [67501] = 2, + ACTIONS(5251), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66089] = 2, - ACTIONS(363), 1, - anon_sym_RBRACK, + [67509] = 2, + ACTIONS(3394), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66097] = 2, - ACTIONS(5085), 1, - anon_sym_COLON, + [67517] = 2, + ACTIONS(5253), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66105] = 2, - ACTIONS(4538), 1, + [67525] = 2, + ACTIONS(5255), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66113] = 2, - ACTIONS(5087), 1, - anon_sym_RPAREN, + [67533] = 2, + ACTIONS(5257), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66121] = 2, - ACTIONS(4351), 1, - anon_sym_RBRACE, + [67541] = 2, + ACTIONS(4446), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66129] = 2, - ACTIONS(5089), 1, - anon_sym_LBRACK, + [67549] = 2, + ACTIONS(5259), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66137] = 2, - ACTIONS(5091), 1, + [67557] = 2, + ACTIONS(5261), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66145] = 2, - ACTIONS(5093), 1, - anon_sym_COLON, + [67565] = 2, + ACTIONS(5263), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66153] = 2, - ACTIONS(5095), 1, - anon_sym_COLON, + [67573] = 2, + ACTIONS(5265), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66161] = 2, - ACTIONS(5097), 1, - sym_identifier, + [67581] = 2, + ACTIONS(4359), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66169] = 2, - ACTIONS(5099), 1, + [67589] = 2, + ACTIONS(5267), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66177] = 2, - ACTIONS(4050), 1, - anon_sym_RPAREN, + [67597] = 2, + ACTIONS(5269), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66185] = 2, - ACTIONS(5101), 1, + [67605] = 2, + ACTIONS(5271), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67613] = 2, + ACTIONS(5273), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66193] = 2, - ACTIONS(5103), 1, - anon_sym_SEMI, + [67621] = 2, + ACTIONS(5275), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66201] = 2, - ACTIONS(4549), 1, - anon_sym_RPAREN, + [67629] = 2, + ACTIONS(4027), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66209] = 2, - ACTIONS(5105), 1, + [67637] = 2, + ACTIONS(5277), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66217] = 2, - ACTIONS(4565), 1, - anon_sym_GT, + [67645] = 2, + ACTIONS(4349), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66225] = 2, - ACTIONS(4522), 1, - anon_sym_RBRACE, + [67653] = 2, + ACTIONS(3470), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66233] = 2, - ACTIONS(5107), 1, + [67661] = 2, + ACTIONS(5279), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66241] = 2, - ACTIONS(5109), 1, - anon_sym_SEMI, + [67669] = 2, + ACTIONS(5281), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66249] = 2, - ACTIONS(4881), 1, - anon_sym_SEMI, + [67677] = 2, + ACTIONS(5283), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66257] = 2, - ACTIONS(5111), 1, - sym_identifier, + [67685] = 2, + ACTIONS(5285), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66265] = 2, - ACTIONS(5113), 1, - anon_sym_RBRACK, + [67693] = 2, + ACTIONS(5287), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66273] = 2, - ACTIONS(2464), 1, - anon_sym_COLON_COLON, + [67701] = 2, + ACTIONS(5289), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66281] = 2, - ACTIONS(5115), 1, - anon_sym_SEMI, + [67709] = 2, + ACTIONS(5291), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66289] = 2, - ACTIONS(4873), 1, + [67717] = 2, + ACTIONS(5293), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66297] = 2, - ACTIONS(5117), 1, - anon_sym_RPAREN, + [67725] = 2, + ACTIONS(5295), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66305] = 2, - ACTIONS(5119), 1, - sym_identifier, + [67733] = 2, + ACTIONS(4490), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66313] = 2, - ACTIONS(5121), 1, - anon_sym_RPAREN, + [67741] = 2, + ACTIONS(5297), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66321] = 2, - ACTIONS(3821), 1, - anon_sym_COLON_COLON, + [67749] = 2, + ACTIONS(5299), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66329] = 2, - ACTIONS(5123), 1, + [67757] = 2, + ACTIONS(5301), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66337] = 2, - ACTIONS(5125), 1, - anon_sym_COLON, + [67765] = 2, + ACTIONS(5303), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66345] = 2, - ACTIONS(5127), 1, - anon_sym_SEMI, + [67773] = 2, + ACTIONS(5305), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66353] = 2, - ACTIONS(5129), 1, - anon_sym_LPAREN, + [67781] = 2, + ACTIONS(3149), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66361] = 2, - ACTIONS(2179), 1, - anon_sym_EQ_GT, + [67789] = 2, + ACTIONS(5307), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66369] = 2, - ACTIONS(3257), 1, - anon_sym_fn, + [67797] = 2, + ACTIONS(363), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66377] = 2, - ACTIONS(5131), 1, - ts_builtin_sym_end, + [67805] = 2, + ACTIONS(5309), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66385] = 2, - ACTIONS(5133), 1, - anon_sym_SEMI, + [67813] = 2, + ACTIONS(5311), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66393] = 2, - ACTIONS(2866), 1, - anon_sym_COLON_COLON, + [67821] = 2, + ACTIONS(5313), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66401] = 2, - ACTIONS(5135), 1, - anon_sym_SEMI, + [67829] = 2, + ACTIONS(4569), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66409] = 2, - ACTIONS(5137), 1, + [67837] = 2, + ACTIONS(4943), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66417] = 2, - ACTIONS(5139), 1, + [67845] = 2, + ACTIONS(5315), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66425] = 2, - ACTIONS(5141), 1, - anon_sym_RBRACK, + [67853] = 2, + ACTIONS(4525), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66433] = 2, - ACTIONS(5143), 1, - anon_sym_SEMI, + [67861] = 2, + ACTIONS(5317), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66441] = 2, - ACTIONS(3795), 1, + [67869] = 2, + ACTIONS(5319), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66449] = 2, - ACTIONS(5145), 1, + [67877] = 2, + ACTIONS(5321), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66457] = 2, - ACTIONS(5147), 1, - anon_sym_SEMI, + [67885] = 2, + ACTIONS(5323), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66465] = 2, - ACTIONS(5149), 1, - anon_sym_SEMI, + [67893] = 2, + ACTIONS(3905), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66473] = 2, - ACTIONS(5151), 1, - anon_sym_EQ, + [67901] = 2, + ACTIONS(5325), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66481] = 2, - ACTIONS(5153), 1, - sym_identifier, + [67909] = 2, + ACTIONS(5327), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66489] = 2, - ACTIONS(2480), 1, + [67917] = 2, + ACTIONS(2564), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66497] = 2, - ACTIONS(5155), 1, + [67925] = 2, + ACTIONS(5329), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66505] = 2, - ACTIONS(628), 1, - anon_sym_RBRACK, + [67933] = 2, + ACTIONS(3353), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66513] = 2, - ACTIONS(5157), 1, + [67941] = 2, + ACTIONS(5331), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66521] = 2, - ACTIONS(2175), 1, - anon_sym_EQ_GT, + [67949] = 2, + ACTIONS(5333), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66529] = 2, - ACTIONS(5159), 1, - anon_sym_fn, + [67957] = 2, + ACTIONS(2802), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66537] = 2, - ACTIONS(5161), 1, + [67965] = 2, + ACTIONS(5335), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66545] = 2, - ACTIONS(5163), 1, - anon_sym_COLON, + [67973] = 2, + ACTIONS(2367), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66553] = 2, - ACTIONS(3785), 1, - anon_sym_SEMI, + [67981] = 2, + ACTIONS(5337), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66561] = 2, - ACTIONS(5165), 1, - sym_identifier, + [67989] = 2, + ACTIONS(5339), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66569] = 2, - ACTIONS(5167), 1, + [67997] = 2, + ACTIONS(5341), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66577] = 2, - ACTIONS(5169), 1, - anon_sym_LBRACK, + [68005] = 2, + ACTIONS(5343), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66585] = 2, - ACTIONS(5171), 1, + [68013] = 2, + ACTIONS(5345), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66593] = 2, - ACTIONS(5173), 1, - anon_sym_SEMI, + [68021] = 2, + ACTIONS(4637), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66601] = 2, - ACTIONS(5175), 1, - anon_sym_SEMI, + [68029] = 2, + ACTIONS(4439), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66609] = 2, - ACTIONS(5177), 1, - anon_sym_RPAREN, + [68037] = 2, + ACTIONS(2311), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66617] = 2, - ACTIONS(3941), 1, + [68045] = 2, + ACTIONS(4057), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66625] = 2, - ACTIONS(5179), 1, + [68053] = 2, + ACTIONS(5347), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66633] = 2, - ACTIONS(5181), 1, - sym_identifier, + [68061] = 2, + ACTIONS(5349), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66641] = 2, - ACTIONS(3915), 1, + [68069] = 2, + ACTIONS(4051), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66649] = 2, - ACTIONS(5183), 1, + [68077] = 2, + ACTIONS(5351), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66657] = 2, - ACTIONS(5185), 1, - anon_sym_fn, + [68085] = 2, + ACTIONS(5353), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66665] = 2, - ACTIONS(3933), 1, + [68093] = 2, + ACTIONS(4077), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66673] = 2, - ACTIONS(5187), 1, + [68101] = 2, + ACTIONS(5355), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66681] = 2, - ACTIONS(4897), 1, - anon_sym_COLON_COLON, + [68109] = 2, + ACTIONS(4979), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66689] = 2, - ACTIONS(4787), 1, + [68117] = 2, + ACTIONS(5357), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66697] = 2, - ACTIONS(3801), 1, - anon_sym_SEMI, + [68125] = 2, + ACTIONS(5359), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66705] = 2, - ACTIONS(3855), 1, - sym_identifier, + [68133] = 2, + ACTIONS(5361), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66713] = 2, - ACTIONS(5189), 1, + [68141] = 2, + ACTIONS(5363), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66721] = 2, - ACTIONS(5191), 1, + [68149] = 2, + ACTIONS(5365), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66729] = 2, - ACTIONS(5193), 1, + [68157] = 2, + ACTIONS(5367), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66737] = 2, - ACTIONS(5195), 1, - anon_sym_SEMI, + [68165] = 2, + ACTIONS(4641), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66745] = 2, - ACTIONS(5197), 1, - anon_sym_SEMI, + [68173] = 2, + ACTIONS(5369), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66753] = 2, - ACTIONS(5199), 1, + [68181] = 2, + ACTIONS(4675), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66761] = 2, - ACTIONS(3298), 1, - anon_sym_COLON_COLON, + [68189] = 2, + ACTIONS(5371), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66769] = 2, - ACTIONS(5201), 1, + [68197] = 2, + ACTIONS(5373), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66777] = 2, - ACTIONS(5203), 1, + [68205] = 2, + ACTIONS(5375), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66785] = 2, - ACTIONS(5205), 1, - anon_sym_SEMI, + [68213] = 2, + ACTIONS(5377), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66793] = 2, - ACTIONS(5207), 1, - anon_sym_SEMI, + [68221] = 2, + ACTIONS(5379), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66801] = 2, - ACTIONS(3819), 1, - anon_sym_SEMI, + [68229] = 2, + ACTIONS(5381), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66809] = 2, - ACTIONS(5209), 1, - anon_sym_COLON_COLON, + [68237] = 2, + ACTIONS(5383), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66817] = 2, - ACTIONS(5211), 1, - sym_identifier, + [68245] = 2, + ACTIONS(5385), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66825] = 2, - ACTIONS(5213), 1, + [68253] = 2, + ACTIONS(5387), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66833] = 2, - ACTIONS(5215), 1, - anon_sym_SEMI, + [68261] = 2, + ACTIONS(5389), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66841] = 2, - ACTIONS(5217), 1, + [68269] = 2, + ACTIONS(5391), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66849] = 2, - ACTIONS(5219), 1, + [68277] = 2, + ACTIONS(5393), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66857] = 2, - ACTIONS(4670), 1, - anon_sym_RBRACE, + [68285] = 2, + ACTIONS(3396), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66865] = 2, - ACTIONS(5221), 1, - anon_sym_COLON, + [68293] = 2, + ACTIONS(5395), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66873] = 2, - ACTIONS(4006), 1, - anon_sym_RPAREN, + [68301] = 2, + ACTIONS(5397), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66881] = 2, - ACTIONS(5223), 1, - anon_sym_SEMI, + [68309] = 2, + ACTIONS(5089), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66889] = 2, - ACTIONS(5225), 1, + [68317] = 2, + ACTIONS(5399), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66897] = 2, - ACTIONS(5227), 1, - sym_identifier, + [68325] = 2, + ACTIONS(5401), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66905] = 2, - ACTIONS(5229), 1, + [68333] = 2, + ACTIONS(5403), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66913] = 2, - ACTIONS(5231), 1, + [68341] = 2, + ACTIONS(5405), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66921] = 2, - ACTIONS(4180), 1, - sym_identifier, + [68349] = 2, + ACTIONS(5407), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66929] = 2, - ACTIONS(5233), 1, - sym_identifier, + [68357] = 2, + ACTIONS(3921), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66937] = 2, - ACTIONS(4276), 1, - sym_identifier, + [68365] = 2, + ACTIONS(3893), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66945] = 2, - ACTIONS(5235), 1, + [68373] = 2, + ACTIONS(5409), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66953] = 2, - ACTIONS(4026), 1, - anon_sym_RPAREN, + [68381] = 2, + ACTIONS(5411), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66961] = 2, - ACTIONS(5237), 1, + [68389] = 2, + ACTIONS(5413), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66969] = 2, - ACTIONS(5239), 1, + [68397] = 2, + ACTIONS(4797), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66977] = 2, - ACTIONS(5241), 1, + [68405] = 2, + ACTIONS(5415), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66985] = 2, - ACTIONS(5243), 1, + [68413] = 2, + ACTIONS(5417), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66993] = 2, - ACTIONS(5245), 1, - anon_sym_EQ_GT, + [68421] = 2, + ACTIONS(5419), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67001] = 2, - ACTIONS(5247), 1, - anon_sym_LPAREN, + [68429] = 2, + ACTIONS(4143), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67009] = 2, - ACTIONS(4732), 1, + [68437] = 2, + ACTIONS(5421), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67017] = 2, - ACTIONS(2993), 1, - sym_identifier, + [68445] = 2, + ACTIONS(5423), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67025] = 2, - ACTIONS(5249), 1, - anon_sym_RPAREN, + [68453] = 2, + ACTIONS(4985), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67033] = 2, - ACTIONS(5251), 1, + [68461] = 2, + ACTIONS(5425), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67041] = 2, - ACTIONS(5253), 1, - sym_identifier, + [68469] = 2, + ACTIONS(5427), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67049] = 2, - ACTIONS(3233), 1, + [68477] = 2, + ACTIONS(3329), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67057] = 2, - ACTIONS(5255), 1, + [68485] = 2, + ACTIONS(5429), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67065] = 2, - ACTIONS(5257), 1, + [68493] = 2, + ACTIONS(5431), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67073] = 2, - ACTIONS(5259), 1, + [68501] = 2, + ACTIONS(5433), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67081] = 2, - ACTIONS(5261), 1, - sym_identifier, + [68509] = 2, + ACTIONS(4981), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67089] = 2, - ACTIONS(4759), 1, - anon_sym_RBRACE, + [68517] = 2, + ACTIONS(5435), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67097] = 2, - ACTIONS(4176), 1, - anon_sym_RBRACK, + [68525] = 2, + ACTIONS(5437), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67105] = 2, - ACTIONS(5263), 1, + [68533] = 2, + ACTIONS(5439), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67113] = 2, - ACTIONS(5265), 1, + [68541] = 2, + ACTIONS(5441), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67121] = 2, - ACTIONS(5267), 1, + [68549] = 2, + ACTIONS(5443), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67129] = 2, - ACTIONS(5269), 1, + [68557] = 2, + ACTIONS(5445), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67137] = 2, - ACTIONS(5271), 1, + [68565] = 2, + ACTIONS(5447), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67145] = 2, - ACTIONS(5273), 1, + [68573] = 2, + ACTIONS(5449), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67153] = 2, - ACTIONS(5275), 1, + [68581] = 2, + ACTIONS(5451), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67161] = 2, - ACTIONS(4156), 1, - anon_sym_RPAREN, + [68589] = 2, + ACTIONS(4864), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67169] = 2, - ACTIONS(4795), 1, - anon_sym_SEMI, + [68597] = 2, + ACTIONS(5453), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67177] = 2, - ACTIONS(5277), 1, - sym_identifier, + [68605] = 2, + ACTIONS(5455), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67185] = 2, - ACTIONS(5279), 1, - sym_identifier, + [68613] = 2, + ACTIONS(5457), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67193] = 2, - ACTIONS(4791), 1, - anon_sym_SEMI, + [68621] = 2, + ACTIONS(5459), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(594)] = 0, - [SMALL_STATE(595)] = 129, - [SMALL_STATE(596)] = 258, - [SMALL_STATE(597)] = 387, - [SMALL_STATE(598)] = 516, - [SMALL_STATE(599)] = 645, - [SMALL_STATE(600)] = 774, - [SMALL_STATE(601)] = 903, - [SMALL_STATE(602)] = 1032, - [SMALL_STATE(603)] = 1161, - [SMALL_STATE(604)] = 1290, - [SMALL_STATE(605)] = 1419, - [SMALL_STATE(606)] = 1548, - [SMALL_STATE(607)] = 1677, - [SMALL_STATE(608)] = 1806, - [SMALL_STATE(609)] = 1935, - [SMALL_STATE(610)] = 2064, - [SMALL_STATE(611)] = 2193, - [SMALL_STATE(612)] = 2322, - [SMALL_STATE(613)] = 2451, - [SMALL_STATE(614)] = 2580, - [SMALL_STATE(615)] = 2709, - [SMALL_STATE(616)] = 2838, - [SMALL_STATE(617)] = 2967, - [SMALL_STATE(618)] = 3096, - [SMALL_STATE(619)] = 3225, - [SMALL_STATE(620)] = 3354, - [SMALL_STATE(621)] = 3483, - [SMALL_STATE(622)] = 3612, - [SMALL_STATE(623)] = 3741, - [SMALL_STATE(624)] = 3870, - [SMALL_STATE(625)] = 3999, - [SMALL_STATE(626)] = 4128, - [SMALL_STATE(627)] = 4257, - [SMALL_STATE(628)] = 4386, - [SMALL_STATE(629)] = 4515, - [SMALL_STATE(630)] = 4644, - [SMALL_STATE(631)] = 4773, - [SMALL_STATE(632)] = 4902, - [SMALL_STATE(633)] = 5031, - [SMALL_STATE(634)] = 5160, - [SMALL_STATE(635)] = 5289, - [SMALL_STATE(636)] = 5418, - [SMALL_STATE(637)] = 5547, - [SMALL_STATE(638)] = 5676, - [SMALL_STATE(639)] = 5805, - [SMALL_STATE(640)] = 5934, - [SMALL_STATE(641)] = 6063, - [SMALL_STATE(642)] = 6192, - [SMALL_STATE(643)] = 6321, - [SMALL_STATE(644)] = 6450, - [SMALL_STATE(645)] = 6579, - [SMALL_STATE(646)] = 6708, - [SMALL_STATE(647)] = 6837, - [SMALL_STATE(648)] = 6966, - [SMALL_STATE(649)] = 7095, - [SMALL_STATE(650)] = 7224, - [SMALL_STATE(651)] = 7353, - [SMALL_STATE(652)] = 7482, - [SMALL_STATE(653)] = 7611, - [SMALL_STATE(654)] = 7740, - [SMALL_STATE(655)] = 7869, - [SMALL_STATE(656)] = 7998, - [SMALL_STATE(657)] = 8127, - [SMALL_STATE(658)] = 8256, - [SMALL_STATE(659)] = 8385, - [SMALL_STATE(660)] = 8514, - [SMALL_STATE(661)] = 8643, - [SMALL_STATE(662)] = 8772, - [SMALL_STATE(663)] = 8901, - [SMALL_STATE(664)] = 9030, - [SMALL_STATE(665)] = 9159, - [SMALL_STATE(666)] = 9290, - [SMALL_STATE(667)] = 9419, - [SMALL_STATE(668)] = 9548, - [SMALL_STATE(669)] = 9677, - [SMALL_STATE(670)] = 9806, - [SMALL_STATE(671)] = 9935, - [SMALL_STATE(672)] = 10064, - [SMALL_STATE(673)] = 10193, - [SMALL_STATE(674)] = 10322, - [SMALL_STATE(675)] = 10451, - [SMALL_STATE(676)] = 10580, - [SMALL_STATE(677)] = 10709, - [SMALL_STATE(678)] = 10838, - [SMALL_STATE(679)] = 10967, - [SMALL_STATE(680)] = 11096, - [SMALL_STATE(681)] = 11225, - [SMALL_STATE(682)] = 11354, - [SMALL_STATE(683)] = 11483, - [SMALL_STATE(684)] = 11612, - [SMALL_STATE(685)] = 11741, - [SMALL_STATE(686)] = 11870, - [SMALL_STATE(687)] = 11999, - [SMALL_STATE(688)] = 12128, - [SMALL_STATE(689)] = 12257, - [SMALL_STATE(690)] = 12386, - [SMALL_STATE(691)] = 12515, - [SMALL_STATE(692)] = 12644, - [SMALL_STATE(693)] = 12773, - [SMALL_STATE(694)] = 12902, - [SMALL_STATE(695)] = 13031, - [SMALL_STATE(696)] = 13160, - [SMALL_STATE(697)] = 13289, - [SMALL_STATE(698)] = 13418, - [SMALL_STATE(699)] = 13547, - [SMALL_STATE(700)] = 13676, - [SMALL_STATE(701)] = 13805, - [SMALL_STATE(702)] = 13934, - [SMALL_STATE(703)] = 14004, - [SMALL_STATE(704)] = 14069, - [SMALL_STATE(705)] = 14134, - [SMALL_STATE(706)] = 14199, - [SMALL_STATE(707)] = 14264, - [SMALL_STATE(708)] = 14326, - [SMALL_STATE(709)] = 14396, - [SMALL_STATE(710)] = 14463, - [SMALL_STATE(711)] = 14530, - [SMALL_STATE(712)] = 14594, - [SMALL_STATE(713)] = 14656, - [SMALL_STATE(714)] = 14712, - [SMALL_STATE(715)] = 14768, - [SMALL_STATE(716)] = 14832, - [SMALL_STATE(717)] = 14892, - [SMALL_STATE(718)] = 14948, - [SMALL_STATE(719)] = 15008, - [SMALL_STATE(720)] = 15068, - [SMALL_STATE(721)] = 15132, - [SMALL_STATE(722)] = 15196, - [SMALL_STATE(723)] = 15252, - [SMALL_STATE(724)] = 15308, - [SMALL_STATE(725)] = 15368, - [SMALL_STATE(726)] = 15427, - [SMALL_STATE(727)] = 15486, - [SMALL_STATE(728)] = 15543, - [SMALL_STATE(729)] = 15600, - [SMALL_STATE(730)] = 15657, - [SMALL_STATE(731)] = 15714, - [SMALL_STATE(732)] = 15769, - [SMALL_STATE(733)] = 15828, - [SMALL_STATE(734)] = 15882, - [SMALL_STATE(735)] = 15936, - [SMALL_STATE(736)] = 15990, - [SMALL_STATE(737)] = 16044, - [SMALL_STATE(738)] = 16098, - [SMALL_STATE(739)] = 16152, - [SMALL_STATE(740)] = 16206, - [SMALL_STATE(741)] = 16260, - [SMALL_STATE(742)] = 16314, - [SMALL_STATE(743)] = 16368, - [SMALL_STATE(744)] = 16422, - [SMALL_STATE(745)] = 16476, - [SMALL_STATE(746)] = 16530, - [SMALL_STATE(747)] = 16584, - [SMALL_STATE(748)] = 16640, - [SMALL_STATE(749)] = 16694, - [SMALL_STATE(750)] = 16748, - [SMALL_STATE(751)] = 16802, - [SMALL_STATE(752)] = 16856, - [SMALL_STATE(753)] = 16910, - [SMALL_STATE(754)] = 16964, - [SMALL_STATE(755)] = 17018, - [SMALL_STATE(756)] = 17072, - [SMALL_STATE(757)] = 17126, - [SMALL_STATE(758)] = 17180, - [SMALL_STATE(759)] = 17234, - [SMALL_STATE(760)] = 17288, - [SMALL_STATE(761)] = 17342, - [SMALL_STATE(762)] = 17398, - [SMALL_STATE(763)] = 17452, - [SMALL_STATE(764)] = 17508, - [SMALL_STATE(765)] = 17562, - [SMALL_STATE(766)] = 17616, - [SMALL_STATE(767)] = 17670, - [SMALL_STATE(768)] = 17724, - [SMALL_STATE(769)] = 17778, - [SMALL_STATE(770)] = 17832, - [SMALL_STATE(771)] = 17886, - [SMALL_STATE(772)] = 17940, - [SMALL_STATE(773)] = 17994, - [SMALL_STATE(774)] = 18048, - [SMALL_STATE(775)] = 18102, - [SMALL_STATE(776)] = 18156, - [SMALL_STATE(777)] = 18210, - [SMALL_STATE(778)] = 18264, - [SMALL_STATE(779)] = 18318, - [SMALL_STATE(780)] = 18372, - [SMALL_STATE(781)] = 18426, - [SMALL_STATE(782)] = 18480, - [SMALL_STATE(783)] = 18534, - [SMALL_STATE(784)] = 18588, - [SMALL_STATE(785)] = 18642, - [SMALL_STATE(786)] = 18696, - [SMALL_STATE(787)] = 18750, - [SMALL_STATE(788)] = 18804, - [SMALL_STATE(789)] = 18858, - [SMALL_STATE(790)] = 18912, - [SMALL_STATE(791)] = 18966, - [SMALL_STATE(792)] = 19020, - [SMALL_STATE(793)] = 19074, - [SMALL_STATE(794)] = 19128, - [SMALL_STATE(795)] = 19182, - [SMALL_STATE(796)] = 19236, - [SMALL_STATE(797)] = 19290, - [SMALL_STATE(798)] = 19346, - [SMALL_STATE(799)] = 19402, - [SMALL_STATE(800)] = 19458, - [SMALL_STATE(801)] = 19512, - [SMALL_STATE(802)] = 19566, - [SMALL_STATE(803)] = 19620, - [SMALL_STATE(804)] = 19674, - [SMALL_STATE(805)] = 19728, - [SMALL_STATE(806)] = 19782, - [SMALL_STATE(807)] = 19836, - [SMALL_STATE(808)] = 19890, - [SMALL_STATE(809)] = 19944, - [SMALL_STATE(810)] = 19998, - [SMALL_STATE(811)] = 20052, - [SMALL_STATE(812)] = 20108, - [SMALL_STATE(813)] = 20162, - [SMALL_STATE(814)] = 20216, - [SMALL_STATE(815)] = 20270, - [SMALL_STATE(816)] = 20324, - [SMALL_STATE(817)] = 20378, - [SMALL_STATE(818)] = 20432, - [SMALL_STATE(819)] = 20486, - [SMALL_STATE(820)] = 20540, - [SMALL_STATE(821)] = 20596, - [SMALL_STATE(822)] = 20650, - [SMALL_STATE(823)] = 20706, - [SMALL_STATE(824)] = 20764, - [SMALL_STATE(825)] = 20818, - [SMALL_STATE(826)] = 20874, - [SMALL_STATE(827)] = 20930, - [SMALL_STATE(828)] = 20984, - [SMALL_STATE(829)] = 21038, - [SMALL_STATE(830)] = 21094, - [SMALL_STATE(831)] = 21148, - [SMALL_STATE(832)] = 21202, - [SMALL_STATE(833)] = 21256, - [SMALL_STATE(834)] = 21310, - [SMALL_STATE(835)] = 21364, - [SMALL_STATE(836)] = 21418, - [SMALL_STATE(837)] = 21472, - [SMALL_STATE(838)] = 21526, - [SMALL_STATE(839)] = 21580, - [SMALL_STATE(840)] = 21634, - [SMALL_STATE(841)] = 21688, - [SMALL_STATE(842)] = 21742, - [SMALL_STATE(843)] = 21796, - [SMALL_STATE(844)] = 21850, - [SMALL_STATE(845)] = 21904, - [SMALL_STATE(846)] = 21958, - [SMALL_STATE(847)] = 22012, - [SMALL_STATE(848)] = 22066, - [SMALL_STATE(849)] = 22120, - [SMALL_STATE(850)] = 22174, - [SMALL_STATE(851)] = 22228, - [SMALL_STATE(852)] = 22282, - [SMALL_STATE(853)] = 22336, - [SMALL_STATE(854)] = 22390, - [SMALL_STATE(855)] = 22444, - [SMALL_STATE(856)] = 22498, - [SMALL_STATE(857)] = 22552, - [SMALL_STATE(858)] = 22606, - [SMALL_STATE(859)] = 22660, - [SMALL_STATE(860)] = 22714, - [SMALL_STATE(861)] = 22768, - [SMALL_STATE(862)] = 22822, - [SMALL_STATE(863)] = 22876, - [SMALL_STATE(864)] = 22930, - [SMALL_STATE(865)] = 22984, - [SMALL_STATE(866)] = 23038, - [SMALL_STATE(867)] = 23092, - [SMALL_STATE(868)] = 23146, - [SMALL_STATE(869)] = 23200, - [SMALL_STATE(870)] = 23254, - [SMALL_STATE(871)] = 23308, - [SMALL_STATE(872)] = 23362, - [SMALL_STATE(873)] = 23416, - [SMALL_STATE(874)] = 23470, - [SMALL_STATE(875)] = 23524, - [SMALL_STATE(876)] = 23578, - [SMALL_STATE(877)] = 23632, - [SMALL_STATE(878)] = 23686, - [SMALL_STATE(879)] = 23740, - [SMALL_STATE(880)] = 23794, - [SMALL_STATE(881)] = 23848, - [SMALL_STATE(882)] = 23902, - [SMALL_STATE(883)] = 23956, - [SMALL_STATE(884)] = 24010, - [SMALL_STATE(885)] = 24064, - [SMALL_STATE(886)] = 24118, - [SMALL_STATE(887)] = 24172, - [SMALL_STATE(888)] = 24226, - [SMALL_STATE(889)] = 24280, - [SMALL_STATE(890)] = 24334, - [SMALL_STATE(891)] = 24388, - [SMALL_STATE(892)] = 24442, - [SMALL_STATE(893)] = 24496, - [SMALL_STATE(894)] = 24550, - [SMALL_STATE(895)] = 24604, - [SMALL_STATE(896)] = 24658, - [SMALL_STATE(897)] = 24712, - [SMALL_STATE(898)] = 24766, - [SMALL_STATE(899)] = 24820, - [SMALL_STATE(900)] = 24874, - [SMALL_STATE(901)] = 24928, - [SMALL_STATE(902)] = 24982, - [SMALL_STATE(903)] = 25036, - [SMALL_STATE(904)] = 25090, - [SMALL_STATE(905)] = 25144, - [SMALL_STATE(906)] = 25198, - [SMALL_STATE(907)] = 25252, - [SMALL_STATE(908)] = 25306, - [SMALL_STATE(909)] = 25360, - [SMALL_STATE(910)] = 25414, - [SMALL_STATE(911)] = 25472, - [SMALL_STATE(912)] = 25526, - [SMALL_STATE(913)] = 25580, - [SMALL_STATE(914)] = 25634, - [SMALL_STATE(915)] = 25688, - [SMALL_STATE(916)] = 25742, - [SMALL_STATE(917)] = 25796, - [SMALL_STATE(918)] = 25850, - [SMALL_STATE(919)] = 25904, - [SMALL_STATE(920)] = 25958, - [SMALL_STATE(921)] = 26012, - [SMALL_STATE(922)] = 26066, - [SMALL_STATE(923)] = 26122, - [SMALL_STATE(924)] = 26176, - [SMALL_STATE(925)] = 26230, - [SMALL_STATE(926)] = 26286, - [SMALL_STATE(927)] = 26340, - [SMALL_STATE(928)] = 26394, - [SMALL_STATE(929)] = 26450, - [SMALL_STATE(930)] = 26504, - [SMALL_STATE(931)] = 26558, - [SMALL_STATE(932)] = 26612, - [SMALL_STATE(933)] = 26668, - [SMALL_STATE(934)] = 26722, - [SMALL_STATE(935)] = 26776, - [SMALL_STATE(936)] = 26830, - [SMALL_STATE(937)] = 26884, - [SMALL_STATE(938)] = 26938, - [SMALL_STATE(939)] = 26992, - [SMALL_STATE(940)] = 27046, - [SMALL_STATE(941)] = 27100, - [SMALL_STATE(942)] = 27154, - [SMALL_STATE(943)] = 27208, - [SMALL_STATE(944)] = 27262, - [SMALL_STATE(945)] = 27316, - [SMALL_STATE(946)] = 27370, - [SMALL_STATE(947)] = 27424, - [SMALL_STATE(948)] = 27478, - [SMALL_STATE(949)] = 27532, - [SMALL_STATE(950)] = 27586, - [SMALL_STATE(951)] = 27640, - [SMALL_STATE(952)] = 27694, - [SMALL_STATE(953)] = 27748, - [SMALL_STATE(954)] = 27802, - [SMALL_STATE(955)] = 27856, - [SMALL_STATE(956)] = 27910, - [SMALL_STATE(957)] = 27964, - [SMALL_STATE(958)] = 28018, - [SMALL_STATE(959)] = 28072, - [SMALL_STATE(960)] = 28126, - [SMALL_STATE(961)] = 28180, - [SMALL_STATE(962)] = 28234, - [SMALL_STATE(963)] = 28288, - [SMALL_STATE(964)] = 28342, - [SMALL_STATE(965)] = 28396, - [SMALL_STATE(966)] = 28449, - [SMALL_STATE(967)] = 28502, - [SMALL_STATE(968)] = 28555, - [SMALL_STATE(969)] = 28638, - [SMALL_STATE(970)] = 28713, - [SMALL_STATE(971)] = 28794, - [SMALL_STATE(972)] = 28867, - [SMALL_STATE(973)] = 28936, - [SMALL_STATE(974)] = 28989, - [SMALL_STATE(975)] = 29042, - [SMALL_STATE(976)] = 29095, - [SMALL_STATE(977)] = 29180, - [SMALL_STATE(978)] = 29233, - [SMALL_STATE(979)] = 29318, - [SMALL_STATE(980)] = 29371, - [SMALL_STATE(981)] = 29424, - [SMALL_STATE(982)] = 29479, - [SMALL_STATE(983)] = 29532, - [SMALL_STATE(984)] = 29599, - [SMALL_STATE(985)] = 29652, - [SMALL_STATE(986)] = 29717, - [SMALL_STATE(987)] = 29770, - [SMALL_STATE(988)] = 29823, - [SMALL_STATE(989)] = 29876, - [SMALL_STATE(990)] = 29929, - [SMALL_STATE(991)] = 29982, - [SMALL_STATE(992)] = 30035, - [SMALL_STATE(993)] = 30088, - [SMALL_STATE(994)] = 30141, - [SMALL_STATE(995)] = 30226, - [SMALL_STATE(996)] = 30303, - [SMALL_STATE(997)] = 30356, - [SMALL_STATE(998)] = 30409, - [SMALL_STATE(999)] = 30462, - [SMALL_STATE(1000)] = 30533, - [SMALL_STATE(1001)] = 30586, - [SMALL_STATE(1002)] = 30639, - [SMALL_STATE(1003)] = 30704, - [SMALL_STATE(1004)] = 30763, - [SMALL_STATE(1005)] = 30816, - [SMALL_STATE(1006)] = 30869, - [SMALL_STATE(1007)] = 30922, - [SMALL_STATE(1008)] = 30975, - [SMALL_STATE(1009)] = 31028, - [SMALL_STATE(1010)] = 31081, - [SMALL_STATE(1011)] = 31134, - [SMALL_STATE(1012)] = 31187, - [SMALL_STATE(1013)] = 31240, - [SMALL_STATE(1014)] = 31293, - [SMALL_STATE(1015)] = 31348, - [SMALL_STATE(1016)] = 31401, - [SMALL_STATE(1017)] = 31454, - [SMALL_STATE(1018)] = 31507, - [SMALL_STATE(1019)] = 31560, - [SMALL_STATE(1020)] = 31613, - [SMALL_STATE(1021)] = 31666, - [SMALL_STATE(1022)] = 31719, - [SMALL_STATE(1023)] = 31772, - [SMALL_STATE(1024)] = 31825, - [SMALL_STATE(1025)] = 31878, - [SMALL_STATE(1026)] = 31931, - [SMALL_STATE(1027)] = 31984, - [SMALL_STATE(1028)] = 32037, - [SMALL_STATE(1029)] = 32090, - [SMALL_STATE(1030)] = 32181, - [SMALL_STATE(1031)] = 32234, - [SMALL_STATE(1032)] = 32287, - [SMALL_STATE(1033)] = 32340, - [SMALL_STATE(1034)] = 32405, - [SMALL_STATE(1035)] = 32458, - [SMALL_STATE(1036)] = 32543, - [SMALL_STATE(1037)] = 32596, - [SMALL_STATE(1038)] = 32649, - [SMALL_STATE(1039)] = 32702, - [SMALL_STATE(1040)] = 32755, - [SMALL_STATE(1041)] = 32808, - [SMALL_STATE(1042)] = 32861, - [SMALL_STATE(1043)] = 32946, - [SMALL_STATE(1044)] = 32999, - [SMALL_STATE(1045)] = 33052, - [SMALL_STATE(1046)] = 33105, - [SMALL_STATE(1047)] = 33194, - [SMALL_STATE(1048)] = 33259, - [SMALL_STATE(1049)] = 33312, - [SMALL_STATE(1050)] = 33365, - [SMALL_STATE(1051)] = 33418, - [SMALL_STATE(1052)] = 33471, - [SMALL_STATE(1053)] = 33526, - [SMALL_STATE(1054)] = 33579, - [SMALL_STATE(1055)] = 33632, - [SMALL_STATE(1056)] = 33685, - [SMALL_STATE(1057)] = 33738, - [SMALL_STATE(1058)] = 33791, - [SMALL_STATE(1059)] = 33844, - [SMALL_STATE(1060)] = 33897, - [SMALL_STATE(1061)] = 33950, - [SMALL_STATE(1062)] = 34003, - [SMALL_STATE(1063)] = 34056, - [SMALL_STATE(1064)] = 34109, - [SMALL_STATE(1065)] = 34164, - [SMALL_STATE(1066)] = 34217, - [SMALL_STATE(1067)] = 34270, - [SMALL_STATE(1068)] = 34323, - [SMALL_STATE(1069)] = 34376, - [SMALL_STATE(1070)] = 34429, - [SMALL_STATE(1071)] = 34520, - [SMALL_STATE(1072)] = 34573, - [SMALL_STATE(1073)] = 34626, - [SMALL_STATE(1074)] = 34679, - [SMALL_STATE(1075)] = 34732, - [SMALL_STATE(1076)] = 34785, - [SMALL_STATE(1077)] = 34838, - [SMALL_STATE(1078)] = 34895, - [SMALL_STATE(1079)] = 34948, - [SMALL_STATE(1080)] = 35037, - [SMALL_STATE(1081)] = 35090, - [SMALL_STATE(1082)] = 35143, - [SMALL_STATE(1083)] = 35196, - [SMALL_STATE(1084)] = 35249, - [SMALL_STATE(1085)] = 35302, - [SMALL_STATE(1086)] = 35355, - [SMALL_STATE(1087)] = 35415, - [SMALL_STATE(1088)] = 35467, - [SMALL_STATE(1089)] = 35519, - [SMALL_STATE(1090)] = 35606, - [SMALL_STATE(1091)] = 35701, - [SMALL_STATE(1092)] = 35788, - [SMALL_STATE(1093)] = 35839, - [SMALL_STATE(1094)] = 35926, - [SMALL_STATE(1095)] = 35977, - [SMALL_STATE(1096)] = 36056, - [SMALL_STATE(1097)] = 36151, - [SMALL_STATE(1098)] = 36236, - [SMALL_STATE(1099)] = 36321, - [SMALL_STATE(1100)] = 36378, - [SMALL_STATE(1101)] = 36465, - [SMALL_STATE(1102)] = 36519, - [SMALL_STATE(1103)] = 36611, - [SMALL_STATE(1104)] = 36703, - [SMALL_STATE(1105)] = 36759, - [SMALL_STATE(1106)] = 36835, - [SMALL_STATE(1107)] = 36911, - [SMALL_STATE(1108)] = 36987, - [SMALL_STATE(1109)] = 37063, - [SMALL_STATE(1110)] = 37112, - [SMALL_STATE(1111)] = 37201, - [SMALL_STATE(1112)] = 37274, - [SMALL_STATE(1113)] = 37363, - [SMALL_STATE(1114)] = 37412, - [SMALL_STATE(1115)] = 37501, - [SMALL_STATE(1116)] = 37552, - [SMALL_STATE(1117)] = 37641, - [SMALL_STATE(1118)] = 37728, - [SMALL_STATE(1119)] = 37815, - [SMALL_STATE(1120)] = 37904, - [SMALL_STATE(1121)] = 37991, - [SMALL_STATE(1122)] = 38080, - [SMALL_STATE(1123)] = 38169, - [SMALL_STATE(1124)] = 38258, - [SMALL_STATE(1125)] = 38347, - [SMALL_STATE(1126)] = 38396, - [SMALL_STATE(1127)] = 38445, - [SMALL_STATE(1128)] = 38534, - [SMALL_STATE(1129)] = 38583, - [SMALL_STATE(1130)] = 38672, - [SMALL_STATE(1131)] = 38761, - [SMALL_STATE(1132)] = 38850, - [SMALL_STATE(1133)] = 38939, - [SMALL_STATE(1134)] = 38992, - [SMALL_STATE(1135)] = 39041, - [SMALL_STATE(1136)] = 39090, - [SMALL_STATE(1137)] = 39179, - [SMALL_STATE(1138)] = 39268, - [SMALL_STATE(1139)] = 39355, - [SMALL_STATE(1140)] = 39444, - [SMALL_STATE(1141)] = 39533, - [SMALL_STATE(1142)] = 39620, - [SMALL_STATE(1143)] = 39709, - [SMALL_STATE(1144)] = 39796, - [SMALL_STATE(1145)] = 39885, - [SMALL_STATE(1146)] = 39974, - [SMALL_STATE(1147)] = 40063, - [SMALL_STATE(1148)] = 40152, - [SMALL_STATE(1149)] = 40239, - [SMALL_STATE(1150)] = 40328, - [SMALL_STATE(1151)] = 40417, - [SMALL_STATE(1152)] = 40506, - [SMALL_STATE(1153)] = 40595, - [SMALL_STATE(1154)] = 40682, - [SMALL_STATE(1155)] = 40771, - [SMALL_STATE(1156)] = 40860, - [SMALL_STATE(1157)] = 40949, - [SMALL_STATE(1158)] = 40998, - [SMALL_STATE(1159)] = 41087, - [SMALL_STATE(1160)] = 41174, - [SMALL_STATE(1161)] = 41225, - [SMALL_STATE(1162)] = 41314, - [SMALL_STATE(1163)] = 41403, - [SMALL_STATE(1164)] = 41490, - [SMALL_STATE(1165)] = 41579, - [SMALL_STATE(1166)] = 41668, - [SMALL_STATE(1167)] = 41757, - [SMALL_STATE(1168)] = 41810, - [SMALL_STATE(1169)] = 41899, - [SMALL_STATE(1170)] = 41988, - [SMALL_STATE(1171)] = 42077, - [SMALL_STATE(1172)] = 42166, - [SMALL_STATE(1173)] = 42255, - [SMALL_STATE(1174)] = 42304, - [SMALL_STATE(1175)] = 42393, - [SMALL_STATE(1176)] = 42482, - [SMALL_STATE(1177)] = 42571, - [SMALL_STATE(1178)] = 42660, - [SMALL_STATE(1179)] = 42738, - [SMALL_STATE(1180)] = 42816, - [SMALL_STATE(1181)] = 42902, - [SMALL_STATE(1182)] = 42988, - [SMALL_STATE(1183)] = 43074, - [SMALL_STATE(1184)] = 43160, - [SMALL_STATE(1185)] = 43246, - [SMALL_STATE(1186)] = 43332, - [SMALL_STATE(1187)] = 43418, - [SMALL_STATE(1188)] = 43468, - [SMALL_STATE(1189)] = 43548, - [SMALL_STATE(1190)] = 43634, - [SMALL_STATE(1191)] = 43720, - [SMALL_STATE(1192)] = 43806, - [SMALL_STATE(1193)] = 43892, - [SMALL_STATE(1194)] = 43978, - [SMALL_STATE(1195)] = 44028, - [SMALL_STATE(1196)] = 44114, - [SMALL_STATE(1197)] = 44200, - [SMALL_STATE(1198)] = 44260, - [SMALL_STATE(1199)] = 44346, - [SMALL_STATE(1200)] = 44432, - [SMALL_STATE(1201)] = 44518, - [SMALL_STATE(1202)] = 44598, - [SMALL_STATE(1203)] = 44658, - [SMALL_STATE(1204)] = 44712, - [SMALL_STATE(1205)] = 44798, - [SMALL_STATE(1206)] = 44884, - [SMALL_STATE(1207)] = 44970, - [SMALL_STATE(1208)] = 45056, - [SMALL_STATE(1209)] = 45142, - [SMALL_STATE(1210)] = 45192, - [SMALL_STATE(1211)] = 45278, - [SMALL_STATE(1212)] = 45356, - [SMALL_STATE(1213)] = 45442, - [SMALL_STATE(1214)] = 45528, - [SMALL_STATE(1215)] = 45614, - [SMALL_STATE(1216)] = 45676, - [SMALL_STATE(1217)] = 45736, - [SMALL_STATE(1218)] = 45816, - [SMALL_STATE(1219)] = 45888, - [SMALL_STATE(1220)] = 45954, - [SMALL_STATE(1221)] = 46030, - [SMALL_STATE(1222)] = 46110, - [SMALL_STATE(1223)] = 46170, - [SMALL_STATE(1224)] = 46256, - [SMALL_STATE(1225)] = 46342, - [SMALL_STATE(1226)] = 46412, - [SMALL_STATE(1227)] = 46480, - [SMALL_STATE(1228)] = 46544, - [SMALL_STATE(1229)] = 46630, - [SMALL_STATE(1230)] = 46710, - [SMALL_STATE(1231)] = 46760, - [SMALL_STATE(1232)] = 46846, - [SMALL_STATE(1233)] = 46932, - [SMALL_STATE(1234)] = 47018, - [SMALL_STATE(1235)] = 47104, - [SMALL_STATE(1236)] = 47175, - [SMALL_STATE(1237)] = 47243, - [SMALL_STATE(1238)] = 47311, - [SMALL_STATE(1239)] = 47376, - [SMALL_STATE(1240)] = 47441, - [SMALL_STATE(1241)] = 47506, - [SMALL_STATE(1242)] = 47571, - [SMALL_STATE(1243)] = 47636, - [SMALL_STATE(1244)] = 47676, - [SMALL_STATE(1245)] = 47716, - [SMALL_STATE(1246)] = 47756, - [SMALL_STATE(1247)] = 47811, - [SMALL_STATE(1248)] = 47866, - [SMALL_STATE(1249)] = 47921, - [SMALL_STATE(1250)] = 47976, - [SMALL_STATE(1251)] = 48031, - [SMALL_STATE(1252)] = 48086, - [SMALL_STATE(1253)] = 48141, - [SMALL_STATE(1254)] = 48193, - [SMALL_STATE(1255)] = 48245, - [SMALL_STATE(1256)] = 48275, - [SMALL_STATE(1257)] = 48305, - [SMALL_STATE(1258)] = 48345, - [SMALL_STATE(1259)] = 48387, - [SMALL_STATE(1260)] = 48416, - [SMALL_STATE(1261)] = 48445, - [SMALL_STATE(1262)] = 48474, - [SMALL_STATE(1263)] = 48503, - [SMALL_STATE(1264)] = 48532, - [SMALL_STATE(1265)] = 48569, - [SMALL_STATE(1266)] = 48598, - [SMALL_STATE(1267)] = 48627, - [SMALL_STATE(1268)] = 48656, - [SMALL_STATE(1269)] = 48693, - [SMALL_STATE(1270)] = 48725, - [SMALL_STATE(1271)] = 48779, - [SMALL_STATE(1272)] = 48811, - [SMALL_STATE(1273)] = 48843, - [SMALL_STATE(1274)] = 48897, - [SMALL_STATE(1275)] = 48920, - [SMALL_STATE(1276)] = 48945, - [SMALL_STATE(1277)] = 48969, - [SMALL_STATE(1278)] = 48993, - [SMALL_STATE(1279)] = 49037, - [SMALL_STATE(1280)] = 49061, - [SMALL_STATE(1281)] = 49105, - [SMALL_STATE(1282)] = 49127, - [SMALL_STATE(1283)] = 49149, - [SMALL_STATE(1284)] = 49179, - [SMALL_STATE(1285)] = 49203, - [SMALL_STATE(1286)] = 49227, - [SMALL_STATE(1287)] = 49251, - [SMALL_STATE(1288)] = 49275, - [SMALL_STATE(1289)] = 49299, - [SMALL_STATE(1290)] = 49323, - [SMALL_STATE(1291)] = 49345, - [SMALL_STATE(1292)] = 49391, - [SMALL_STATE(1293)] = 49413, - [SMALL_STATE(1294)] = 49437, - [SMALL_STATE(1295)] = 49462, - [SMALL_STATE(1296)] = 49485, - [SMALL_STATE(1297)] = 49506, - [SMALL_STATE(1298)] = 49527, - [SMALL_STATE(1299)] = 49552, - [SMALL_STATE(1300)] = 49573, - [SMALL_STATE(1301)] = 49596, - [SMALL_STATE(1302)] = 49619, - [SMALL_STATE(1303)] = 49642, - [SMALL_STATE(1304)] = 49663, - [SMALL_STATE(1305)] = 49686, - [SMALL_STATE(1306)] = 49711, - [SMALL_STATE(1307)] = 49738, - [SMALL_STATE(1308)] = 49761, - [SMALL_STATE(1309)] = 49786, - [SMALL_STATE(1310)] = 49809, - [SMALL_STATE(1311)] = 49834, - [SMALL_STATE(1312)] = 49857, - [SMALL_STATE(1313)] = 49882, - [SMALL_STATE(1314)] = 49903, - [SMALL_STATE(1315)] = 49948, - [SMALL_STATE(1316)] = 49968, - [SMALL_STATE(1317)] = 49988, - [SMALL_STATE(1318)] = 50010, - [SMALL_STATE(1319)] = 50030, - [SMALL_STATE(1320)] = 50050, - [SMALL_STATE(1321)] = 50070, - [SMALL_STATE(1322)] = 50090, - [SMALL_STATE(1323)] = 50110, - [SMALL_STATE(1324)] = 50130, - [SMALL_STATE(1325)] = 50150, - [SMALL_STATE(1326)] = 50170, - [SMALL_STATE(1327)] = 50194, - [SMALL_STATE(1328)] = 50216, - [SMALL_STATE(1329)] = 50236, - [SMALL_STATE(1330)] = 50256, - [SMALL_STATE(1331)] = 50276, - [SMALL_STATE(1332)] = 50298, - [SMALL_STATE(1333)] = 50318, - [SMALL_STATE(1334)] = 50338, - [SMALL_STATE(1335)] = 50358, - [SMALL_STATE(1336)] = 50378, - [SMALL_STATE(1337)] = 50398, - [SMALL_STATE(1338)] = 50418, - [SMALL_STATE(1339)] = 50438, - [SMALL_STATE(1340)] = 50458, - [SMALL_STATE(1341)] = 50478, - [SMALL_STATE(1342)] = 50498, - [SMALL_STATE(1343)] = 50518, - [SMALL_STATE(1344)] = 50538, - [SMALL_STATE(1345)] = 50558, - [SMALL_STATE(1346)] = 50578, - [SMALL_STATE(1347)] = 50601, - [SMALL_STATE(1348)] = 50624, - [SMALL_STATE(1349)] = 50645, - [SMALL_STATE(1350)] = 50670, - [SMALL_STATE(1351)] = 50693, - [SMALL_STATE(1352)] = 50714, - [SMALL_STATE(1353)] = 50739, - [SMALL_STATE(1354)] = 50764, - [SMALL_STATE(1355)] = 50789, - [SMALL_STATE(1356)] = 50812, - [SMALL_STATE(1357)] = 50835, - [SMALL_STATE(1358)] = 50858, - [SMALL_STATE(1359)] = 50881, - [SMALL_STATE(1360)] = 50906, - [SMALL_STATE(1361)] = 50941, - [SMALL_STATE(1362)] = 50962, - [SMALL_STATE(1363)] = 50987, - [SMALL_STATE(1364)] = 51010, - [SMALL_STATE(1365)] = 51033, - [SMALL_STATE(1366)] = 51056, - [SMALL_STATE(1367)] = 51081, - [SMALL_STATE(1368)] = 51104, - [SMALL_STATE(1369)] = 51129, - [SMALL_STATE(1370)] = 51152, - [SMALL_STATE(1371)] = 51178, - [SMALL_STATE(1372)] = 51198, - [SMALL_STATE(1373)] = 51218, - [SMALL_STATE(1374)] = 51238, - [SMALL_STATE(1375)] = 51258, - [SMALL_STATE(1376)] = 51278, - [SMALL_STATE(1377)] = 51298, - [SMALL_STATE(1378)] = 51318, - [SMALL_STATE(1379)] = 51338, - [SMALL_STATE(1380)] = 51358, - [SMALL_STATE(1381)] = 51378, - [SMALL_STATE(1382)] = 51398, - [SMALL_STATE(1383)] = 51418, - [SMALL_STATE(1384)] = 51438, - [SMALL_STATE(1385)] = 51458, - [SMALL_STATE(1386)] = 51482, - [SMALL_STATE(1387)] = 51502, - [SMALL_STATE(1388)] = 51522, - [SMALL_STATE(1389)] = 51542, - [SMALL_STATE(1390)] = 51562, - [SMALL_STATE(1391)] = 51582, - [SMALL_STATE(1392)] = 51602, - [SMALL_STATE(1393)] = 51622, - [SMALL_STATE(1394)] = 51642, - [SMALL_STATE(1395)] = 51662, - [SMALL_STATE(1396)] = 51682, - [SMALL_STATE(1397)] = 51702, - [SMALL_STATE(1398)] = 51722, - [SMALL_STATE(1399)] = 51748, - [SMALL_STATE(1400)] = 51768, - [SMALL_STATE(1401)] = 51788, - [SMALL_STATE(1402)] = 51812, - [SMALL_STATE(1403)] = 51836, - [SMALL_STATE(1404)] = 51856, - [SMALL_STATE(1405)] = 51876, - [SMALL_STATE(1406)] = 51900, - [SMALL_STATE(1407)] = 51920, - [SMALL_STATE(1408)] = 51951, - [SMALL_STATE(1409)] = 51984, - [SMALL_STATE(1410)] = 52015, - [SMALL_STATE(1411)] = 52046, - [SMALL_STATE(1412)] = 52079, - [SMALL_STATE(1413)] = 52112, - [SMALL_STATE(1414)] = 52137, - [SMALL_STATE(1415)] = 52168, - [SMALL_STATE(1416)] = 52193, - [SMALL_STATE(1417)] = 52218, - [SMALL_STATE(1418)] = 52249, - [SMALL_STATE(1419)] = 52276, - [SMALL_STATE(1420)] = 52307, - [SMALL_STATE(1421)] = 52338, - [SMALL_STATE(1422)] = 52369, - [SMALL_STATE(1423)] = 52392, - [SMALL_STATE(1424)] = 52425, - [SMALL_STATE(1425)] = 52448, - [SMALL_STATE(1426)] = 52471, - [SMALL_STATE(1427)] = 52500, - [SMALL_STATE(1428)] = 52531, - [SMALL_STATE(1429)] = 52553, - [SMALL_STATE(1430)] = 52583, - [SMALL_STATE(1431)] = 52613, - [SMALL_STATE(1432)] = 52635, - [SMALL_STATE(1433)] = 52661, - [SMALL_STATE(1434)] = 52693, - [SMALL_STATE(1435)] = 52725, - [SMALL_STATE(1436)] = 52747, - [SMALL_STATE(1437)] = 52777, - [SMALL_STATE(1438)] = 52809, - [SMALL_STATE(1439)] = 52839, - [SMALL_STATE(1440)] = 52861, - [SMALL_STATE(1441)] = 52887, - [SMALL_STATE(1442)] = 52917, - [SMALL_STATE(1443)] = 52947, - [SMALL_STATE(1444)] = 52977, - [SMALL_STATE(1445)] = 53007, - [SMALL_STATE(1446)] = 53037, - [SMALL_STATE(1447)] = 53063, - [SMALL_STATE(1448)] = 53093, - [SMALL_STATE(1449)] = 53123, - [SMALL_STATE(1450)] = 53153, - [SMALL_STATE(1451)] = 53185, - [SMALL_STATE(1452)] = 53215, - [SMALL_STATE(1453)] = 53245, - [SMALL_STATE(1454)] = 53275, - [SMALL_STATE(1455)] = 53305, - [SMALL_STATE(1456)] = 53335, - [SMALL_STATE(1457)] = 53365, - [SMALL_STATE(1458)] = 53395, - [SMALL_STATE(1459)] = 53417, - [SMALL_STATE(1460)] = 53447, - [SMALL_STATE(1461)] = 53477, - [SMALL_STATE(1462)] = 53499, - [SMALL_STATE(1463)] = 53522, - [SMALL_STATE(1464)] = 53547, - [SMALL_STATE(1465)] = 53568, - [SMALL_STATE(1466)] = 53591, - [SMALL_STATE(1467)] = 53618, - [SMALL_STATE(1468)] = 53643, - [SMALL_STATE(1469)] = 53668, - [SMALL_STATE(1470)] = 53693, - [SMALL_STATE(1471)] = 53722, - [SMALL_STATE(1472)] = 53747, - [SMALL_STATE(1473)] = 53770, - [SMALL_STATE(1474)] = 53789, - [SMALL_STATE(1475)] = 53816, - [SMALL_STATE(1476)] = 53839, - [SMALL_STATE(1477)] = 53866, - [SMALL_STATE(1478)] = 53891, - [SMALL_STATE(1479)] = 53918, - [SMALL_STATE(1480)] = 53945, - [SMALL_STATE(1481)] = 53970, - [SMALL_STATE(1482)] = 53999, - [SMALL_STATE(1483)] = 54018, - [SMALL_STATE(1484)] = 54037, - [SMALL_STATE(1485)] = 54066, - [SMALL_STATE(1486)] = 54085, - [SMALL_STATE(1487)] = 54112, - [SMALL_STATE(1488)] = 54131, - [SMALL_STATE(1489)] = 54160, - [SMALL_STATE(1490)] = 54187, - [SMALL_STATE(1491)] = 54206, - [SMALL_STATE(1492)] = 54227, - [SMALL_STATE(1493)] = 54254, - [SMALL_STATE(1494)] = 54281, - [SMALL_STATE(1495)] = 54308, - [SMALL_STATE(1496)] = 54333, - [SMALL_STATE(1497)] = 54352, - [SMALL_STATE(1498)] = 54371, - [SMALL_STATE(1499)] = 54396, - [SMALL_STATE(1500)] = 54423, - [SMALL_STATE(1501)] = 54442, - [SMALL_STATE(1502)] = 54461, - [SMALL_STATE(1503)] = 54488, - [SMALL_STATE(1504)] = 54515, - [SMALL_STATE(1505)] = 54534, - [SMALL_STATE(1506)] = 54563, - [SMALL_STATE(1507)] = 54590, - [SMALL_STATE(1508)] = 54605, - [SMALL_STATE(1509)] = 54634, - [SMALL_STATE(1510)] = 54661, - [SMALL_STATE(1511)] = 54684, - [SMALL_STATE(1512)] = 54706, - [SMALL_STATE(1513)] = 54732, - [SMALL_STATE(1514)] = 54748, - [SMALL_STATE(1515)] = 54774, - [SMALL_STATE(1516)] = 54800, - [SMALL_STATE(1517)] = 54824, - [SMALL_STATE(1518)] = 54850, - [SMALL_STATE(1519)] = 54866, - [SMALL_STATE(1520)] = 54892, - [SMALL_STATE(1521)] = 54906, - [SMALL_STATE(1522)] = 54932, - [SMALL_STATE(1523)] = 54956, - [SMALL_STATE(1524)] = 54982, - [SMALL_STATE(1525)] = 54998, - [SMALL_STATE(1526)] = 55024, - [SMALL_STATE(1527)] = 55040, - [SMALL_STATE(1528)] = 55066, - [SMALL_STATE(1529)] = 55092, - [SMALL_STATE(1530)] = 55114, - [SMALL_STATE(1531)] = 55140, - [SMALL_STATE(1532)] = 55156, - [SMALL_STATE(1533)] = 55180, - [SMALL_STATE(1534)] = 55206, - [SMALL_STATE(1535)] = 55220, - [SMALL_STATE(1536)] = 55234, - [SMALL_STATE(1537)] = 55260, - [SMALL_STATE(1538)] = 55274, - [SMALL_STATE(1539)] = 55288, - [SMALL_STATE(1540)] = 55302, - [SMALL_STATE(1541)] = 55328, - [SMALL_STATE(1542)] = 55354, - [SMALL_STATE(1543)] = 55380, - [SMALL_STATE(1544)] = 55406, - [SMALL_STATE(1545)] = 55420, - [SMALL_STATE(1546)] = 55436, - [SMALL_STATE(1547)] = 55460, - [SMALL_STATE(1548)] = 55486, - [SMALL_STATE(1549)] = 55508, - [SMALL_STATE(1550)] = 55534, - [SMALL_STATE(1551)] = 55560, - [SMALL_STATE(1552)] = 55584, - [SMALL_STATE(1553)] = 55600, - [SMALL_STATE(1554)] = 55622, - [SMALL_STATE(1555)] = 55644, - [SMALL_STATE(1556)] = 55666, - [SMALL_STATE(1557)] = 55682, - [SMALL_STATE(1558)] = 55705, - [SMALL_STATE(1559)] = 55728, - [SMALL_STATE(1560)] = 55751, - [SMALL_STATE(1561)] = 55774, - [SMALL_STATE(1562)] = 55793, - [SMALL_STATE(1563)] = 55816, - [SMALL_STATE(1564)] = 55839, - [SMALL_STATE(1565)] = 55862, - [SMALL_STATE(1566)] = 55885, - [SMALL_STATE(1567)] = 55908, - [SMALL_STATE(1568)] = 55931, - [SMALL_STATE(1569)] = 55954, - [SMALL_STATE(1570)] = 55977, - [SMALL_STATE(1571)] = 56000, - [SMALL_STATE(1572)] = 56017, - [SMALL_STATE(1573)] = 56040, - [SMALL_STATE(1574)] = 56063, - [SMALL_STATE(1575)] = 56086, - [SMALL_STATE(1576)] = 56109, - [SMALL_STATE(1577)] = 56126, - [SMALL_STATE(1578)] = 56149, - [SMALL_STATE(1579)] = 56172, - [SMALL_STATE(1580)] = 56195, - [SMALL_STATE(1581)] = 56218, - [SMALL_STATE(1582)] = 56241, - [SMALL_STATE(1583)] = 56264, - [SMALL_STATE(1584)] = 56283, - [SMALL_STATE(1585)] = 56306, - [SMALL_STATE(1586)] = 56323, - [SMALL_STATE(1587)] = 56340, - [SMALL_STATE(1588)] = 56363, - [SMALL_STATE(1589)] = 56386, - [SMALL_STATE(1590)] = 56409, - [SMALL_STATE(1591)] = 56432, - [SMALL_STATE(1592)] = 56455, - [SMALL_STATE(1593)] = 56478, - [SMALL_STATE(1594)] = 56501, - [SMALL_STATE(1595)] = 56524, - [SMALL_STATE(1596)] = 56541, - [SMALL_STATE(1597)] = 56564, - [SMALL_STATE(1598)] = 56587, - [SMALL_STATE(1599)] = 56606, - [SMALL_STATE(1600)] = 56629, - [SMALL_STATE(1601)] = 56646, - [SMALL_STATE(1602)] = 56669, - [SMALL_STATE(1603)] = 56692, - [SMALL_STATE(1604)] = 56715, - [SMALL_STATE(1605)] = 56738, - [SMALL_STATE(1606)] = 56753, - [SMALL_STATE(1607)] = 56774, - [SMALL_STATE(1608)] = 56795, - [SMALL_STATE(1609)] = 56812, - [SMALL_STATE(1610)] = 56835, - [SMALL_STATE(1611)] = 56850, - [SMALL_STATE(1612)] = 56873, - [SMALL_STATE(1613)] = 56896, - [SMALL_STATE(1614)] = 56919, - [SMALL_STATE(1615)] = 56942, - [SMALL_STATE(1616)] = 56965, - [SMALL_STATE(1617)] = 56988, - [SMALL_STATE(1618)] = 57006, - [SMALL_STATE(1619)] = 57018, - [SMALL_STATE(1620)] = 57038, - [SMALL_STATE(1621)] = 57050, - [SMALL_STATE(1622)] = 57062, - [SMALL_STATE(1623)] = 57082, - [SMALL_STATE(1624)] = 57098, - [SMALL_STATE(1625)] = 57110, - [SMALL_STATE(1626)] = 57126, - [SMALL_STATE(1627)] = 57138, - [SMALL_STATE(1628)] = 57156, - [SMALL_STATE(1629)] = 57168, - [SMALL_STATE(1630)] = 57184, - [SMALL_STATE(1631)] = 57196, - [SMALL_STATE(1632)] = 57208, - [SMALL_STATE(1633)] = 57220, - [SMALL_STATE(1634)] = 57240, - [SMALL_STATE(1635)] = 57260, - [SMALL_STATE(1636)] = 57278, - [SMALL_STATE(1637)] = 57290, - [SMALL_STATE(1638)] = 57302, - [SMALL_STATE(1639)] = 57318, - [SMALL_STATE(1640)] = 57338, - [SMALL_STATE(1641)] = 57354, - [SMALL_STATE(1642)] = 57374, - [SMALL_STATE(1643)] = 57390, - [SMALL_STATE(1644)] = 57410, - [SMALL_STATE(1645)] = 57430, - [SMALL_STATE(1646)] = 57450, - [SMALL_STATE(1647)] = 57468, - [SMALL_STATE(1648)] = 57488, - [SMALL_STATE(1649)] = 57508, - [SMALL_STATE(1650)] = 57528, - [SMALL_STATE(1651)] = 57544, - [SMALL_STATE(1652)] = 57560, - [SMALL_STATE(1653)] = 57572, - [SMALL_STATE(1654)] = 57588, - [SMALL_STATE(1655)] = 57606, - [SMALL_STATE(1656)] = 57624, - [SMALL_STATE(1657)] = 57640, - [SMALL_STATE(1658)] = 57660, - [SMALL_STATE(1659)] = 57680, - [SMALL_STATE(1660)] = 57700, - [SMALL_STATE(1661)] = 57720, - [SMALL_STATE(1662)] = 57740, - [SMALL_STATE(1663)] = 57758, - [SMALL_STATE(1664)] = 57778, - [SMALL_STATE(1665)] = 57794, - [SMALL_STATE(1666)] = 57814, - [SMALL_STATE(1667)] = 57830, - [SMALL_STATE(1668)] = 57846, - [SMALL_STATE(1669)] = 57866, - [SMALL_STATE(1670)] = 57880, - [SMALL_STATE(1671)] = 57896, - [SMALL_STATE(1672)] = 57908, - [SMALL_STATE(1673)] = 57928, - [SMALL_STATE(1674)] = 57944, - [SMALL_STATE(1675)] = 57956, - [SMALL_STATE(1676)] = 57976, - [SMALL_STATE(1677)] = 57988, - [SMALL_STATE(1678)] = 58004, - [SMALL_STATE(1679)] = 58020, - [SMALL_STATE(1680)] = 58040, - [SMALL_STATE(1681)] = 58060, - [SMALL_STATE(1682)] = 58080, - [SMALL_STATE(1683)] = 58096, - [SMALL_STATE(1684)] = 58116, - [SMALL_STATE(1685)] = 58132, - [SMALL_STATE(1686)] = 58152, - [SMALL_STATE(1687)] = 58168, - [SMALL_STATE(1688)] = 58186, - [SMALL_STATE(1689)] = 58206, - [SMALL_STATE(1690)] = 58226, - [SMALL_STATE(1691)] = 58242, - [SMALL_STATE(1692)] = 58262, - [SMALL_STATE(1693)] = 58279, - [SMALL_STATE(1694)] = 58294, - [SMALL_STATE(1695)] = 58311, - [SMALL_STATE(1696)] = 58326, - [SMALL_STATE(1697)] = 58343, - [SMALL_STATE(1698)] = 58360, - [SMALL_STATE(1699)] = 58373, - [SMALL_STATE(1700)] = 58390, - [SMALL_STATE(1701)] = 58407, - [SMALL_STATE(1702)] = 58424, - [SMALL_STATE(1703)] = 58441, - [SMALL_STATE(1704)] = 58458, - [SMALL_STATE(1705)] = 58475, - [SMALL_STATE(1706)] = 58490, - [SMALL_STATE(1707)] = 58507, - [SMALL_STATE(1708)] = 58524, - [SMALL_STATE(1709)] = 58541, - [SMALL_STATE(1710)] = 58558, - [SMALL_STATE(1711)] = 58573, - [SMALL_STATE(1712)] = 58590, - [SMALL_STATE(1713)] = 58607, - [SMALL_STATE(1714)] = 58624, - [SMALL_STATE(1715)] = 58639, - [SMALL_STATE(1716)] = 58654, - [SMALL_STATE(1717)] = 58667, - [SMALL_STATE(1718)] = 58682, - [SMALL_STATE(1719)] = 58699, - [SMALL_STATE(1720)] = 58716, - [SMALL_STATE(1721)] = 58733, - [SMALL_STATE(1722)] = 58748, - [SMALL_STATE(1723)] = 58763, - [SMALL_STATE(1724)] = 58780, - [SMALL_STATE(1725)] = 58797, - [SMALL_STATE(1726)] = 58814, - [SMALL_STATE(1727)] = 58829, - [SMALL_STATE(1728)] = 58846, - [SMALL_STATE(1729)] = 58863, - [SMALL_STATE(1730)] = 58878, - [SMALL_STATE(1731)] = 58893, - [SMALL_STATE(1732)] = 58910, - [SMALL_STATE(1733)] = 58923, - [SMALL_STATE(1734)] = 58940, - [SMALL_STATE(1735)] = 58955, - [SMALL_STATE(1736)] = 58972, - [SMALL_STATE(1737)] = 58987, - [SMALL_STATE(1738)] = 59004, - [SMALL_STATE(1739)] = 59019, - [SMALL_STATE(1740)] = 59036, - [SMALL_STATE(1741)] = 59053, - [SMALL_STATE(1742)] = 59070, - [SMALL_STATE(1743)] = 59087, - [SMALL_STATE(1744)] = 59104, - [SMALL_STATE(1745)] = 59121, - [SMALL_STATE(1746)] = 59136, - [SMALL_STATE(1747)] = 59151, - [SMALL_STATE(1748)] = 59166, - [SMALL_STATE(1749)] = 59183, - [SMALL_STATE(1750)] = 59198, - [SMALL_STATE(1751)] = 59215, - [SMALL_STATE(1752)] = 59232, - [SMALL_STATE(1753)] = 59249, - [SMALL_STATE(1754)] = 59266, - [SMALL_STATE(1755)] = 59281, - [SMALL_STATE(1756)] = 59298, - [SMALL_STATE(1757)] = 59315, - [SMALL_STATE(1758)] = 59332, - [SMALL_STATE(1759)] = 59349, - [SMALL_STATE(1760)] = 59366, - [SMALL_STATE(1761)] = 59383, - [SMALL_STATE(1762)] = 59400, - [SMALL_STATE(1763)] = 59415, - [SMALL_STATE(1764)] = 59428, - [SMALL_STATE(1765)] = 59445, - [SMALL_STATE(1766)] = 59462, - [SMALL_STATE(1767)] = 59479, - [SMALL_STATE(1768)] = 59494, - [SMALL_STATE(1769)] = 59511, - [SMALL_STATE(1770)] = 59524, - [SMALL_STATE(1771)] = 59537, - [SMALL_STATE(1772)] = 59550, - [SMALL_STATE(1773)] = 59567, - [SMALL_STATE(1774)] = 59584, - [SMALL_STATE(1775)] = 59601, - [SMALL_STATE(1776)] = 59618, - [SMALL_STATE(1777)] = 59635, - [SMALL_STATE(1778)] = 59652, - [SMALL_STATE(1779)] = 59669, - [SMALL_STATE(1780)] = 59686, - [SMALL_STATE(1781)] = 59701, - [SMALL_STATE(1782)] = 59718, - [SMALL_STATE(1783)] = 59735, - [SMALL_STATE(1784)] = 59748, - [SMALL_STATE(1785)] = 59761, - [SMALL_STATE(1786)] = 59776, - [SMALL_STATE(1787)] = 59793, - [SMALL_STATE(1788)] = 59806, - [SMALL_STATE(1789)] = 59821, - [SMALL_STATE(1790)] = 59836, - [SMALL_STATE(1791)] = 59853, - [SMALL_STATE(1792)] = 59865, - [SMALL_STATE(1793)] = 59879, - [SMALL_STATE(1794)] = 59891, - [SMALL_STATE(1795)] = 59905, - [SMALL_STATE(1796)] = 59919, - [SMALL_STATE(1797)] = 59929, - [SMALL_STATE(1798)] = 59939, - [SMALL_STATE(1799)] = 59949, - [SMALL_STATE(1800)] = 59959, - [SMALL_STATE(1801)] = 59969, - [SMALL_STATE(1802)] = 59983, - [SMALL_STATE(1803)] = 59993, - [SMALL_STATE(1804)] = 60003, - [SMALL_STATE(1805)] = 60013, - [SMALL_STATE(1806)] = 60027, - [SMALL_STATE(1807)] = 60041, - [SMALL_STATE(1808)] = 60055, - [SMALL_STATE(1809)] = 60065, - [SMALL_STATE(1810)] = 60075, - [SMALL_STATE(1811)] = 60085, - [SMALL_STATE(1812)] = 60095, - [SMALL_STATE(1813)] = 60109, - [SMALL_STATE(1814)] = 60119, - [SMALL_STATE(1815)] = 60133, - [SMALL_STATE(1816)] = 60147, - [SMALL_STATE(1817)] = 60157, - [SMALL_STATE(1818)] = 60171, - [SMALL_STATE(1819)] = 60185, - [SMALL_STATE(1820)] = 60195, - [SMALL_STATE(1821)] = 60209, - [SMALL_STATE(1822)] = 60223, - [SMALL_STATE(1823)] = 60237, - [SMALL_STATE(1824)] = 60251, - [SMALL_STATE(1825)] = 60263, - [SMALL_STATE(1826)] = 60277, - [SMALL_STATE(1827)] = 60291, - [SMALL_STATE(1828)] = 60305, - [SMALL_STATE(1829)] = 60317, - [SMALL_STATE(1830)] = 60329, - [SMALL_STATE(1831)] = 60343, - [SMALL_STATE(1832)] = 60355, - [SMALL_STATE(1833)] = 60369, - [SMALL_STATE(1834)] = 60383, - [SMALL_STATE(1835)] = 60397, - [SMALL_STATE(1836)] = 60411, - [SMALL_STATE(1837)] = 60423, - [SMALL_STATE(1838)] = 60437, - [SMALL_STATE(1839)] = 60451, - [SMALL_STATE(1840)] = 60465, - [SMALL_STATE(1841)] = 60479, - [SMALL_STATE(1842)] = 60491, - [SMALL_STATE(1843)] = 60501, - [SMALL_STATE(1844)] = 60515, - [SMALL_STATE(1845)] = 60529, - [SMALL_STATE(1846)] = 60543, - [SMALL_STATE(1847)] = 60557, - [SMALL_STATE(1848)] = 60571, - [SMALL_STATE(1849)] = 60583, - [SMALL_STATE(1850)] = 60597, - [SMALL_STATE(1851)] = 60611, - [SMALL_STATE(1852)] = 60621, - [SMALL_STATE(1853)] = 60631, - [SMALL_STATE(1854)] = 60645, - [SMALL_STATE(1855)] = 60659, - [SMALL_STATE(1856)] = 60673, - [SMALL_STATE(1857)] = 60683, - [SMALL_STATE(1858)] = 60697, - [SMALL_STATE(1859)] = 60709, - [SMALL_STATE(1860)] = 60719, - [SMALL_STATE(1861)] = 60733, - [SMALL_STATE(1862)] = 60747, - [SMALL_STATE(1863)] = 60761, - [SMALL_STATE(1864)] = 60771, - [SMALL_STATE(1865)] = 60785, - [SMALL_STATE(1866)] = 60795, - [SMALL_STATE(1867)] = 60805, - [SMALL_STATE(1868)] = 60819, - [SMALL_STATE(1869)] = 60833, - [SMALL_STATE(1870)] = 60845, - [SMALL_STATE(1871)] = 60857, - [SMALL_STATE(1872)] = 60871, - [SMALL_STATE(1873)] = 60885, - [SMALL_STATE(1874)] = 60899, - [SMALL_STATE(1875)] = 60913, - [SMALL_STATE(1876)] = 60925, - [SMALL_STATE(1877)] = 60939, - [SMALL_STATE(1878)] = 60953, - [SMALL_STATE(1879)] = 60967, - [SMALL_STATE(1880)] = 60981, - [SMALL_STATE(1881)] = 60995, - [SMALL_STATE(1882)] = 61007, - [SMALL_STATE(1883)] = 61019, - [SMALL_STATE(1884)] = 61031, - [SMALL_STATE(1885)] = 61045, - [SMALL_STATE(1886)] = 61059, - [SMALL_STATE(1887)] = 61073, - [SMALL_STATE(1888)] = 61087, - [SMALL_STATE(1889)] = 61099, - [SMALL_STATE(1890)] = 61109, - [SMALL_STATE(1891)] = 61119, - [SMALL_STATE(1892)] = 61131, - [SMALL_STATE(1893)] = 61145, - [SMALL_STATE(1894)] = 61159, - [SMALL_STATE(1895)] = 61169, - [SMALL_STATE(1896)] = 61183, - [SMALL_STATE(1897)] = 61195, - [SMALL_STATE(1898)] = 61209, - [SMALL_STATE(1899)] = 61223, - [SMALL_STATE(1900)] = 61237, - [SMALL_STATE(1901)] = 61251, - [SMALL_STATE(1902)] = 61265, - [SMALL_STATE(1903)] = 61277, - [SMALL_STATE(1904)] = 61291, - [SMALL_STATE(1905)] = 61303, - [SMALL_STATE(1906)] = 61317, - [SMALL_STATE(1907)] = 61331, - [SMALL_STATE(1908)] = 61345, - [SMALL_STATE(1909)] = 61359, - [SMALL_STATE(1910)] = 61371, - [SMALL_STATE(1911)] = 61385, - [SMALL_STATE(1912)] = 61399, - [SMALL_STATE(1913)] = 61413, - [SMALL_STATE(1914)] = 61427, - [SMALL_STATE(1915)] = 61441, - [SMALL_STATE(1916)] = 61455, - [SMALL_STATE(1917)] = 61469, - [SMALL_STATE(1918)] = 61483, - [SMALL_STATE(1919)] = 61497, - [SMALL_STATE(1920)] = 61511, - [SMALL_STATE(1921)] = 61523, - [SMALL_STATE(1922)] = 61537, - [SMALL_STATE(1923)] = 61549, - [SMALL_STATE(1924)] = 61563, - [SMALL_STATE(1925)] = 61577, - [SMALL_STATE(1926)] = 61591, - [SMALL_STATE(1927)] = 61605, - [SMALL_STATE(1928)] = 61617, - [SMALL_STATE(1929)] = 61627, - [SMALL_STATE(1930)] = 61641, - [SMALL_STATE(1931)] = 61655, - [SMALL_STATE(1932)] = 61669, - [SMALL_STATE(1933)] = 61683, - [SMALL_STATE(1934)] = 61697, - [SMALL_STATE(1935)] = 61711, - [SMALL_STATE(1936)] = 61721, - [SMALL_STATE(1937)] = 61735, - [SMALL_STATE(1938)] = 61749, - [SMALL_STATE(1939)] = 61763, - [SMALL_STATE(1940)] = 61773, - [SMALL_STATE(1941)] = 61787, - [SMALL_STATE(1942)] = 61797, - [SMALL_STATE(1943)] = 61811, - [SMALL_STATE(1944)] = 61825, - [SMALL_STATE(1945)] = 61839, - [SMALL_STATE(1946)] = 61853, - [SMALL_STATE(1947)] = 61867, - [SMALL_STATE(1948)] = 61881, - [SMALL_STATE(1949)] = 61895, - [SMALL_STATE(1950)] = 61909, - [SMALL_STATE(1951)] = 61923, - [SMALL_STATE(1952)] = 61937, - [SMALL_STATE(1953)] = 61951, - [SMALL_STATE(1954)] = 61965, - [SMALL_STATE(1955)] = 61979, - [SMALL_STATE(1956)] = 61993, - [SMALL_STATE(1957)] = 62007, - [SMALL_STATE(1958)] = 62021, - [SMALL_STATE(1959)] = 62035, - [SMALL_STATE(1960)] = 62049, - [SMALL_STATE(1961)] = 62063, - [SMALL_STATE(1962)] = 62077, - [SMALL_STATE(1963)] = 62091, - [SMALL_STATE(1964)] = 62101, - [SMALL_STATE(1965)] = 62115, - [SMALL_STATE(1966)] = 62129, - [SMALL_STATE(1967)] = 62139, - [SMALL_STATE(1968)] = 62151, - [SMALL_STATE(1969)] = 62165, - [SMALL_STATE(1970)] = 62179, - [SMALL_STATE(1971)] = 62193, - [SMALL_STATE(1972)] = 62207, - [SMALL_STATE(1973)] = 62221, - [SMALL_STATE(1974)] = 62235, - [SMALL_STATE(1975)] = 62245, - [SMALL_STATE(1976)] = 62259, - [SMALL_STATE(1977)] = 62273, - [SMALL_STATE(1978)] = 62287, - [SMALL_STATE(1979)] = 62301, - [SMALL_STATE(1980)] = 62315, - [SMALL_STATE(1981)] = 62329, - [SMALL_STATE(1982)] = 62343, - [SMALL_STATE(1983)] = 62357, - [SMALL_STATE(1984)] = 62371, - [SMALL_STATE(1985)] = 62383, - [SMALL_STATE(1986)] = 62397, - [SMALL_STATE(1987)] = 62407, - [SMALL_STATE(1988)] = 62421, - [SMALL_STATE(1989)] = 62435, - [SMALL_STATE(1990)] = 62445, - [SMALL_STATE(1991)] = 62459, - [SMALL_STATE(1992)] = 62473, - [SMALL_STATE(1993)] = 62487, - [SMALL_STATE(1994)] = 62501, - [SMALL_STATE(1995)] = 62515, - [SMALL_STATE(1996)] = 62527, - [SMALL_STATE(1997)] = 62539, - [SMALL_STATE(1998)] = 62553, - [SMALL_STATE(1999)] = 62567, - [SMALL_STATE(2000)] = 62581, - [SMALL_STATE(2001)] = 62595, - [SMALL_STATE(2002)] = 62609, - [SMALL_STATE(2003)] = 62623, - [SMALL_STATE(2004)] = 62637, - [SMALL_STATE(2005)] = 62651, - [SMALL_STATE(2006)] = 62665, - [SMALL_STATE(2007)] = 62679, - [SMALL_STATE(2008)] = 62693, - [SMALL_STATE(2009)] = 62707, - [SMALL_STATE(2010)] = 62721, - [SMALL_STATE(2011)] = 62733, - [SMALL_STATE(2012)] = 62747, - [SMALL_STATE(2013)] = 62761, - [SMALL_STATE(2014)] = 62775, - [SMALL_STATE(2015)] = 62789, - [SMALL_STATE(2016)] = 62803, - [SMALL_STATE(2017)] = 62815, - [SMALL_STATE(2018)] = 62829, - [SMALL_STATE(2019)] = 62843, - [SMALL_STATE(2020)] = 62855, - [SMALL_STATE(2021)] = 62869, - [SMALL_STATE(2022)] = 62883, - [SMALL_STATE(2023)] = 62897, - [SMALL_STATE(2024)] = 62911, - [SMALL_STATE(2025)] = 62923, - [SMALL_STATE(2026)] = 62937, - [SMALL_STATE(2027)] = 62951, - [SMALL_STATE(2028)] = 62965, - [SMALL_STATE(2029)] = 62979, - [SMALL_STATE(2030)] = 62991, - [SMALL_STATE(2031)] = 63001, - [SMALL_STATE(2032)] = 63015, - [SMALL_STATE(2033)] = 63029, - [SMALL_STATE(2034)] = 63041, - [SMALL_STATE(2035)] = 63055, - [SMALL_STATE(2036)] = 63069, - [SMALL_STATE(2037)] = 63083, - [SMALL_STATE(2038)] = 63094, - [SMALL_STATE(2039)] = 63105, - [SMALL_STATE(2040)] = 63116, - [SMALL_STATE(2041)] = 63127, - [SMALL_STATE(2042)] = 63138, - [SMALL_STATE(2043)] = 63149, - [SMALL_STATE(2044)] = 63160, - [SMALL_STATE(2045)] = 63171, - [SMALL_STATE(2046)] = 63182, - [SMALL_STATE(2047)] = 63191, - [SMALL_STATE(2048)] = 63202, - [SMALL_STATE(2049)] = 63213, - [SMALL_STATE(2050)] = 63224, - [SMALL_STATE(2051)] = 63235, - [SMALL_STATE(2052)] = 63246, - [SMALL_STATE(2053)] = 63255, - [SMALL_STATE(2054)] = 63266, - [SMALL_STATE(2055)] = 63277, - [SMALL_STATE(2056)] = 63288, - [SMALL_STATE(2057)] = 63297, - [SMALL_STATE(2058)] = 63308, - [SMALL_STATE(2059)] = 63319, - [SMALL_STATE(2060)] = 63330, - [SMALL_STATE(2061)] = 63341, - [SMALL_STATE(2062)] = 63352, - [SMALL_STATE(2063)] = 63363, - [SMALL_STATE(2064)] = 63374, - [SMALL_STATE(2065)] = 63385, - [SMALL_STATE(2066)] = 63396, - [SMALL_STATE(2067)] = 63405, - [SMALL_STATE(2068)] = 63416, - [SMALL_STATE(2069)] = 63427, - [SMALL_STATE(2070)] = 63438, - [SMALL_STATE(2071)] = 63449, - [SMALL_STATE(2072)] = 63460, - [SMALL_STATE(2073)] = 63471, - [SMALL_STATE(2074)] = 63482, - [SMALL_STATE(2075)] = 63493, - [SMALL_STATE(2076)] = 63502, - [SMALL_STATE(2077)] = 63513, - [SMALL_STATE(2078)] = 63524, - [SMALL_STATE(2079)] = 63535, - [SMALL_STATE(2080)] = 63546, - [SMALL_STATE(2081)] = 63557, - [SMALL_STATE(2082)] = 63568, - [SMALL_STATE(2083)] = 63579, - [SMALL_STATE(2084)] = 63590, - [SMALL_STATE(2085)] = 63601, - [SMALL_STATE(2086)] = 63610, - [SMALL_STATE(2087)] = 63619, - [SMALL_STATE(2088)] = 63628, - [SMALL_STATE(2089)] = 63639, - [SMALL_STATE(2090)] = 63650, - [SMALL_STATE(2091)] = 63661, - [SMALL_STATE(2092)] = 63672, - [SMALL_STATE(2093)] = 63683, - [SMALL_STATE(2094)] = 63694, - [SMALL_STATE(2095)] = 63705, - [SMALL_STATE(2096)] = 63716, - [SMALL_STATE(2097)] = 63727, - [SMALL_STATE(2098)] = 63738, - [SMALL_STATE(2099)] = 63749, - [SMALL_STATE(2100)] = 63760, - [SMALL_STATE(2101)] = 63771, - [SMALL_STATE(2102)] = 63782, - [SMALL_STATE(2103)] = 63791, - [SMALL_STATE(2104)] = 63802, - [SMALL_STATE(2105)] = 63811, - [SMALL_STATE(2106)] = 63822, - [SMALL_STATE(2107)] = 63833, - [SMALL_STATE(2108)] = 63844, - [SMALL_STATE(2109)] = 63855, - [SMALL_STATE(2110)] = 63866, - [SMALL_STATE(2111)] = 63875, - [SMALL_STATE(2112)] = 63886, - [SMALL_STATE(2113)] = 63895, - [SMALL_STATE(2114)] = 63906, - [SMALL_STATE(2115)] = 63917, - [SMALL_STATE(2116)] = 63928, - [SMALL_STATE(2117)] = 63937, - [SMALL_STATE(2118)] = 63948, - [SMALL_STATE(2119)] = 63959, - [SMALL_STATE(2120)] = 63970, - [SMALL_STATE(2121)] = 63981, - [SMALL_STATE(2122)] = 63992, - [SMALL_STATE(2123)] = 64003, - [SMALL_STATE(2124)] = 64014, - [SMALL_STATE(2125)] = 64025, - [SMALL_STATE(2126)] = 64036, - [SMALL_STATE(2127)] = 64047, - [SMALL_STATE(2128)] = 64058, - [SMALL_STATE(2129)] = 64069, - [SMALL_STATE(2130)] = 64080, - [SMALL_STATE(2131)] = 64091, - [SMALL_STATE(2132)] = 64102, - [SMALL_STATE(2133)] = 64113, - [SMALL_STATE(2134)] = 64124, - [SMALL_STATE(2135)] = 64135, - [SMALL_STATE(2136)] = 64146, - [SMALL_STATE(2137)] = 64157, - [SMALL_STATE(2138)] = 64168, - [SMALL_STATE(2139)] = 64179, - [SMALL_STATE(2140)] = 64190, - [SMALL_STATE(2141)] = 64201, - [SMALL_STATE(2142)] = 64212, - [SMALL_STATE(2143)] = 64223, - [SMALL_STATE(2144)] = 64234, - [SMALL_STATE(2145)] = 64245, - [SMALL_STATE(2146)] = 64256, - [SMALL_STATE(2147)] = 64267, - [SMALL_STATE(2148)] = 64278, - [SMALL_STATE(2149)] = 64289, - [SMALL_STATE(2150)] = 64300, - [SMALL_STATE(2151)] = 64311, - [SMALL_STATE(2152)] = 64322, - [SMALL_STATE(2153)] = 64333, - [SMALL_STATE(2154)] = 64344, - [SMALL_STATE(2155)] = 64355, - [SMALL_STATE(2156)] = 64366, - [SMALL_STATE(2157)] = 64377, - [SMALL_STATE(2158)] = 64388, - [SMALL_STATE(2159)] = 64399, - [SMALL_STATE(2160)] = 64410, - [SMALL_STATE(2161)] = 64421, - [SMALL_STATE(2162)] = 64432, - [SMALL_STATE(2163)] = 64443, - [SMALL_STATE(2164)] = 64454, - [SMALL_STATE(2165)] = 64465, - [SMALL_STATE(2166)] = 64476, - [SMALL_STATE(2167)] = 64487, - [SMALL_STATE(2168)] = 64498, - [SMALL_STATE(2169)] = 64509, - [SMALL_STATE(2170)] = 64520, - [SMALL_STATE(2171)] = 64531, - [SMALL_STATE(2172)] = 64542, - [SMALL_STATE(2173)] = 64553, - [SMALL_STATE(2174)] = 64564, - [SMALL_STATE(2175)] = 64575, - [SMALL_STATE(2176)] = 64586, - [SMALL_STATE(2177)] = 64597, - [SMALL_STATE(2178)] = 64606, - [SMALL_STATE(2179)] = 64617, - [SMALL_STATE(2180)] = 64628, - [SMALL_STATE(2181)] = 64639, - [SMALL_STATE(2182)] = 64650, - [SMALL_STATE(2183)] = 64661, - [SMALL_STATE(2184)] = 64670, - [SMALL_STATE(2185)] = 64681, - [SMALL_STATE(2186)] = 64692, - [SMALL_STATE(2187)] = 64701, - [SMALL_STATE(2188)] = 64712, - [SMALL_STATE(2189)] = 64721, - [SMALL_STATE(2190)] = 64732, - [SMALL_STATE(2191)] = 64743, - [SMALL_STATE(2192)] = 64754, - [SMALL_STATE(2193)] = 64763, - [SMALL_STATE(2194)] = 64774, - [SMALL_STATE(2195)] = 64785, - [SMALL_STATE(2196)] = 64796, - [SMALL_STATE(2197)] = 64807, - [SMALL_STATE(2198)] = 64818, - [SMALL_STATE(2199)] = 64829, - [SMALL_STATE(2200)] = 64840, - [SMALL_STATE(2201)] = 64851, - [SMALL_STATE(2202)] = 64862, - [SMALL_STATE(2203)] = 64873, - [SMALL_STATE(2204)] = 64884, - [SMALL_STATE(2205)] = 64895, - [SMALL_STATE(2206)] = 64906, - [SMALL_STATE(2207)] = 64917, - [SMALL_STATE(2208)] = 64928, - [SMALL_STATE(2209)] = 64939, - [SMALL_STATE(2210)] = 64950, - [SMALL_STATE(2211)] = 64961, - [SMALL_STATE(2212)] = 64972, - [SMALL_STATE(2213)] = 64983, - [SMALL_STATE(2214)] = 64994, - [SMALL_STATE(2215)] = 65005, - [SMALL_STATE(2216)] = 65014, - [SMALL_STATE(2217)] = 65025, - [SMALL_STATE(2218)] = 65036, - [SMALL_STATE(2219)] = 65045, - [SMALL_STATE(2220)] = 65056, - [SMALL_STATE(2221)] = 65067, - [SMALL_STATE(2222)] = 65076, - [SMALL_STATE(2223)] = 65087, - [SMALL_STATE(2224)] = 65098, - [SMALL_STATE(2225)] = 65109, - [SMALL_STATE(2226)] = 65118, - [SMALL_STATE(2227)] = 65127, - [SMALL_STATE(2228)] = 65138, - [SMALL_STATE(2229)] = 65147, - [SMALL_STATE(2230)] = 65158, - [SMALL_STATE(2231)] = 65167, - [SMALL_STATE(2232)] = 65178, - [SMALL_STATE(2233)] = 65189, - [SMALL_STATE(2234)] = 65200, - [SMALL_STATE(2235)] = 65211, - [SMALL_STATE(2236)] = 65222, - [SMALL_STATE(2237)] = 65233, - [SMALL_STATE(2238)] = 65244, - [SMALL_STATE(2239)] = 65255, - [SMALL_STATE(2240)] = 65264, - [SMALL_STATE(2241)] = 65275, - [SMALL_STATE(2242)] = 65286, - [SMALL_STATE(2243)] = 65297, - [SMALL_STATE(2244)] = 65308, - [SMALL_STATE(2245)] = 65317, - [SMALL_STATE(2246)] = 65326, - [SMALL_STATE(2247)] = 65337, - [SMALL_STATE(2248)] = 65345, - [SMALL_STATE(2249)] = 65353, - [SMALL_STATE(2250)] = 65361, - [SMALL_STATE(2251)] = 65369, - [SMALL_STATE(2252)] = 65377, - [SMALL_STATE(2253)] = 65385, - [SMALL_STATE(2254)] = 65393, - [SMALL_STATE(2255)] = 65401, - [SMALL_STATE(2256)] = 65409, - [SMALL_STATE(2257)] = 65417, - [SMALL_STATE(2258)] = 65425, - [SMALL_STATE(2259)] = 65433, - [SMALL_STATE(2260)] = 65441, - [SMALL_STATE(2261)] = 65449, - [SMALL_STATE(2262)] = 65457, - [SMALL_STATE(2263)] = 65465, - [SMALL_STATE(2264)] = 65473, - [SMALL_STATE(2265)] = 65481, - [SMALL_STATE(2266)] = 65489, - [SMALL_STATE(2267)] = 65497, - [SMALL_STATE(2268)] = 65505, - [SMALL_STATE(2269)] = 65513, - [SMALL_STATE(2270)] = 65521, - [SMALL_STATE(2271)] = 65529, - [SMALL_STATE(2272)] = 65537, - [SMALL_STATE(2273)] = 65545, - [SMALL_STATE(2274)] = 65553, - [SMALL_STATE(2275)] = 65561, - [SMALL_STATE(2276)] = 65569, - [SMALL_STATE(2277)] = 65577, - [SMALL_STATE(2278)] = 65585, - [SMALL_STATE(2279)] = 65593, - [SMALL_STATE(2280)] = 65601, - [SMALL_STATE(2281)] = 65609, - [SMALL_STATE(2282)] = 65617, - [SMALL_STATE(2283)] = 65625, - [SMALL_STATE(2284)] = 65633, - [SMALL_STATE(2285)] = 65641, - [SMALL_STATE(2286)] = 65649, - [SMALL_STATE(2287)] = 65657, - [SMALL_STATE(2288)] = 65665, - [SMALL_STATE(2289)] = 65673, - [SMALL_STATE(2290)] = 65681, - [SMALL_STATE(2291)] = 65689, - [SMALL_STATE(2292)] = 65697, - [SMALL_STATE(2293)] = 65705, - [SMALL_STATE(2294)] = 65713, - [SMALL_STATE(2295)] = 65721, - [SMALL_STATE(2296)] = 65729, - [SMALL_STATE(2297)] = 65737, - [SMALL_STATE(2298)] = 65745, - [SMALL_STATE(2299)] = 65753, - [SMALL_STATE(2300)] = 65761, - [SMALL_STATE(2301)] = 65769, - [SMALL_STATE(2302)] = 65777, - [SMALL_STATE(2303)] = 65785, - [SMALL_STATE(2304)] = 65793, - [SMALL_STATE(2305)] = 65801, - [SMALL_STATE(2306)] = 65809, - [SMALL_STATE(2307)] = 65817, - [SMALL_STATE(2308)] = 65825, - [SMALL_STATE(2309)] = 65833, - [SMALL_STATE(2310)] = 65841, - [SMALL_STATE(2311)] = 65849, - [SMALL_STATE(2312)] = 65857, - [SMALL_STATE(2313)] = 65865, - [SMALL_STATE(2314)] = 65873, - [SMALL_STATE(2315)] = 65881, - [SMALL_STATE(2316)] = 65889, - [SMALL_STATE(2317)] = 65897, - [SMALL_STATE(2318)] = 65905, - [SMALL_STATE(2319)] = 65913, - [SMALL_STATE(2320)] = 65921, - [SMALL_STATE(2321)] = 65929, - [SMALL_STATE(2322)] = 65937, - [SMALL_STATE(2323)] = 65945, - [SMALL_STATE(2324)] = 65953, - [SMALL_STATE(2325)] = 65961, - [SMALL_STATE(2326)] = 65969, - [SMALL_STATE(2327)] = 65977, - [SMALL_STATE(2328)] = 65985, - [SMALL_STATE(2329)] = 65993, - [SMALL_STATE(2330)] = 66001, - [SMALL_STATE(2331)] = 66009, - [SMALL_STATE(2332)] = 66017, - [SMALL_STATE(2333)] = 66025, - [SMALL_STATE(2334)] = 66033, - [SMALL_STATE(2335)] = 66041, - [SMALL_STATE(2336)] = 66049, - [SMALL_STATE(2337)] = 66057, - [SMALL_STATE(2338)] = 66065, - [SMALL_STATE(2339)] = 66073, - [SMALL_STATE(2340)] = 66081, - [SMALL_STATE(2341)] = 66089, - [SMALL_STATE(2342)] = 66097, - [SMALL_STATE(2343)] = 66105, - [SMALL_STATE(2344)] = 66113, - [SMALL_STATE(2345)] = 66121, - [SMALL_STATE(2346)] = 66129, - [SMALL_STATE(2347)] = 66137, - [SMALL_STATE(2348)] = 66145, - [SMALL_STATE(2349)] = 66153, - [SMALL_STATE(2350)] = 66161, - [SMALL_STATE(2351)] = 66169, - [SMALL_STATE(2352)] = 66177, - [SMALL_STATE(2353)] = 66185, - [SMALL_STATE(2354)] = 66193, - [SMALL_STATE(2355)] = 66201, - [SMALL_STATE(2356)] = 66209, - [SMALL_STATE(2357)] = 66217, - [SMALL_STATE(2358)] = 66225, - [SMALL_STATE(2359)] = 66233, - [SMALL_STATE(2360)] = 66241, - [SMALL_STATE(2361)] = 66249, - [SMALL_STATE(2362)] = 66257, - [SMALL_STATE(2363)] = 66265, - [SMALL_STATE(2364)] = 66273, - [SMALL_STATE(2365)] = 66281, - [SMALL_STATE(2366)] = 66289, - [SMALL_STATE(2367)] = 66297, - [SMALL_STATE(2368)] = 66305, - [SMALL_STATE(2369)] = 66313, - [SMALL_STATE(2370)] = 66321, - [SMALL_STATE(2371)] = 66329, - [SMALL_STATE(2372)] = 66337, - [SMALL_STATE(2373)] = 66345, - [SMALL_STATE(2374)] = 66353, - [SMALL_STATE(2375)] = 66361, - [SMALL_STATE(2376)] = 66369, - [SMALL_STATE(2377)] = 66377, - [SMALL_STATE(2378)] = 66385, - [SMALL_STATE(2379)] = 66393, - [SMALL_STATE(2380)] = 66401, - [SMALL_STATE(2381)] = 66409, - [SMALL_STATE(2382)] = 66417, - [SMALL_STATE(2383)] = 66425, - [SMALL_STATE(2384)] = 66433, - [SMALL_STATE(2385)] = 66441, - [SMALL_STATE(2386)] = 66449, - [SMALL_STATE(2387)] = 66457, - [SMALL_STATE(2388)] = 66465, - [SMALL_STATE(2389)] = 66473, - [SMALL_STATE(2390)] = 66481, - [SMALL_STATE(2391)] = 66489, - [SMALL_STATE(2392)] = 66497, - [SMALL_STATE(2393)] = 66505, - [SMALL_STATE(2394)] = 66513, - [SMALL_STATE(2395)] = 66521, - [SMALL_STATE(2396)] = 66529, - [SMALL_STATE(2397)] = 66537, - [SMALL_STATE(2398)] = 66545, - [SMALL_STATE(2399)] = 66553, - [SMALL_STATE(2400)] = 66561, - [SMALL_STATE(2401)] = 66569, - [SMALL_STATE(2402)] = 66577, - [SMALL_STATE(2403)] = 66585, - [SMALL_STATE(2404)] = 66593, - [SMALL_STATE(2405)] = 66601, - [SMALL_STATE(2406)] = 66609, - [SMALL_STATE(2407)] = 66617, - [SMALL_STATE(2408)] = 66625, - [SMALL_STATE(2409)] = 66633, - [SMALL_STATE(2410)] = 66641, - [SMALL_STATE(2411)] = 66649, - [SMALL_STATE(2412)] = 66657, - [SMALL_STATE(2413)] = 66665, - [SMALL_STATE(2414)] = 66673, - [SMALL_STATE(2415)] = 66681, - [SMALL_STATE(2416)] = 66689, - [SMALL_STATE(2417)] = 66697, - [SMALL_STATE(2418)] = 66705, - [SMALL_STATE(2419)] = 66713, - [SMALL_STATE(2420)] = 66721, - [SMALL_STATE(2421)] = 66729, - [SMALL_STATE(2422)] = 66737, - [SMALL_STATE(2423)] = 66745, - [SMALL_STATE(2424)] = 66753, - [SMALL_STATE(2425)] = 66761, - [SMALL_STATE(2426)] = 66769, - [SMALL_STATE(2427)] = 66777, - [SMALL_STATE(2428)] = 66785, - [SMALL_STATE(2429)] = 66793, - [SMALL_STATE(2430)] = 66801, - [SMALL_STATE(2431)] = 66809, - [SMALL_STATE(2432)] = 66817, - [SMALL_STATE(2433)] = 66825, - [SMALL_STATE(2434)] = 66833, - [SMALL_STATE(2435)] = 66841, - [SMALL_STATE(2436)] = 66849, - [SMALL_STATE(2437)] = 66857, - [SMALL_STATE(2438)] = 66865, - [SMALL_STATE(2439)] = 66873, - [SMALL_STATE(2440)] = 66881, - [SMALL_STATE(2441)] = 66889, - [SMALL_STATE(2442)] = 66897, - [SMALL_STATE(2443)] = 66905, - [SMALL_STATE(2444)] = 66913, - [SMALL_STATE(2445)] = 66921, - [SMALL_STATE(2446)] = 66929, - [SMALL_STATE(2447)] = 66937, - [SMALL_STATE(2448)] = 66945, - [SMALL_STATE(2449)] = 66953, - [SMALL_STATE(2450)] = 66961, - [SMALL_STATE(2451)] = 66969, - [SMALL_STATE(2452)] = 66977, - [SMALL_STATE(2453)] = 66985, - [SMALL_STATE(2454)] = 66993, - [SMALL_STATE(2455)] = 67001, - [SMALL_STATE(2456)] = 67009, - [SMALL_STATE(2457)] = 67017, - [SMALL_STATE(2458)] = 67025, - [SMALL_STATE(2459)] = 67033, - [SMALL_STATE(2460)] = 67041, - [SMALL_STATE(2461)] = 67049, - [SMALL_STATE(2462)] = 67057, - [SMALL_STATE(2463)] = 67065, - [SMALL_STATE(2464)] = 67073, - [SMALL_STATE(2465)] = 67081, - [SMALL_STATE(2466)] = 67089, - [SMALL_STATE(2467)] = 67097, - [SMALL_STATE(2468)] = 67105, - [SMALL_STATE(2469)] = 67113, - [SMALL_STATE(2470)] = 67121, - [SMALL_STATE(2471)] = 67129, - [SMALL_STATE(2472)] = 67137, - [SMALL_STATE(2473)] = 67145, - [SMALL_STATE(2474)] = 67153, - [SMALL_STATE(2475)] = 67161, - [SMALL_STATE(2476)] = 67169, - [SMALL_STATE(2477)] = 67177, - [SMALL_STATE(2478)] = 67185, - [SMALL_STATE(2479)] = 67193, + [SMALL_STATE(618)] = 0, + [SMALL_STATE(619)] = 129, + [SMALL_STATE(620)] = 258, + [SMALL_STATE(621)] = 387, + [SMALL_STATE(622)] = 516, + [SMALL_STATE(623)] = 645, + [SMALL_STATE(624)] = 774, + [SMALL_STATE(625)] = 903, + [SMALL_STATE(626)] = 1032, + [SMALL_STATE(627)] = 1161, + [SMALL_STATE(628)] = 1290, + [SMALL_STATE(629)] = 1419, + [SMALL_STATE(630)] = 1548, + [SMALL_STATE(631)] = 1677, + [SMALL_STATE(632)] = 1806, + [SMALL_STATE(633)] = 1935, + [SMALL_STATE(634)] = 2064, + [SMALL_STATE(635)] = 2193, + [SMALL_STATE(636)] = 2322, + [SMALL_STATE(637)] = 2451, + [SMALL_STATE(638)] = 2580, + [SMALL_STATE(639)] = 2709, + [SMALL_STATE(640)] = 2838, + [SMALL_STATE(641)] = 2967, + [SMALL_STATE(642)] = 3096, + [SMALL_STATE(643)] = 3225, + [SMALL_STATE(644)] = 3354, + [SMALL_STATE(645)] = 3483, + [SMALL_STATE(646)] = 3612, + [SMALL_STATE(647)] = 3743, + [SMALL_STATE(648)] = 3872, + [SMALL_STATE(649)] = 4001, + [SMALL_STATE(650)] = 4130, + [SMALL_STATE(651)] = 4259, + [SMALL_STATE(652)] = 4388, + [SMALL_STATE(653)] = 4517, + [SMALL_STATE(654)] = 4646, + [SMALL_STATE(655)] = 4775, + [SMALL_STATE(656)] = 4904, + [SMALL_STATE(657)] = 5033, + [SMALL_STATE(658)] = 5162, + [SMALL_STATE(659)] = 5291, + [SMALL_STATE(660)] = 5420, + [SMALL_STATE(661)] = 5549, + [SMALL_STATE(662)] = 5678, + [SMALL_STATE(663)] = 5807, + [SMALL_STATE(664)] = 5936, + [SMALL_STATE(665)] = 6065, + [SMALL_STATE(666)] = 6194, + [SMALL_STATE(667)] = 6323, + [SMALL_STATE(668)] = 6452, + [SMALL_STATE(669)] = 6581, + [SMALL_STATE(670)] = 6710, + [SMALL_STATE(671)] = 6839, + [SMALL_STATE(672)] = 6968, + [SMALL_STATE(673)] = 7097, + [SMALL_STATE(674)] = 7226, + [SMALL_STATE(675)] = 7355, + [SMALL_STATE(676)] = 7484, + [SMALL_STATE(677)] = 7613, + [SMALL_STATE(678)] = 7742, + [SMALL_STATE(679)] = 7871, + [SMALL_STATE(680)] = 8000, + [SMALL_STATE(681)] = 8129, + [SMALL_STATE(682)] = 8258, + [SMALL_STATE(683)] = 8387, + [SMALL_STATE(684)] = 8516, + [SMALL_STATE(685)] = 8645, + [SMALL_STATE(686)] = 8774, + [SMALL_STATE(687)] = 8903, + [SMALL_STATE(688)] = 9032, + [SMALL_STATE(689)] = 9161, + [SMALL_STATE(690)] = 9290, + [SMALL_STATE(691)] = 9419, + [SMALL_STATE(692)] = 9548, + [SMALL_STATE(693)] = 9677, + [SMALL_STATE(694)] = 9806, + [SMALL_STATE(695)] = 9935, + [SMALL_STATE(696)] = 10064, + [SMALL_STATE(697)] = 10193, + [SMALL_STATE(698)] = 10322, + [SMALL_STATE(699)] = 10451, + [SMALL_STATE(700)] = 10580, + [SMALL_STATE(701)] = 10709, + [SMALL_STATE(702)] = 10838, + [SMALL_STATE(703)] = 10967, + [SMALL_STATE(704)] = 11096, + [SMALL_STATE(705)] = 11225, + [SMALL_STATE(706)] = 11354, + [SMALL_STATE(707)] = 11483, + [SMALL_STATE(708)] = 11612, + [SMALL_STATE(709)] = 11741, + [SMALL_STATE(710)] = 11870, + [SMALL_STATE(711)] = 11999, + [SMALL_STATE(712)] = 12128, + [SMALL_STATE(713)] = 12257, + [SMALL_STATE(714)] = 12386, + [SMALL_STATE(715)] = 12515, + [SMALL_STATE(716)] = 12644, + [SMALL_STATE(717)] = 12773, + [SMALL_STATE(718)] = 12902, + [SMALL_STATE(719)] = 13031, + [SMALL_STATE(720)] = 13160, + [SMALL_STATE(721)] = 13289, + [SMALL_STATE(722)] = 13418, + [SMALL_STATE(723)] = 13547, + [SMALL_STATE(724)] = 13676, + [SMALL_STATE(725)] = 13805, + [SMALL_STATE(726)] = 13934, + [SMALL_STATE(727)] = 14004, + [SMALL_STATE(728)] = 14069, + [SMALL_STATE(729)] = 14134, + [SMALL_STATE(730)] = 14199, + [SMALL_STATE(731)] = 14264, + [SMALL_STATE(732)] = 14326, + [SMALL_STATE(733)] = 14396, + [SMALL_STATE(734)] = 14463, + [SMALL_STATE(735)] = 14530, + [SMALL_STATE(736)] = 14586, + [SMALL_STATE(737)] = 14650, + [SMALL_STATE(738)] = 14714, + [SMALL_STATE(739)] = 14770, + [SMALL_STATE(740)] = 14826, + [SMALL_STATE(741)] = 14890, + [SMALL_STATE(742)] = 14946, + [SMALL_STATE(743)] = 15006, + [SMALL_STATE(744)] = 15066, + [SMALL_STATE(745)] = 15126, + [SMALL_STATE(746)] = 15182, + [SMALL_STATE(747)] = 15242, + [SMALL_STATE(748)] = 15304, + [SMALL_STATE(749)] = 15368, + [SMALL_STATE(750)] = 15427, + [SMALL_STATE(751)] = 15486, + [SMALL_STATE(752)] = 15543, + [SMALL_STATE(753)] = 15600, + [SMALL_STATE(754)] = 15655, + [SMALL_STATE(755)] = 15714, + [SMALL_STATE(756)] = 15771, + [SMALL_STATE(757)] = 15828, + [SMALL_STATE(758)] = 15884, + [SMALL_STATE(759)] = 15938, + [SMALL_STATE(760)] = 15992, + [SMALL_STATE(761)] = 16050, + [SMALL_STATE(762)] = 16104, + [SMALL_STATE(763)] = 16158, + [SMALL_STATE(764)] = 16212, + [SMALL_STATE(765)] = 16266, + [SMALL_STATE(766)] = 16320, + [SMALL_STATE(767)] = 16376, + [SMALL_STATE(768)] = 16432, + [SMALL_STATE(769)] = 16486, + [SMALL_STATE(770)] = 16540, + [SMALL_STATE(771)] = 16594, + [SMALL_STATE(772)] = 16648, + [SMALL_STATE(773)] = 16702, + [SMALL_STATE(774)] = 16756, + [SMALL_STATE(775)] = 16810, + [SMALL_STATE(776)] = 16866, + [SMALL_STATE(777)] = 16920, + [SMALL_STATE(778)] = 16974, + [SMALL_STATE(779)] = 17028, + [SMALL_STATE(780)] = 17082, + [SMALL_STATE(781)] = 17136, + [SMALL_STATE(782)] = 17190, + [SMALL_STATE(783)] = 17244, + [SMALL_STATE(784)] = 17298, + [SMALL_STATE(785)] = 17352, + [SMALL_STATE(786)] = 17406, + [SMALL_STATE(787)] = 17460, + [SMALL_STATE(788)] = 17514, + [SMALL_STATE(789)] = 17570, + [SMALL_STATE(790)] = 17624, + [SMALL_STATE(791)] = 17678, + [SMALL_STATE(792)] = 17732, + [SMALL_STATE(793)] = 17786, + [SMALL_STATE(794)] = 17840, + [SMALL_STATE(795)] = 17896, + [SMALL_STATE(796)] = 17950, + [SMALL_STATE(797)] = 18004, + [SMALL_STATE(798)] = 18058, + [SMALL_STATE(799)] = 18112, + [SMALL_STATE(800)] = 18166, + [SMALL_STATE(801)] = 18220, + [SMALL_STATE(802)] = 18276, + [SMALL_STATE(803)] = 18334, + [SMALL_STATE(804)] = 18388, + [SMALL_STATE(805)] = 18442, + [SMALL_STATE(806)] = 18496, + [SMALL_STATE(807)] = 18550, + [SMALL_STATE(808)] = 18604, + [SMALL_STATE(809)] = 18658, + [SMALL_STATE(810)] = 18712, + [SMALL_STATE(811)] = 18766, + [SMALL_STATE(812)] = 18820, + [SMALL_STATE(813)] = 18874, + [SMALL_STATE(814)] = 18928, + [SMALL_STATE(815)] = 18982, + [SMALL_STATE(816)] = 19036, + [SMALL_STATE(817)] = 19090, + [SMALL_STATE(818)] = 19144, + [SMALL_STATE(819)] = 19198, + [SMALL_STATE(820)] = 19252, + [SMALL_STATE(821)] = 19306, + [SMALL_STATE(822)] = 19360, + [SMALL_STATE(823)] = 19414, + [SMALL_STATE(824)] = 19468, + [SMALL_STATE(825)] = 19522, + [SMALL_STATE(826)] = 19576, + [SMALL_STATE(827)] = 19630, + [SMALL_STATE(828)] = 19684, + [SMALL_STATE(829)] = 19738, + [SMALL_STATE(830)] = 19794, + [SMALL_STATE(831)] = 19848, + [SMALL_STATE(832)] = 19902, + [SMALL_STATE(833)] = 19956, + [SMALL_STATE(834)] = 20010, + [SMALL_STATE(835)] = 20064, + [SMALL_STATE(836)] = 20118, + [SMALL_STATE(837)] = 20172, + [SMALL_STATE(838)] = 20226, + [SMALL_STATE(839)] = 20280, + [SMALL_STATE(840)] = 20334, + [SMALL_STATE(841)] = 20388, + [SMALL_STATE(842)] = 20442, + [SMALL_STATE(843)] = 20496, + [SMALL_STATE(844)] = 20550, + [SMALL_STATE(845)] = 20604, + [SMALL_STATE(846)] = 20658, + [SMALL_STATE(847)] = 20714, + [SMALL_STATE(848)] = 20768, + [SMALL_STATE(849)] = 20822, + [SMALL_STATE(850)] = 20876, + [SMALL_STATE(851)] = 20930, + [SMALL_STATE(852)] = 20984, + [SMALL_STATE(853)] = 21038, + [SMALL_STATE(854)] = 21092, + [SMALL_STATE(855)] = 21148, + [SMALL_STATE(856)] = 21202, + [SMALL_STATE(857)] = 21256, + [SMALL_STATE(858)] = 21312, + [SMALL_STATE(859)] = 21366, + [SMALL_STATE(860)] = 21420, + [SMALL_STATE(861)] = 21474, + [SMALL_STATE(862)] = 21528, + [SMALL_STATE(863)] = 21582, + [SMALL_STATE(864)] = 21636, + [SMALL_STATE(865)] = 21690, + [SMALL_STATE(866)] = 21744, + [SMALL_STATE(867)] = 21798, + [SMALL_STATE(868)] = 21852, + [SMALL_STATE(869)] = 21906, + [SMALL_STATE(870)] = 21960, + [SMALL_STATE(871)] = 22014, + [SMALL_STATE(872)] = 22068, + [SMALL_STATE(873)] = 22122, + [SMALL_STATE(874)] = 22176, + [SMALL_STATE(875)] = 22230, + [SMALL_STATE(876)] = 22284, + [SMALL_STATE(877)] = 22338, + [SMALL_STATE(878)] = 22392, + [SMALL_STATE(879)] = 22446, + [SMALL_STATE(880)] = 22500, + [SMALL_STATE(881)] = 22554, + [SMALL_STATE(882)] = 22608, + [SMALL_STATE(883)] = 22662, + [SMALL_STATE(884)] = 22716, + [SMALL_STATE(885)] = 22770, + [SMALL_STATE(886)] = 22824, + [SMALL_STATE(887)] = 22878, + [SMALL_STATE(888)] = 22932, + [SMALL_STATE(889)] = 22986, + [SMALL_STATE(890)] = 23040, + [SMALL_STATE(891)] = 23094, + [SMALL_STATE(892)] = 23148, + [SMALL_STATE(893)] = 23202, + [SMALL_STATE(894)] = 23256, + [SMALL_STATE(895)] = 23310, + [SMALL_STATE(896)] = 23366, + [SMALL_STATE(897)] = 23420, + [SMALL_STATE(898)] = 23474, + [SMALL_STATE(899)] = 23528, + [SMALL_STATE(900)] = 23582, + [SMALL_STATE(901)] = 23636, + [SMALL_STATE(902)] = 23690, + [SMALL_STATE(903)] = 23744, + [SMALL_STATE(904)] = 23798, + [SMALL_STATE(905)] = 23852, + [SMALL_STATE(906)] = 23908, + [SMALL_STATE(907)] = 23962, + [SMALL_STATE(908)] = 24016, + [SMALL_STATE(909)] = 24070, + [SMALL_STATE(910)] = 24124, + [SMALL_STATE(911)] = 24178, + [SMALL_STATE(912)] = 24232, + [SMALL_STATE(913)] = 24286, + [SMALL_STATE(914)] = 24340, + [SMALL_STATE(915)] = 24394, + [SMALL_STATE(916)] = 24448, + [SMALL_STATE(917)] = 24502, + [SMALL_STATE(918)] = 24556, + [SMALL_STATE(919)] = 24610, + [SMALL_STATE(920)] = 24664, + [SMALL_STATE(921)] = 24718, + [SMALL_STATE(922)] = 24772, + [SMALL_STATE(923)] = 24826, + [SMALL_STATE(924)] = 24880, + [SMALL_STATE(925)] = 24934, + [SMALL_STATE(926)] = 24988, + [SMALL_STATE(927)] = 25042, + [SMALL_STATE(928)] = 25096, + [SMALL_STATE(929)] = 25150, + [SMALL_STATE(930)] = 25204, + [SMALL_STATE(931)] = 25258, + [SMALL_STATE(932)] = 25312, + [SMALL_STATE(933)] = 25366, + [SMALL_STATE(934)] = 25420, + [SMALL_STATE(935)] = 25474, + [SMALL_STATE(936)] = 25528, + [SMALL_STATE(937)] = 25582, + [SMALL_STATE(938)] = 25636, + [SMALL_STATE(939)] = 25690, + [SMALL_STATE(940)] = 25744, + [SMALL_STATE(941)] = 25798, + [SMALL_STATE(942)] = 25852, + [SMALL_STATE(943)] = 25906, + [SMALL_STATE(944)] = 25960, + [SMALL_STATE(945)] = 26014, + [SMALL_STATE(946)] = 26068, + [SMALL_STATE(947)] = 26122, + [SMALL_STATE(948)] = 26176, + [SMALL_STATE(949)] = 26230, + [SMALL_STATE(950)] = 26284, + [SMALL_STATE(951)] = 26338, + [SMALL_STATE(952)] = 26392, + [SMALL_STATE(953)] = 26446, + [SMALL_STATE(954)] = 26500, + [SMALL_STATE(955)] = 26554, + [SMALL_STATE(956)] = 26608, + [SMALL_STATE(957)] = 26662, + [SMALL_STATE(958)] = 26716, + [SMALL_STATE(959)] = 26770, + [SMALL_STATE(960)] = 26824, + [SMALL_STATE(961)] = 26878, + [SMALL_STATE(962)] = 26932, + [SMALL_STATE(963)] = 26986, + [SMALL_STATE(964)] = 27040, + [SMALL_STATE(965)] = 27094, + [SMALL_STATE(966)] = 27148, + [SMALL_STATE(967)] = 27204, + [SMALL_STATE(968)] = 27260, + [SMALL_STATE(969)] = 27314, + [SMALL_STATE(970)] = 27368, + [SMALL_STATE(971)] = 27422, + [SMALL_STATE(972)] = 27476, + [SMALL_STATE(973)] = 27530, + [SMALL_STATE(974)] = 27584, + [SMALL_STATE(975)] = 27638, + [SMALL_STATE(976)] = 27692, + [SMALL_STATE(977)] = 27746, + [SMALL_STATE(978)] = 27800, + [SMALL_STATE(979)] = 27854, + [SMALL_STATE(980)] = 27908, + [SMALL_STATE(981)] = 27962, + [SMALL_STATE(982)] = 28016, + [SMALL_STATE(983)] = 28070, + [SMALL_STATE(984)] = 28124, + [SMALL_STATE(985)] = 28180, + [SMALL_STATE(986)] = 28234, + [SMALL_STATE(987)] = 28288, + [SMALL_STATE(988)] = 28342, + [SMALL_STATE(989)] = 28396, + [SMALL_STATE(990)] = 28450, + [SMALL_STATE(991)] = 28504, + [SMALL_STATE(992)] = 28558, + [SMALL_STATE(993)] = 28612, + [SMALL_STATE(994)] = 28666, + [SMALL_STATE(995)] = 28720, + [SMALL_STATE(996)] = 28774, + [SMALL_STATE(997)] = 28828, + [SMALL_STATE(998)] = 28882, + [SMALL_STATE(999)] = 28936, + [SMALL_STATE(1000)] = 28990, + [SMALL_STATE(1001)] = 29044, + [SMALL_STATE(1002)] = 29098, + [SMALL_STATE(1003)] = 29152, + [SMALL_STATE(1004)] = 29206, + [SMALL_STATE(1005)] = 29260, + [SMALL_STATE(1006)] = 29314, + [SMALL_STATE(1007)] = 29368, + [SMALL_STATE(1008)] = 29422, + [SMALL_STATE(1009)] = 29476, + [SMALL_STATE(1010)] = 29530, + [SMALL_STATE(1011)] = 29584, + [SMALL_STATE(1012)] = 29638, + [SMALL_STATE(1013)] = 29692, + [SMALL_STATE(1014)] = 29745, + [SMALL_STATE(1015)] = 29830, + [SMALL_STATE(1016)] = 29883, + [SMALL_STATE(1017)] = 29936, + [SMALL_STATE(1018)] = 29989, + [SMALL_STATE(1019)] = 30042, + [SMALL_STATE(1020)] = 30095, + [SMALL_STATE(1021)] = 30162, + [SMALL_STATE(1022)] = 30227, + [SMALL_STATE(1023)] = 30280, + [SMALL_STATE(1024)] = 30333, + [SMALL_STATE(1025)] = 30388, + [SMALL_STATE(1026)] = 30441, + [SMALL_STATE(1027)] = 30494, + [SMALL_STATE(1028)] = 30547, + [SMALL_STATE(1029)] = 30600, + [SMALL_STATE(1030)] = 30653, + [SMALL_STATE(1031)] = 30706, + [SMALL_STATE(1032)] = 30791, + [SMALL_STATE(1033)] = 30844, + [SMALL_STATE(1034)] = 30897, + [SMALL_STATE(1035)] = 30974, + [SMALL_STATE(1036)] = 31027, + [SMALL_STATE(1037)] = 31080, + [SMALL_STATE(1038)] = 31151, + [SMALL_STATE(1039)] = 31204, + [SMALL_STATE(1040)] = 31257, + [SMALL_STATE(1041)] = 31338, + [SMALL_STATE(1042)] = 31391, + [SMALL_STATE(1043)] = 31444, + [SMALL_STATE(1044)] = 31527, + [SMALL_STATE(1045)] = 31602, + [SMALL_STATE(1046)] = 31655, + [SMALL_STATE(1047)] = 31728, + [SMALL_STATE(1048)] = 31797, + [SMALL_STATE(1049)] = 31850, + [SMALL_STATE(1050)] = 31903, + [SMALL_STATE(1051)] = 31956, + [SMALL_STATE(1052)] = 32041, + [SMALL_STATE(1053)] = 32094, + [SMALL_STATE(1054)] = 32147, + [SMALL_STATE(1055)] = 32200, + [SMALL_STATE(1056)] = 32253, + [SMALL_STATE(1057)] = 32306, + [SMALL_STATE(1058)] = 32359, + [SMALL_STATE(1059)] = 32412, + [SMALL_STATE(1060)] = 32465, + [SMALL_STATE(1061)] = 32518, + [SMALL_STATE(1062)] = 32571, + [SMALL_STATE(1063)] = 32624, + [SMALL_STATE(1064)] = 32677, + [SMALL_STATE(1065)] = 32732, + [SMALL_STATE(1066)] = 32785, + [SMALL_STATE(1067)] = 32838, + [SMALL_STATE(1068)] = 32891, + [SMALL_STATE(1069)] = 32944, + [SMALL_STATE(1070)] = 32997, + [SMALL_STATE(1071)] = 33050, + [SMALL_STATE(1072)] = 33103, + [SMALL_STATE(1073)] = 33156, + [SMALL_STATE(1074)] = 33211, + [SMALL_STATE(1075)] = 33264, + [SMALL_STATE(1076)] = 33317, + [SMALL_STATE(1077)] = 33370, + [SMALL_STATE(1078)] = 33435, + [SMALL_STATE(1079)] = 33488, + [SMALL_STATE(1080)] = 33541, + [SMALL_STATE(1081)] = 33626, + [SMALL_STATE(1082)] = 33679, + [SMALL_STATE(1083)] = 33732, + [SMALL_STATE(1084)] = 33785, + [SMALL_STATE(1085)] = 33838, + [SMALL_STATE(1086)] = 33891, + [SMALL_STATE(1087)] = 33944, + [SMALL_STATE(1088)] = 33997, + [SMALL_STATE(1089)] = 34050, + [SMALL_STATE(1090)] = 34103, + [SMALL_STATE(1091)] = 34160, + [SMALL_STATE(1092)] = 34249, + [SMALL_STATE(1093)] = 34340, + [SMALL_STATE(1094)] = 34425, + [SMALL_STATE(1095)] = 34478, + [SMALL_STATE(1096)] = 34531, + [SMALL_STATE(1097)] = 34596, + [SMALL_STATE(1098)] = 34649, + [SMALL_STATE(1099)] = 34702, + [SMALL_STATE(1100)] = 34757, + [SMALL_STATE(1101)] = 34810, + [SMALL_STATE(1102)] = 34863, + [SMALL_STATE(1103)] = 34916, + [SMALL_STATE(1104)] = 34969, + [SMALL_STATE(1105)] = 35022, + [SMALL_STATE(1106)] = 35075, + [SMALL_STATE(1107)] = 35128, + [SMALL_STATE(1108)] = 35181, + [SMALL_STATE(1109)] = 35234, + [SMALL_STATE(1110)] = 35287, + [SMALL_STATE(1111)] = 35340, + [SMALL_STATE(1112)] = 35393, + [SMALL_STATE(1113)] = 35458, + [SMALL_STATE(1114)] = 35511, + [SMALL_STATE(1115)] = 35564, + [SMALL_STATE(1116)] = 35617, + [SMALL_STATE(1117)] = 35708, + [SMALL_STATE(1118)] = 35761, + [SMALL_STATE(1119)] = 35814, + [SMALL_STATE(1120)] = 35867, + [SMALL_STATE(1121)] = 35920, + [SMALL_STATE(1122)] = 35979, + [SMALL_STATE(1123)] = 36032, + [SMALL_STATE(1124)] = 36085, + [SMALL_STATE(1125)] = 36138, + [SMALL_STATE(1126)] = 36191, + [SMALL_STATE(1127)] = 36244, + [SMALL_STATE(1128)] = 36333, + [SMALL_STATE(1129)] = 36386, + [SMALL_STATE(1130)] = 36439, + [SMALL_STATE(1131)] = 36492, + [SMALL_STATE(1132)] = 36545, + [SMALL_STATE(1133)] = 36598, + [SMALL_STATE(1134)] = 36651, + [SMALL_STATE(1135)] = 36703, + [SMALL_STATE(1136)] = 36763, + [SMALL_STATE(1137)] = 36815, + [SMALL_STATE(1138)] = 36866, + [SMALL_STATE(1139)] = 36917, + [SMALL_STATE(1140)] = 37004, + [SMALL_STATE(1141)] = 37091, + [SMALL_STATE(1142)] = 37178, + [SMALL_STATE(1143)] = 37257, + [SMALL_STATE(1144)] = 37342, + [SMALL_STATE(1145)] = 37399, + [SMALL_STATE(1146)] = 37494, + [SMALL_STATE(1147)] = 37589, + [SMALL_STATE(1148)] = 37676, + [SMALL_STATE(1149)] = 37761, + [SMALL_STATE(1150)] = 37837, + [SMALL_STATE(1151)] = 37913, + [SMALL_STATE(1152)] = 37989, + [SMALL_STATE(1153)] = 38081, + [SMALL_STATE(1154)] = 38173, + [SMALL_STATE(1155)] = 38249, + [SMALL_STATE(1156)] = 38303, + [SMALL_STATE(1157)] = 38359, + [SMALL_STATE(1158)] = 38448, + [SMALL_STATE(1159)] = 38537, + [SMALL_STATE(1160)] = 38624, + [SMALL_STATE(1161)] = 38713, + [SMALL_STATE(1162)] = 38802, + [SMALL_STATE(1163)] = 38851, + [SMALL_STATE(1164)] = 38900, + [SMALL_STATE(1165)] = 38987, + [SMALL_STATE(1166)] = 39076, + [SMALL_STATE(1167)] = 39165, + [SMALL_STATE(1168)] = 39254, + [SMALL_STATE(1169)] = 39343, + [SMALL_STATE(1170)] = 39432, + [SMALL_STATE(1171)] = 39519, + [SMALL_STATE(1172)] = 39608, + [SMALL_STATE(1173)] = 39697, + [SMALL_STATE(1174)] = 39786, + [SMALL_STATE(1175)] = 39875, + [SMALL_STATE(1176)] = 39962, + [SMALL_STATE(1177)] = 40051, + [SMALL_STATE(1178)] = 40104, + [SMALL_STATE(1179)] = 40193, + [SMALL_STATE(1180)] = 40282, + [SMALL_STATE(1181)] = 40371, + [SMALL_STATE(1182)] = 40420, + [SMALL_STATE(1183)] = 40493, + [SMALL_STATE(1184)] = 40582, + [SMALL_STATE(1185)] = 40633, + [SMALL_STATE(1186)] = 40722, + [SMALL_STATE(1187)] = 40771, + [SMALL_STATE(1188)] = 40860, + [SMALL_STATE(1189)] = 40949, + [SMALL_STATE(1190)] = 40998, + [SMALL_STATE(1191)] = 41047, + [SMALL_STATE(1192)] = 41136, + [SMALL_STATE(1193)] = 41225, + [SMALL_STATE(1194)] = 41314, + [SMALL_STATE(1195)] = 41363, + [SMALL_STATE(1196)] = 41412, + [SMALL_STATE(1197)] = 41499, + [SMALL_STATE(1198)] = 41588, + [SMALL_STATE(1199)] = 41677, + [SMALL_STATE(1200)] = 41766, + [SMALL_STATE(1201)] = 41853, + [SMALL_STATE(1202)] = 41942, + [SMALL_STATE(1203)] = 42031, + [SMALL_STATE(1204)] = 42120, + [SMALL_STATE(1205)] = 42169, + [SMALL_STATE(1206)] = 42258, + [SMALL_STATE(1207)] = 42345, + [SMALL_STATE(1208)] = 42432, + [SMALL_STATE(1209)] = 42521, + [SMALL_STATE(1210)] = 42610, + [SMALL_STATE(1211)] = 42699, + [SMALL_STATE(1212)] = 42788, + [SMALL_STATE(1213)] = 42877, + [SMALL_STATE(1214)] = 42966, + [SMALL_STATE(1215)] = 43053, + [SMALL_STATE(1216)] = 43142, + [SMALL_STATE(1217)] = 43231, + [SMALL_STATE(1218)] = 43320, + [SMALL_STATE(1219)] = 43371, + [SMALL_STATE(1220)] = 43460, + [SMALL_STATE(1221)] = 43549, + [SMALL_STATE(1222)] = 43638, + [SMALL_STATE(1223)] = 43727, + [SMALL_STATE(1224)] = 43780, + [SMALL_STATE(1225)] = 43869, + [SMALL_STATE(1226)] = 43956, + [SMALL_STATE(1227)] = 44042, + [SMALL_STATE(1228)] = 44128, + [SMALL_STATE(1229)] = 44214, + [SMALL_STATE(1230)] = 44300, + [SMALL_STATE(1231)] = 44386, + [SMALL_STATE(1232)] = 44472, + [SMALL_STATE(1233)] = 44558, + [SMALL_STATE(1234)] = 44644, + [SMALL_STATE(1235)] = 44730, + [SMALL_STATE(1236)] = 44816, + [SMALL_STATE(1237)] = 44902, + [SMALL_STATE(1238)] = 44988, + [SMALL_STATE(1239)] = 45074, + [SMALL_STATE(1240)] = 45160, + [SMALL_STATE(1241)] = 45246, + [SMALL_STATE(1242)] = 45332, + [SMALL_STATE(1243)] = 45418, + [SMALL_STATE(1244)] = 45504, + [SMALL_STATE(1245)] = 45554, + [SMALL_STATE(1246)] = 45640, + [SMALL_STATE(1247)] = 45726, + [SMALL_STATE(1248)] = 45812, + [SMALL_STATE(1249)] = 45898, + [SMALL_STATE(1250)] = 45984, + [SMALL_STATE(1251)] = 46070, + [SMALL_STATE(1252)] = 46120, + [SMALL_STATE(1253)] = 46200, + [SMALL_STATE(1254)] = 46286, + [SMALL_STATE(1255)] = 46372, + [SMALL_STATE(1256)] = 46458, + [SMALL_STATE(1257)] = 46544, + [SMALL_STATE(1258)] = 46630, + [SMALL_STATE(1259)] = 46708, + [SMALL_STATE(1260)] = 46772, + [SMALL_STATE(1261)] = 46840, + [SMALL_STATE(1262)] = 46910, + [SMALL_STATE(1263)] = 46964, + [SMALL_STATE(1264)] = 47050, + [SMALL_STATE(1265)] = 47110, + [SMALL_STATE(1266)] = 47190, + [SMALL_STATE(1267)] = 47276, + [SMALL_STATE(1268)] = 47352, + [SMALL_STATE(1269)] = 47430, + [SMALL_STATE(1270)] = 47510, + [SMALL_STATE(1271)] = 47576, + [SMALL_STATE(1272)] = 47648, + [SMALL_STATE(1273)] = 47728, + [SMALL_STATE(1274)] = 47788, + [SMALL_STATE(1275)] = 47866, + [SMALL_STATE(1276)] = 47946, + [SMALL_STATE(1277)] = 48006, + [SMALL_STATE(1278)] = 48068, + [SMALL_STATE(1279)] = 48128, + [SMALL_STATE(1280)] = 48214, + [SMALL_STATE(1281)] = 48264, + [SMALL_STATE(1282)] = 48350, + [SMALL_STATE(1283)] = 48400, + [SMALL_STATE(1284)] = 48471, + [SMALL_STATE(1285)] = 48539, + [SMALL_STATE(1286)] = 48607, + [SMALL_STATE(1287)] = 48672, + [SMALL_STATE(1288)] = 48737, + [SMALL_STATE(1289)] = 48802, + [SMALL_STATE(1290)] = 48867, + [SMALL_STATE(1291)] = 48932, + [SMALL_STATE(1292)] = 48972, + [SMALL_STATE(1293)] = 49012, + [SMALL_STATE(1294)] = 49052, + [SMALL_STATE(1295)] = 49107, + [SMALL_STATE(1296)] = 49162, + [SMALL_STATE(1297)] = 49217, + [SMALL_STATE(1298)] = 49272, + [SMALL_STATE(1299)] = 49327, + [SMALL_STATE(1300)] = 49382, + [SMALL_STATE(1301)] = 49437, + [SMALL_STATE(1302)] = 49489, + [SMALL_STATE(1303)] = 49541, + [SMALL_STATE(1304)] = 49571, + [SMALL_STATE(1305)] = 49601, + [SMALL_STATE(1306)] = 49643, + [SMALL_STATE(1307)] = 49683, + [SMALL_STATE(1308)] = 49712, + [SMALL_STATE(1309)] = 49741, + [SMALL_STATE(1310)] = 49770, + [SMALL_STATE(1311)] = 49807, + [SMALL_STATE(1312)] = 49836, + [SMALL_STATE(1313)] = 49865, + [SMALL_STATE(1314)] = 49894, + [SMALL_STATE(1315)] = 49931, + [SMALL_STATE(1316)] = 49960, + [SMALL_STATE(1317)] = 49989, + [SMALL_STATE(1318)] = 50021, + [SMALL_STATE(1319)] = 50053, + [SMALL_STATE(1320)] = 50107, + [SMALL_STATE(1321)] = 50161, + [SMALL_STATE(1322)] = 50193, + [SMALL_STATE(1323)] = 50216, + [SMALL_STATE(1324)] = 50241, + [SMALL_STATE(1325)] = 50271, + [SMALL_STATE(1326)] = 50293, + [SMALL_STATE(1327)] = 50317, + [SMALL_STATE(1328)] = 50363, + [SMALL_STATE(1329)] = 50387, + [SMALL_STATE(1330)] = 50411, + [SMALL_STATE(1331)] = 50435, + [SMALL_STATE(1332)] = 50457, + [SMALL_STATE(1333)] = 50481, + [SMALL_STATE(1334)] = 50505, + [SMALL_STATE(1335)] = 50529, + [SMALL_STATE(1336)] = 50551, + [SMALL_STATE(1337)] = 50573, + [SMALL_STATE(1338)] = 50597, + [SMALL_STATE(1339)] = 50621, + [SMALL_STATE(1340)] = 50665, + [SMALL_STATE(1341)] = 50709, + [SMALL_STATE(1342)] = 50733, + [SMALL_STATE(1343)] = 50758, + [SMALL_STATE(1344)] = 50781, + [SMALL_STATE(1345)] = 50802, + [SMALL_STATE(1346)] = 50823, + [SMALL_STATE(1347)] = 50848, + [SMALL_STATE(1348)] = 50869, + [SMALL_STATE(1349)] = 50890, + [SMALL_STATE(1350)] = 50915, + [SMALL_STATE(1351)] = 50940, + [SMALL_STATE(1352)] = 50961, + [SMALL_STATE(1353)] = 51006, + [SMALL_STATE(1354)] = 51029, + [SMALL_STATE(1355)] = 51052, + [SMALL_STATE(1356)] = 51075, + [SMALL_STATE(1357)] = 51102, + [SMALL_STATE(1358)] = 51125, + [SMALL_STATE(1359)] = 51150, + [SMALL_STATE(1360)] = 51173, + [SMALL_STATE(1361)] = 51196, + [SMALL_STATE(1362)] = 51221, + [SMALL_STATE(1363)] = 51244, + [SMALL_STATE(1364)] = 51264, + [SMALL_STATE(1365)] = 51284, + [SMALL_STATE(1366)] = 51306, + [SMALL_STATE(1367)] = 51326, + [SMALL_STATE(1368)] = 51346, + [SMALL_STATE(1369)] = 51366, + [SMALL_STATE(1370)] = 51386, + [SMALL_STATE(1371)] = 51408, + [SMALL_STATE(1372)] = 51428, + [SMALL_STATE(1373)] = 51448, + [SMALL_STATE(1374)] = 51468, + [SMALL_STATE(1375)] = 51488, + [SMALL_STATE(1376)] = 51508, + [SMALL_STATE(1377)] = 51528, + [SMALL_STATE(1378)] = 51548, + [SMALL_STATE(1379)] = 51568, + [SMALL_STATE(1380)] = 51588, + [SMALL_STATE(1381)] = 51608, + [SMALL_STATE(1382)] = 51628, + [SMALL_STATE(1383)] = 51648, + [SMALL_STATE(1384)] = 51668, + [SMALL_STATE(1385)] = 51688, + [SMALL_STATE(1386)] = 51708, + [SMALL_STATE(1387)] = 51728, + [SMALL_STATE(1388)] = 51752, + [SMALL_STATE(1389)] = 51772, + [SMALL_STATE(1390)] = 51792, + [SMALL_STATE(1391)] = 51812, + [SMALL_STATE(1392)] = 51832, + [SMALL_STATE(1393)] = 51854, + [SMALL_STATE(1394)] = 51874, + [SMALL_STATE(1395)] = 51899, + [SMALL_STATE(1396)] = 51922, + [SMALL_STATE(1397)] = 51945, + [SMALL_STATE(1398)] = 51968, + [SMALL_STATE(1399)] = 51991, + [SMALL_STATE(1400)] = 52026, + [SMALL_STATE(1401)] = 52049, + [SMALL_STATE(1402)] = 52074, + [SMALL_STATE(1403)] = 52099, + [SMALL_STATE(1404)] = 52124, + [SMALL_STATE(1405)] = 52149, + [SMALL_STATE(1406)] = 52174, + [SMALL_STATE(1407)] = 52199, + [SMALL_STATE(1408)] = 52224, + [SMALL_STATE(1409)] = 52245, + [SMALL_STATE(1410)] = 52266, + [SMALL_STATE(1411)] = 52287, + [SMALL_STATE(1412)] = 52310, + [SMALL_STATE(1413)] = 52333, + [SMALL_STATE(1414)] = 52356, + [SMALL_STATE(1415)] = 52379, + [SMALL_STATE(1416)] = 52402, + [SMALL_STATE(1417)] = 52425, + [SMALL_STATE(1418)] = 52448, + [SMALL_STATE(1419)] = 52468, + [SMALL_STATE(1420)] = 52488, + [SMALL_STATE(1421)] = 52508, + [SMALL_STATE(1422)] = 52540, + [SMALL_STATE(1423)] = 52564, + [SMALL_STATE(1424)] = 52584, + [SMALL_STATE(1425)] = 52604, + [SMALL_STATE(1426)] = 52624, + [SMALL_STATE(1427)] = 52644, + [SMALL_STATE(1428)] = 52664, + [SMALL_STATE(1429)] = 52684, + [SMALL_STATE(1430)] = 52704, + [SMALL_STATE(1431)] = 52724, + [SMALL_STATE(1432)] = 52744, + [SMALL_STATE(1433)] = 52768, + [SMALL_STATE(1434)] = 52788, + [SMALL_STATE(1435)] = 52808, + [SMALL_STATE(1436)] = 52828, + [SMALL_STATE(1437)] = 52860, + [SMALL_STATE(1438)] = 52880, + [SMALL_STATE(1439)] = 52904, + [SMALL_STATE(1440)] = 52924, + [SMALL_STATE(1441)] = 52956, + [SMALL_STATE(1442)] = 52976, + [SMALL_STATE(1443)] = 53002, + [SMALL_STATE(1444)] = 53022, + [SMALL_STATE(1445)] = 53042, + [SMALL_STATE(1446)] = 53062, + [SMALL_STATE(1447)] = 53088, + [SMALL_STATE(1448)] = 53108, + [SMALL_STATE(1449)] = 53128, + [SMALL_STATE(1450)] = 53152, + [SMALL_STATE(1451)] = 53184, + [SMALL_STATE(1452)] = 53204, + [SMALL_STATE(1453)] = 53236, + [SMALL_STATE(1454)] = 53268, + [SMALL_STATE(1455)] = 53288, + [SMALL_STATE(1456)] = 53320, + [SMALL_STATE(1457)] = 53340, + [SMALL_STATE(1458)] = 53360, + [SMALL_STATE(1459)] = 53380, + [SMALL_STATE(1460)] = 53400, + [SMALL_STATE(1461)] = 53420, + [SMALL_STATE(1462)] = 53440, + [SMALL_STATE(1463)] = 53472, + [SMALL_STATE(1464)] = 53503, + [SMALL_STATE(1465)] = 53528, + [SMALL_STATE(1466)] = 53561, + [SMALL_STATE(1467)] = 53594, + [SMALL_STATE(1468)] = 53627, + [SMALL_STATE(1469)] = 53650, + [SMALL_STATE(1470)] = 53673, + [SMALL_STATE(1471)] = 53696, + [SMALL_STATE(1472)] = 53723, + [SMALL_STATE(1473)] = 53748, + [SMALL_STATE(1474)] = 53777, + [SMALL_STATE(1475)] = 53802, + [SMALL_STATE(1476)] = 53835, + [SMALL_STATE(1477)] = 53865, + [SMALL_STATE(1478)] = 53897, + [SMALL_STATE(1479)] = 53927, + [SMALL_STATE(1480)] = 53959, + [SMALL_STATE(1481)] = 53989, + [SMALL_STATE(1482)] = 54011, + [SMALL_STATE(1483)] = 54041, + [SMALL_STATE(1484)] = 54063, + [SMALL_STATE(1485)] = 54093, + [SMALL_STATE(1486)] = 54123, + [SMALL_STATE(1487)] = 54153, + [SMALL_STATE(1488)] = 54183, + [SMALL_STATE(1489)] = 54205, + [SMALL_STATE(1490)] = 54235, + [SMALL_STATE(1491)] = 54261, + [SMALL_STATE(1492)] = 54291, + [SMALL_STATE(1493)] = 54317, + [SMALL_STATE(1494)] = 54343, + [SMALL_STATE(1495)] = 54373, + [SMALL_STATE(1496)] = 54399, + [SMALL_STATE(1497)] = 54425, + [SMALL_STATE(1498)] = 54455, + [SMALL_STATE(1499)] = 54477, + [SMALL_STATE(1500)] = 54499, + [SMALL_STATE(1501)] = 54529, + [SMALL_STATE(1502)] = 54555, + [SMALL_STATE(1503)] = 54585, + [SMALL_STATE(1504)] = 54615, + [SMALL_STATE(1505)] = 54645, + [SMALL_STATE(1506)] = 54671, + [SMALL_STATE(1507)] = 54697, + [SMALL_STATE(1508)] = 54729, + [SMALL_STATE(1509)] = 54751, + [SMALL_STATE(1510)] = 54783, + [SMALL_STATE(1511)] = 54813, + [SMALL_STATE(1512)] = 54843, + [SMALL_STATE(1513)] = 54873, + [SMALL_STATE(1514)] = 54903, + [SMALL_STATE(1515)] = 54933, + [SMALL_STATE(1516)] = 54959, + [SMALL_STATE(1517)] = 54985, + [SMALL_STATE(1518)] = 55011, + [SMALL_STATE(1519)] = 55038, + [SMALL_STATE(1520)] = 55065, + [SMALL_STATE(1521)] = 55084, + [SMALL_STATE(1522)] = 55107, + [SMALL_STATE(1523)] = 55134, + [SMALL_STATE(1524)] = 55161, + [SMALL_STATE(1525)] = 55180, + [SMALL_STATE(1526)] = 55199, + [SMALL_STATE(1527)] = 55218, + [SMALL_STATE(1528)] = 55237, + [SMALL_STATE(1529)] = 55258, + [SMALL_STATE(1530)] = 55285, + [SMALL_STATE(1531)] = 55312, + [SMALL_STATE(1532)] = 55331, + [SMALL_STATE(1533)] = 55358, + [SMALL_STATE(1534)] = 55373, + [SMALL_STATE(1535)] = 55402, + [SMALL_STATE(1536)] = 55431, + [SMALL_STATE(1537)] = 55458, + [SMALL_STATE(1538)] = 55485, + [SMALL_STATE(1539)] = 55504, + [SMALL_STATE(1540)] = 55523, + [SMALL_STATE(1541)] = 55546, + [SMALL_STATE(1542)] = 55575, + [SMALL_STATE(1543)] = 55604, + [SMALL_STATE(1544)] = 55631, + [SMALL_STATE(1545)] = 55660, + [SMALL_STATE(1546)] = 55687, + [SMALL_STATE(1547)] = 55706, + [SMALL_STATE(1548)] = 55729, + [SMALL_STATE(1549)] = 55752, + [SMALL_STATE(1550)] = 55781, + [SMALL_STATE(1551)] = 55808, + [SMALL_STATE(1552)] = 55829, + [SMALL_STATE(1553)] = 55848, + [SMALL_STATE(1554)] = 55867, + [SMALL_STATE(1555)] = 55892, + [SMALL_STATE(1556)] = 55919, + [SMALL_STATE(1557)] = 55942, + [SMALL_STATE(1558)] = 55969, + [SMALL_STATE(1559)] = 55996, + [SMALL_STATE(1560)] = 56020, + [SMALL_STATE(1561)] = 56046, + [SMALL_STATE(1562)] = 56072, + [SMALL_STATE(1563)] = 56094, + [SMALL_STATE(1564)] = 56120, + [SMALL_STATE(1565)] = 56142, + [SMALL_STATE(1566)] = 56168, + [SMALL_STATE(1567)] = 56190, + [SMALL_STATE(1568)] = 56214, + [SMALL_STATE(1569)] = 56240, + [SMALL_STATE(1570)] = 56266, + [SMALL_STATE(1571)] = 56282, + [SMALL_STATE(1572)] = 56304, + [SMALL_STATE(1573)] = 56320, + [SMALL_STATE(1574)] = 56346, + [SMALL_STATE(1575)] = 56372, + [SMALL_STATE(1576)] = 56388, + [SMALL_STATE(1577)] = 56404, + [SMALL_STATE(1578)] = 56430, + [SMALL_STATE(1579)] = 56446, + [SMALL_STATE(1580)] = 56468, + [SMALL_STATE(1581)] = 56494, + [SMALL_STATE(1582)] = 56518, + [SMALL_STATE(1583)] = 56540, + [SMALL_STATE(1584)] = 56556, + [SMALL_STATE(1585)] = 56572, + [SMALL_STATE(1586)] = 56586, + [SMALL_STATE(1587)] = 56602, + [SMALL_STATE(1588)] = 56616, + [SMALL_STATE(1589)] = 56642, + [SMALL_STATE(1590)] = 56668, + [SMALL_STATE(1591)] = 56682, + [SMALL_STATE(1592)] = 56706, + [SMALL_STATE(1593)] = 56720, + [SMALL_STATE(1594)] = 56746, + [SMALL_STATE(1595)] = 56772, + [SMALL_STATE(1596)] = 56786, + [SMALL_STATE(1597)] = 56812, + [SMALL_STATE(1598)] = 56838, + [SMALL_STATE(1599)] = 56864, + [SMALL_STATE(1600)] = 56888, + [SMALL_STATE(1601)] = 56914, + [SMALL_STATE(1602)] = 56928, + [SMALL_STATE(1603)] = 56942, + [SMALL_STATE(1604)] = 56968, + [SMALL_STATE(1605)] = 56994, + [SMALL_STATE(1606)] = 57017, + [SMALL_STATE(1607)] = 57040, + [SMALL_STATE(1608)] = 57063, + [SMALL_STATE(1609)] = 57086, + [SMALL_STATE(1610)] = 57109, + [SMALL_STATE(1611)] = 57126, + [SMALL_STATE(1612)] = 57143, + [SMALL_STATE(1613)] = 57166, + [SMALL_STATE(1614)] = 57189, + [SMALL_STATE(1615)] = 57212, + [SMALL_STATE(1616)] = 57235, + [SMALL_STATE(1617)] = 57252, + [SMALL_STATE(1618)] = 57275, + [SMALL_STATE(1619)] = 57298, + [SMALL_STATE(1620)] = 57321, + [SMALL_STATE(1621)] = 57344, + [SMALL_STATE(1622)] = 57367, + [SMALL_STATE(1623)] = 57390, + [SMALL_STATE(1624)] = 57413, + [SMALL_STATE(1625)] = 57428, + [SMALL_STATE(1626)] = 57445, + [SMALL_STATE(1627)] = 57468, + [SMALL_STATE(1628)] = 57491, + [SMALL_STATE(1629)] = 57514, + [SMALL_STATE(1630)] = 57537, + [SMALL_STATE(1631)] = 57560, + [SMALL_STATE(1632)] = 57583, + [SMALL_STATE(1633)] = 57606, + [SMALL_STATE(1634)] = 57629, + [SMALL_STATE(1635)] = 57652, + [SMALL_STATE(1636)] = 57669, + [SMALL_STATE(1637)] = 57692, + [SMALL_STATE(1638)] = 57715, + [SMALL_STATE(1639)] = 57738, + [SMALL_STATE(1640)] = 57761, + [SMALL_STATE(1641)] = 57778, + [SMALL_STATE(1642)] = 57801, + [SMALL_STATE(1643)] = 57824, + [SMALL_STATE(1644)] = 57847, + [SMALL_STATE(1645)] = 57870, + [SMALL_STATE(1646)] = 57887, + [SMALL_STATE(1647)] = 57906, + [SMALL_STATE(1648)] = 57929, + [SMALL_STATE(1649)] = 57952, + [SMALL_STATE(1650)] = 57973, + [SMALL_STATE(1651)] = 57996, + [SMALL_STATE(1652)] = 58019, + [SMALL_STATE(1653)] = 58036, + [SMALL_STATE(1654)] = 58059, + [SMALL_STATE(1655)] = 58082, + [SMALL_STATE(1656)] = 58105, + [SMALL_STATE(1657)] = 58128, + [SMALL_STATE(1658)] = 58151, + [SMALL_STATE(1659)] = 58174, + [SMALL_STATE(1660)] = 58197, + [SMALL_STATE(1661)] = 58220, + [SMALL_STATE(1662)] = 58243, + [SMALL_STATE(1663)] = 58260, + [SMALL_STATE(1664)] = 58283, + [SMALL_STATE(1665)] = 58302, + [SMALL_STATE(1666)] = 58321, + [SMALL_STATE(1667)] = 58344, + [SMALL_STATE(1668)] = 58367, + [SMALL_STATE(1669)] = 58390, + [SMALL_STATE(1670)] = 58407, + [SMALL_STATE(1671)] = 58430, + [SMALL_STATE(1672)] = 58447, + [SMALL_STATE(1673)] = 58470, + [SMALL_STATE(1674)] = 58493, + [SMALL_STATE(1675)] = 58516, + [SMALL_STATE(1676)] = 58539, + [SMALL_STATE(1677)] = 58556, + [SMALL_STATE(1678)] = 58579, + [SMALL_STATE(1679)] = 58602, + [SMALL_STATE(1680)] = 58619, + [SMALL_STATE(1681)] = 58636, + [SMALL_STATE(1682)] = 58651, + [SMALL_STATE(1683)] = 58674, + [SMALL_STATE(1684)] = 58697, + [SMALL_STATE(1685)] = 58720, + [SMALL_STATE(1686)] = 58741, + [SMALL_STATE(1687)] = 58764, + [SMALL_STATE(1688)] = 58787, + [SMALL_STATE(1689)] = 58804, + [SMALL_STATE(1690)] = 58827, + [SMALL_STATE(1691)] = 58850, + [SMALL_STATE(1692)] = 58873, + [SMALL_STATE(1693)] = 58896, + [SMALL_STATE(1694)] = 58919, + [SMALL_STATE(1695)] = 58942, + [SMALL_STATE(1696)] = 58965, + [SMALL_STATE(1697)] = 58988, + [SMALL_STATE(1698)] = 59004, + [SMALL_STATE(1699)] = 59024, + [SMALL_STATE(1700)] = 59044, + [SMALL_STATE(1701)] = 59056, + [SMALL_STATE(1702)] = 59068, + [SMALL_STATE(1703)] = 59084, + [SMALL_STATE(1704)] = 59100, + [SMALL_STATE(1705)] = 59112, + [SMALL_STATE(1706)] = 59130, + [SMALL_STATE(1707)] = 59148, + [SMALL_STATE(1708)] = 59166, + [SMALL_STATE(1709)] = 59184, + [SMALL_STATE(1710)] = 59202, + [SMALL_STATE(1711)] = 59218, + [SMALL_STATE(1712)] = 59230, + [SMALL_STATE(1713)] = 59250, + [SMALL_STATE(1714)] = 59262, + [SMALL_STATE(1715)] = 59282, + [SMALL_STATE(1716)] = 59298, + [SMALL_STATE(1717)] = 59310, + [SMALL_STATE(1718)] = 59328, + [SMALL_STATE(1719)] = 59346, + [SMALL_STATE(1720)] = 59366, + [SMALL_STATE(1721)] = 59382, + [SMALL_STATE(1722)] = 59394, + [SMALL_STATE(1723)] = 59406, + [SMALL_STATE(1724)] = 59422, + [SMALL_STATE(1725)] = 59434, + [SMALL_STATE(1726)] = 59450, + [SMALL_STATE(1727)] = 59466, + [SMALL_STATE(1728)] = 59484, + [SMALL_STATE(1729)] = 59504, + [SMALL_STATE(1730)] = 59520, + [SMALL_STATE(1731)] = 59536, + [SMALL_STATE(1732)] = 59550, + [SMALL_STATE(1733)] = 59562, + [SMALL_STATE(1734)] = 59578, + [SMALL_STATE(1735)] = 59594, + [SMALL_STATE(1736)] = 59606, + [SMALL_STATE(1737)] = 59618, + [SMALL_STATE(1738)] = 59635, + [SMALL_STATE(1739)] = 59652, + [SMALL_STATE(1740)] = 59667, + [SMALL_STATE(1741)] = 59682, + [SMALL_STATE(1742)] = 59695, + [SMALL_STATE(1743)] = 59712, + [SMALL_STATE(1744)] = 59729, + [SMALL_STATE(1745)] = 59742, + [SMALL_STATE(1746)] = 59759, + [SMALL_STATE(1747)] = 59776, + [SMALL_STATE(1748)] = 59793, + [SMALL_STATE(1749)] = 59810, + [SMALL_STATE(1750)] = 59827, + [SMALL_STATE(1751)] = 59844, + [SMALL_STATE(1752)] = 59861, + [SMALL_STATE(1753)] = 59876, + [SMALL_STATE(1754)] = 59893, + [SMALL_STATE(1755)] = 59908, + [SMALL_STATE(1756)] = 59925, + [SMALL_STATE(1757)] = 59940, + [SMALL_STATE(1758)] = 59957, + [SMALL_STATE(1759)] = 59974, + [SMALL_STATE(1760)] = 59989, + [SMALL_STATE(1761)] = 60006, + [SMALL_STATE(1762)] = 60021, + [SMALL_STATE(1763)] = 60036, + [SMALL_STATE(1764)] = 60053, + [SMALL_STATE(1765)] = 60070, + [SMALL_STATE(1766)] = 60087, + [SMALL_STATE(1767)] = 60104, + [SMALL_STATE(1768)] = 60121, + [SMALL_STATE(1769)] = 60138, + [SMALL_STATE(1770)] = 60155, + [SMALL_STATE(1771)] = 60172, + [SMALL_STATE(1772)] = 60189, + [SMALL_STATE(1773)] = 60206, + [SMALL_STATE(1774)] = 60223, + [SMALL_STATE(1775)] = 60240, + [SMALL_STATE(1776)] = 60257, + [SMALL_STATE(1777)] = 60274, + [SMALL_STATE(1778)] = 60291, + [SMALL_STATE(1779)] = 60306, + [SMALL_STATE(1780)] = 60323, + [SMALL_STATE(1781)] = 60340, + [SMALL_STATE(1782)] = 60357, + [SMALL_STATE(1783)] = 60374, + [SMALL_STATE(1784)] = 60389, + [SMALL_STATE(1785)] = 60406, + [SMALL_STATE(1786)] = 60421, + [SMALL_STATE(1787)] = 60436, + [SMALL_STATE(1788)] = 60449, + [SMALL_STATE(1789)] = 60466, + [SMALL_STATE(1790)] = 60483, + [SMALL_STATE(1791)] = 60498, + [SMALL_STATE(1792)] = 60513, + [SMALL_STATE(1793)] = 60526, + [SMALL_STATE(1794)] = 60543, + [SMALL_STATE(1795)] = 60556, + [SMALL_STATE(1796)] = 60573, + [SMALL_STATE(1797)] = 60590, + [SMALL_STATE(1798)] = 60607, + [SMALL_STATE(1799)] = 60622, + [SMALL_STATE(1800)] = 60637, + [SMALL_STATE(1801)] = 60650, + [SMALL_STATE(1802)] = 60665, + [SMALL_STATE(1803)] = 60678, + [SMALL_STATE(1804)] = 60693, + [SMALL_STATE(1805)] = 60708, + [SMALL_STATE(1806)] = 60725, + [SMALL_STATE(1807)] = 60738, + [SMALL_STATE(1808)] = 60755, + [SMALL_STATE(1809)] = 60770, + [SMALL_STATE(1810)] = 60787, + [SMALL_STATE(1811)] = 60804, + [SMALL_STATE(1812)] = 60821, + [SMALL_STATE(1813)] = 60838, + [SMALL_STATE(1814)] = 60853, + [SMALL_STATE(1815)] = 60870, + [SMALL_STATE(1816)] = 60887, + [SMALL_STATE(1817)] = 60904, + [SMALL_STATE(1818)] = 60921, + [SMALL_STATE(1819)] = 60938, + [SMALL_STATE(1820)] = 60955, + [SMALL_STATE(1821)] = 60972, + [SMALL_STATE(1822)] = 60987, + [SMALL_STATE(1823)] = 61004, + [SMALL_STATE(1824)] = 61021, + [SMALL_STATE(1825)] = 61038, + [SMALL_STATE(1826)] = 61055, + [SMALL_STATE(1827)] = 61072, + [SMALL_STATE(1828)] = 61087, + [SMALL_STATE(1829)] = 61102, + [SMALL_STATE(1830)] = 61119, + [SMALL_STATE(1831)] = 61136, + [SMALL_STATE(1832)] = 61149, + [SMALL_STATE(1833)] = 61164, + [SMALL_STATE(1834)] = 61177, + [SMALL_STATE(1835)] = 61194, + [SMALL_STATE(1836)] = 61209, + [SMALL_STATE(1837)] = 61223, + [SMALL_STATE(1838)] = 61237, + [SMALL_STATE(1839)] = 61251, + [SMALL_STATE(1840)] = 61265, + [SMALL_STATE(1841)] = 61279, + [SMALL_STATE(1842)] = 61289, + [SMALL_STATE(1843)] = 61299, + [SMALL_STATE(1844)] = 61313, + [SMALL_STATE(1845)] = 61327, + [SMALL_STATE(1846)] = 61341, + [SMALL_STATE(1847)] = 61355, + [SMALL_STATE(1848)] = 61369, + [SMALL_STATE(1849)] = 61383, + [SMALL_STATE(1850)] = 61397, + [SMALL_STATE(1851)] = 61411, + [SMALL_STATE(1852)] = 61425, + [SMALL_STATE(1853)] = 61439, + [SMALL_STATE(1854)] = 61453, + [SMALL_STATE(1855)] = 61465, + [SMALL_STATE(1856)] = 61477, + [SMALL_STATE(1857)] = 61491, + [SMALL_STATE(1858)] = 61505, + [SMALL_STATE(1859)] = 61519, + [SMALL_STATE(1860)] = 61533, + [SMALL_STATE(1861)] = 61547, + [SMALL_STATE(1862)] = 61561, + [SMALL_STATE(1863)] = 61573, + [SMALL_STATE(1864)] = 61585, + [SMALL_STATE(1865)] = 61597, + [SMALL_STATE(1866)] = 61611, + [SMALL_STATE(1867)] = 61625, + [SMALL_STATE(1868)] = 61639, + [SMALL_STATE(1869)] = 61653, + [SMALL_STATE(1870)] = 61665, + [SMALL_STATE(1871)] = 61679, + [SMALL_STATE(1872)] = 61693, + [SMALL_STATE(1873)] = 61707, + [SMALL_STATE(1874)] = 61717, + [SMALL_STATE(1875)] = 61731, + [SMALL_STATE(1876)] = 61745, + [SMALL_STATE(1877)] = 61759, + [SMALL_STATE(1878)] = 61773, + [SMALL_STATE(1879)] = 61787, + [SMALL_STATE(1880)] = 61797, + [SMALL_STATE(1881)] = 61811, + [SMALL_STATE(1882)] = 61825, + [SMALL_STATE(1883)] = 61839, + [SMALL_STATE(1884)] = 61853, + [SMALL_STATE(1885)] = 61865, + [SMALL_STATE(1886)] = 61879, + [SMALL_STATE(1887)] = 61893, + [SMALL_STATE(1888)] = 61905, + [SMALL_STATE(1889)] = 61919, + [SMALL_STATE(1890)] = 61933, + [SMALL_STATE(1891)] = 61947, + [SMALL_STATE(1892)] = 61957, + [SMALL_STATE(1893)] = 61971, + [SMALL_STATE(1894)] = 61981, + [SMALL_STATE(1895)] = 61995, + [SMALL_STATE(1896)] = 62009, + [SMALL_STATE(1897)] = 62023, + [SMALL_STATE(1898)] = 62035, + [SMALL_STATE(1899)] = 62049, + [SMALL_STATE(1900)] = 62063, + [SMALL_STATE(1901)] = 62077, + [SMALL_STATE(1902)] = 62087, + [SMALL_STATE(1903)] = 62101, + [SMALL_STATE(1904)] = 62111, + [SMALL_STATE(1905)] = 62125, + [SMALL_STATE(1906)] = 62139, + [SMALL_STATE(1907)] = 62153, + [SMALL_STATE(1908)] = 62167, + [SMALL_STATE(1909)] = 62181, + [SMALL_STATE(1910)] = 62195, + [SMALL_STATE(1911)] = 62205, + [SMALL_STATE(1912)] = 62215, + [SMALL_STATE(1913)] = 62229, + [SMALL_STATE(1914)] = 62241, + [SMALL_STATE(1915)] = 62255, + [SMALL_STATE(1916)] = 62269, + [SMALL_STATE(1917)] = 62283, + [SMALL_STATE(1918)] = 62297, + [SMALL_STATE(1919)] = 62311, + [SMALL_STATE(1920)] = 62325, + [SMALL_STATE(1921)] = 62339, + [SMALL_STATE(1922)] = 62353, + [SMALL_STATE(1923)] = 62367, + [SMALL_STATE(1924)] = 62381, + [SMALL_STATE(1925)] = 62395, + [SMALL_STATE(1926)] = 62407, + [SMALL_STATE(1927)] = 62421, + [SMALL_STATE(1928)] = 62435, + [SMALL_STATE(1929)] = 62449, + [SMALL_STATE(1930)] = 62463, + [SMALL_STATE(1931)] = 62475, + [SMALL_STATE(1932)] = 62487, + [SMALL_STATE(1933)] = 62501, + [SMALL_STATE(1934)] = 62515, + [SMALL_STATE(1935)] = 62529, + [SMALL_STATE(1936)] = 62543, + [SMALL_STATE(1937)] = 62557, + [SMALL_STATE(1938)] = 62571, + [SMALL_STATE(1939)] = 62585, + [SMALL_STATE(1940)] = 62599, + [SMALL_STATE(1941)] = 62611, + [SMALL_STATE(1942)] = 62625, + [SMALL_STATE(1943)] = 62639, + [SMALL_STATE(1944)] = 62653, + [SMALL_STATE(1945)] = 62667, + [SMALL_STATE(1946)] = 62681, + [SMALL_STATE(1947)] = 62691, + [SMALL_STATE(1948)] = 62703, + [SMALL_STATE(1949)] = 62715, + [SMALL_STATE(1950)] = 62729, + [SMALL_STATE(1951)] = 62743, + [SMALL_STATE(1952)] = 62755, + [SMALL_STATE(1953)] = 62765, + [SMALL_STATE(1954)] = 62775, + [SMALL_STATE(1955)] = 62789, + [SMALL_STATE(1956)] = 62803, + [SMALL_STATE(1957)] = 62813, + [SMALL_STATE(1958)] = 62827, + [SMALL_STATE(1959)] = 62841, + [SMALL_STATE(1960)] = 62855, + [SMALL_STATE(1961)] = 62865, + [SMALL_STATE(1962)] = 62875, + [SMALL_STATE(1963)] = 62889, + [SMALL_STATE(1964)] = 62903, + [SMALL_STATE(1965)] = 62917, + [SMALL_STATE(1966)] = 62929, + [SMALL_STATE(1967)] = 62941, + [SMALL_STATE(1968)] = 62951, + [SMALL_STATE(1969)] = 62965, + [SMALL_STATE(1970)] = 62977, + [SMALL_STATE(1971)] = 62991, + [SMALL_STATE(1972)] = 63005, + [SMALL_STATE(1973)] = 63019, + [SMALL_STATE(1974)] = 63033, + [SMALL_STATE(1975)] = 63045, + [SMALL_STATE(1976)] = 63057, + [SMALL_STATE(1977)] = 63071, + [SMALL_STATE(1978)] = 63085, + [SMALL_STATE(1979)] = 63095, + [SMALL_STATE(1980)] = 63109, + [SMALL_STATE(1981)] = 63123, + [SMALL_STATE(1982)] = 63137, + [SMALL_STATE(1983)] = 63151, + [SMALL_STATE(1984)] = 63165, + [SMALL_STATE(1985)] = 63177, + [SMALL_STATE(1986)] = 63191, + [SMALL_STATE(1987)] = 63201, + [SMALL_STATE(1988)] = 63215, + [SMALL_STATE(1989)] = 63229, + [SMALL_STATE(1990)] = 63239, + [SMALL_STATE(1991)] = 63253, + [SMALL_STATE(1992)] = 63267, + [SMALL_STATE(1993)] = 63281, + [SMALL_STATE(1994)] = 63291, + [SMALL_STATE(1995)] = 63305, + [SMALL_STATE(1996)] = 63319, + [SMALL_STATE(1997)] = 63333, + [SMALL_STATE(1998)] = 63345, + [SMALL_STATE(1999)] = 63359, + [SMALL_STATE(2000)] = 63373, + [SMALL_STATE(2001)] = 63387, + [SMALL_STATE(2002)] = 63401, + [SMALL_STATE(2003)] = 63415, + [SMALL_STATE(2004)] = 63427, + [SMALL_STATE(2005)] = 63441, + [SMALL_STATE(2006)] = 63455, + [SMALL_STATE(2007)] = 63469, + [SMALL_STATE(2008)] = 63483, + [SMALL_STATE(2009)] = 63495, + [SMALL_STATE(2010)] = 63509, + [SMALL_STATE(2011)] = 63523, + [SMALL_STATE(2012)] = 63537, + [SMALL_STATE(2013)] = 63547, + [SMALL_STATE(2014)] = 63561, + [SMALL_STATE(2015)] = 63573, + [SMALL_STATE(2016)] = 63587, + [SMALL_STATE(2017)] = 63601, + [SMALL_STATE(2018)] = 63615, + [SMALL_STATE(2019)] = 63629, + [SMALL_STATE(2020)] = 63639, + [SMALL_STATE(2021)] = 63649, + [SMALL_STATE(2022)] = 63663, + [SMALL_STATE(2023)] = 63677, + [SMALL_STATE(2024)] = 63687, + [SMALL_STATE(2025)] = 63701, + [SMALL_STATE(2026)] = 63715, + [SMALL_STATE(2027)] = 63729, + [SMALL_STATE(2028)] = 63743, + [SMALL_STATE(2029)] = 63757, + [SMALL_STATE(2030)] = 63771, + [SMALL_STATE(2031)] = 63785, + [SMALL_STATE(2032)] = 63799, + [SMALL_STATE(2033)] = 63813, + [SMALL_STATE(2034)] = 63823, + [SMALL_STATE(2035)] = 63837, + [SMALL_STATE(2036)] = 63851, + [SMALL_STATE(2037)] = 63861, + [SMALL_STATE(2038)] = 63871, + [SMALL_STATE(2039)] = 63881, + [SMALL_STATE(2040)] = 63895, + [SMALL_STATE(2041)] = 63909, + [SMALL_STATE(2042)] = 63923, + [SMALL_STATE(2043)] = 63937, + [SMALL_STATE(2044)] = 63951, + [SMALL_STATE(2045)] = 63965, + [SMALL_STATE(2046)] = 63979, + [SMALL_STATE(2047)] = 63993, + [SMALL_STATE(2048)] = 64007, + [SMALL_STATE(2049)] = 64021, + [SMALL_STATE(2050)] = 64033, + [SMALL_STATE(2051)] = 64047, + [SMALL_STATE(2052)] = 64059, + [SMALL_STATE(2053)] = 64073, + [SMALL_STATE(2054)] = 64087, + [SMALL_STATE(2055)] = 64101, + [SMALL_STATE(2056)] = 64113, + [SMALL_STATE(2057)] = 64127, + [SMALL_STATE(2058)] = 64137, + [SMALL_STATE(2059)] = 64151, + [SMALL_STATE(2060)] = 64165, + [SMALL_STATE(2061)] = 64179, + [SMALL_STATE(2062)] = 64193, + [SMALL_STATE(2063)] = 64207, + [SMALL_STATE(2064)] = 64221, + [SMALL_STATE(2065)] = 64235, + [SMALL_STATE(2066)] = 64249, + [SMALL_STATE(2067)] = 64261, + [SMALL_STATE(2068)] = 64271, + [SMALL_STATE(2069)] = 64281, + [SMALL_STATE(2070)] = 64295, + [SMALL_STATE(2071)] = 64309, + [SMALL_STATE(2072)] = 64323, + [SMALL_STATE(2073)] = 64337, + [SMALL_STATE(2074)] = 64351, + [SMALL_STATE(2075)] = 64365, + [SMALL_STATE(2076)] = 64379, + [SMALL_STATE(2077)] = 64391, + [SMALL_STATE(2078)] = 64405, + [SMALL_STATE(2079)] = 64419, + [SMALL_STATE(2080)] = 64433, + [SMALL_STATE(2081)] = 64447, + [SMALL_STATE(2082)] = 64457, + [SMALL_STATE(2083)] = 64471, + [SMALL_STATE(2084)] = 64485, + [SMALL_STATE(2085)] = 64499, + [SMALL_STATE(2086)] = 64513, + [SMALL_STATE(2087)] = 64525, + [SMALL_STATE(2088)] = 64539, + [SMALL_STATE(2089)] = 64553, + [SMALL_STATE(2090)] = 64567, + [SMALL_STATE(2091)] = 64577, + [SMALL_STATE(2092)] = 64591, + [SMALL_STATE(2093)] = 64605, + [SMALL_STATE(2094)] = 64619, + [SMALL_STATE(2095)] = 64633, + [SMALL_STATE(2096)] = 64647, + [SMALL_STATE(2097)] = 64657, + [SMALL_STATE(2098)] = 64671, + [SMALL_STATE(2099)] = 64685, + [SMALL_STATE(2100)] = 64699, + [SMALL_STATE(2101)] = 64709, + [SMALL_STATE(2102)] = 64723, + [SMALL_STATE(2103)] = 64735, + [SMALL_STATE(2104)] = 64749, + [SMALL_STATE(2105)] = 64763, + [SMALL_STATE(2106)] = 64775, + [SMALL_STATE(2107)] = 64786, + [SMALL_STATE(2108)] = 64797, + [SMALL_STATE(2109)] = 64808, + [SMALL_STATE(2110)] = 64819, + [SMALL_STATE(2111)] = 64830, + [SMALL_STATE(2112)] = 64839, + [SMALL_STATE(2113)] = 64850, + [SMALL_STATE(2114)] = 64861, + [SMALL_STATE(2115)] = 64870, + [SMALL_STATE(2116)] = 64879, + [SMALL_STATE(2117)] = 64890, + [SMALL_STATE(2118)] = 64901, + [SMALL_STATE(2119)] = 64912, + [SMALL_STATE(2120)] = 64923, + [SMALL_STATE(2121)] = 64934, + [SMALL_STATE(2122)] = 64945, + [SMALL_STATE(2123)] = 64956, + [SMALL_STATE(2124)] = 64967, + [SMALL_STATE(2125)] = 64976, + [SMALL_STATE(2126)] = 64987, + [SMALL_STATE(2127)] = 64998, + [SMALL_STATE(2128)] = 65007, + [SMALL_STATE(2129)] = 65018, + [SMALL_STATE(2130)] = 65029, + [SMALL_STATE(2131)] = 65040, + [SMALL_STATE(2132)] = 65051, + [SMALL_STATE(2133)] = 65062, + [SMALL_STATE(2134)] = 65073, + [SMALL_STATE(2135)] = 65084, + [SMALL_STATE(2136)] = 65095, + [SMALL_STATE(2137)] = 65106, + [SMALL_STATE(2138)] = 65117, + [SMALL_STATE(2139)] = 65128, + [SMALL_STATE(2140)] = 65139, + [SMALL_STATE(2141)] = 65150, + [SMALL_STATE(2142)] = 65161, + [SMALL_STATE(2143)] = 65172, + [SMALL_STATE(2144)] = 65183, + [SMALL_STATE(2145)] = 65194, + [SMALL_STATE(2146)] = 65205, + [SMALL_STATE(2147)] = 65216, + [SMALL_STATE(2148)] = 65227, + [SMALL_STATE(2149)] = 65238, + [SMALL_STATE(2150)] = 65249, + [SMALL_STATE(2151)] = 65260, + [SMALL_STATE(2152)] = 65271, + [SMALL_STATE(2153)] = 65282, + [SMALL_STATE(2154)] = 65293, + [SMALL_STATE(2155)] = 65304, + [SMALL_STATE(2156)] = 65315, + [SMALL_STATE(2157)] = 65326, + [SMALL_STATE(2158)] = 65337, + [SMALL_STATE(2159)] = 65348, + [SMALL_STATE(2160)] = 65357, + [SMALL_STATE(2161)] = 65368, + [SMALL_STATE(2162)] = 65379, + [SMALL_STATE(2163)] = 65390, + [SMALL_STATE(2164)] = 65399, + [SMALL_STATE(2165)] = 65408, + [SMALL_STATE(2166)] = 65417, + [SMALL_STATE(2167)] = 65428, + [SMALL_STATE(2168)] = 65439, + [SMALL_STATE(2169)] = 65450, + [SMALL_STATE(2170)] = 65461, + [SMALL_STATE(2171)] = 65470, + [SMALL_STATE(2172)] = 65481, + [SMALL_STATE(2173)] = 65492, + [SMALL_STATE(2174)] = 65503, + [SMALL_STATE(2175)] = 65512, + [SMALL_STATE(2176)] = 65523, + [SMALL_STATE(2177)] = 65534, + [SMALL_STATE(2178)] = 65543, + [SMALL_STATE(2179)] = 65552, + [SMALL_STATE(2180)] = 65563, + [SMALL_STATE(2181)] = 65572, + [SMALL_STATE(2182)] = 65583, + [SMALL_STATE(2183)] = 65594, + [SMALL_STATE(2184)] = 65605, + [SMALL_STATE(2185)] = 65616, + [SMALL_STATE(2186)] = 65627, + [SMALL_STATE(2187)] = 65638, + [SMALL_STATE(2188)] = 65649, + [SMALL_STATE(2189)] = 65660, + [SMALL_STATE(2190)] = 65669, + [SMALL_STATE(2191)] = 65680, + [SMALL_STATE(2192)] = 65691, + [SMALL_STATE(2193)] = 65702, + [SMALL_STATE(2194)] = 65713, + [SMALL_STATE(2195)] = 65724, + [SMALL_STATE(2196)] = 65735, + [SMALL_STATE(2197)] = 65746, + [SMALL_STATE(2198)] = 65757, + [SMALL_STATE(2199)] = 65768, + [SMALL_STATE(2200)] = 65779, + [SMALL_STATE(2201)] = 65788, + [SMALL_STATE(2202)] = 65797, + [SMALL_STATE(2203)] = 65808, + [SMALL_STATE(2204)] = 65819, + [SMALL_STATE(2205)] = 65830, + [SMALL_STATE(2206)] = 65841, + [SMALL_STATE(2207)] = 65852, + [SMALL_STATE(2208)] = 65863, + [SMALL_STATE(2209)] = 65872, + [SMALL_STATE(2210)] = 65883, + [SMALL_STATE(2211)] = 65894, + [SMALL_STATE(2212)] = 65905, + [SMALL_STATE(2213)] = 65916, + [SMALL_STATE(2214)] = 65927, + [SMALL_STATE(2215)] = 65938, + [SMALL_STATE(2216)] = 65949, + [SMALL_STATE(2217)] = 65960, + [SMALL_STATE(2218)] = 65971, + [SMALL_STATE(2219)] = 65982, + [SMALL_STATE(2220)] = 65993, + [SMALL_STATE(2221)] = 66004, + [SMALL_STATE(2222)] = 66015, + [SMALL_STATE(2223)] = 66026, + [SMALL_STATE(2224)] = 66037, + [SMALL_STATE(2225)] = 66046, + [SMALL_STATE(2226)] = 66057, + [SMALL_STATE(2227)] = 66068, + [SMALL_STATE(2228)] = 66077, + [SMALL_STATE(2229)] = 66088, + [SMALL_STATE(2230)] = 66099, + [SMALL_STATE(2231)] = 66110, + [SMALL_STATE(2232)] = 66119, + [SMALL_STATE(2233)] = 66130, + [SMALL_STATE(2234)] = 66139, + [SMALL_STATE(2235)] = 66150, + [SMALL_STATE(2236)] = 66161, + [SMALL_STATE(2237)] = 66172, + [SMALL_STATE(2238)] = 66183, + [SMALL_STATE(2239)] = 66194, + [SMALL_STATE(2240)] = 66203, + [SMALL_STATE(2241)] = 66214, + [SMALL_STATE(2242)] = 66225, + [SMALL_STATE(2243)] = 66236, + [SMALL_STATE(2244)] = 66247, + [SMALL_STATE(2245)] = 66258, + [SMALL_STATE(2246)] = 66269, + [SMALL_STATE(2247)] = 66280, + [SMALL_STATE(2248)] = 66291, + [SMALL_STATE(2249)] = 66302, + [SMALL_STATE(2250)] = 66313, + [SMALL_STATE(2251)] = 66324, + [SMALL_STATE(2252)] = 66335, + [SMALL_STATE(2253)] = 66346, + [SMALL_STATE(2254)] = 66357, + [SMALL_STATE(2255)] = 66368, + [SMALL_STATE(2256)] = 66379, + [SMALL_STATE(2257)] = 66390, + [SMALL_STATE(2258)] = 66401, + [SMALL_STATE(2259)] = 66412, + [SMALL_STATE(2260)] = 66423, + [SMALL_STATE(2261)] = 66434, + [SMALL_STATE(2262)] = 66443, + [SMALL_STATE(2263)] = 66454, + [SMALL_STATE(2264)] = 66465, + [SMALL_STATE(2265)] = 66476, + [SMALL_STATE(2266)] = 66487, + [SMALL_STATE(2267)] = 66498, + [SMALL_STATE(2268)] = 66509, + [SMALL_STATE(2269)] = 66520, + [SMALL_STATE(2270)] = 66531, + [SMALL_STATE(2271)] = 66542, + [SMALL_STATE(2272)] = 66553, + [SMALL_STATE(2273)] = 66564, + [SMALL_STATE(2274)] = 66573, + [SMALL_STATE(2275)] = 66584, + [SMALL_STATE(2276)] = 66595, + [SMALL_STATE(2277)] = 66606, + [SMALL_STATE(2278)] = 66617, + [SMALL_STATE(2279)] = 66626, + [SMALL_STATE(2280)] = 66637, + [SMALL_STATE(2281)] = 66648, + [SMALL_STATE(2282)] = 66659, + [SMALL_STATE(2283)] = 66670, + [SMALL_STATE(2284)] = 66681, + [SMALL_STATE(2285)] = 66692, + [SMALL_STATE(2286)] = 66703, + [SMALL_STATE(2287)] = 66714, + [SMALL_STATE(2288)] = 66725, + [SMALL_STATE(2289)] = 66736, + [SMALL_STATE(2290)] = 66747, + [SMALL_STATE(2291)] = 66756, + [SMALL_STATE(2292)] = 66765, + [SMALL_STATE(2293)] = 66773, + [SMALL_STATE(2294)] = 66781, + [SMALL_STATE(2295)] = 66789, + [SMALL_STATE(2296)] = 66797, + [SMALL_STATE(2297)] = 66805, + [SMALL_STATE(2298)] = 66813, + [SMALL_STATE(2299)] = 66821, + [SMALL_STATE(2300)] = 66829, + [SMALL_STATE(2301)] = 66837, + [SMALL_STATE(2302)] = 66845, + [SMALL_STATE(2303)] = 66853, + [SMALL_STATE(2304)] = 66861, + [SMALL_STATE(2305)] = 66869, + [SMALL_STATE(2306)] = 66877, + [SMALL_STATE(2307)] = 66885, + [SMALL_STATE(2308)] = 66893, + [SMALL_STATE(2309)] = 66901, + [SMALL_STATE(2310)] = 66909, + [SMALL_STATE(2311)] = 66917, + [SMALL_STATE(2312)] = 66925, + [SMALL_STATE(2313)] = 66933, + [SMALL_STATE(2314)] = 66941, + [SMALL_STATE(2315)] = 66949, + [SMALL_STATE(2316)] = 66957, + [SMALL_STATE(2317)] = 66965, + [SMALL_STATE(2318)] = 66973, + [SMALL_STATE(2319)] = 66981, + [SMALL_STATE(2320)] = 66989, + [SMALL_STATE(2321)] = 66997, + [SMALL_STATE(2322)] = 67005, + [SMALL_STATE(2323)] = 67013, + [SMALL_STATE(2324)] = 67021, + [SMALL_STATE(2325)] = 67029, + [SMALL_STATE(2326)] = 67037, + [SMALL_STATE(2327)] = 67045, + [SMALL_STATE(2328)] = 67053, + [SMALL_STATE(2329)] = 67061, + [SMALL_STATE(2330)] = 67069, + [SMALL_STATE(2331)] = 67077, + [SMALL_STATE(2332)] = 67085, + [SMALL_STATE(2333)] = 67093, + [SMALL_STATE(2334)] = 67101, + [SMALL_STATE(2335)] = 67109, + [SMALL_STATE(2336)] = 67117, + [SMALL_STATE(2337)] = 67125, + [SMALL_STATE(2338)] = 67133, + [SMALL_STATE(2339)] = 67141, + [SMALL_STATE(2340)] = 67149, + [SMALL_STATE(2341)] = 67157, + [SMALL_STATE(2342)] = 67165, + [SMALL_STATE(2343)] = 67173, + [SMALL_STATE(2344)] = 67181, + [SMALL_STATE(2345)] = 67189, + [SMALL_STATE(2346)] = 67197, + [SMALL_STATE(2347)] = 67205, + [SMALL_STATE(2348)] = 67213, + [SMALL_STATE(2349)] = 67221, + [SMALL_STATE(2350)] = 67229, + [SMALL_STATE(2351)] = 67237, + [SMALL_STATE(2352)] = 67245, + [SMALL_STATE(2353)] = 67253, + [SMALL_STATE(2354)] = 67261, + [SMALL_STATE(2355)] = 67269, + [SMALL_STATE(2356)] = 67277, + [SMALL_STATE(2357)] = 67285, + [SMALL_STATE(2358)] = 67293, + [SMALL_STATE(2359)] = 67301, + [SMALL_STATE(2360)] = 67309, + [SMALL_STATE(2361)] = 67317, + [SMALL_STATE(2362)] = 67325, + [SMALL_STATE(2363)] = 67333, + [SMALL_STATE(2364)] = 67341, + [SMALL_STATE(2365)] = 67349, + [SMALL_STATE(2366)] = 67357, + [SMALL_STATE(2367)] = 67365, + [SMALL_STATE(2368)] = 67373, + [SMALL_STATE(2369)] = 67381, + [SMALL_STATE(2370)] = 67389, + [SMALL_STATE(2371)] = 67397, + [SMALL_STATE(2372)] = 67405, + [SMALL_STATE(2373)] = 67413, + [SMALL_STATE(2374)] = 67421, + [SMALL_STATE(2375)] = 67429, + [SMALL_STATE(2376)] = 67437, + [SMALL_STATE(2377)] = 67445, + [SMALL_STATE(2378)] = 67453, + [SMALL_STATE(2379)] = 67461, + [SMALL_STATE(2380)] = 67469, + [SMALL_STATE(2381)] = 67477, + [SMALL_STATE(2382)] = 67485, + [SMALL_STATE(2383)] = 67493, + [SMALL_STATE(2384)] = 67501, + [SMALL_STATE(2385)] = 67509, + [SMALL_STATE(2386)] = 67517, + [SMALL_STATE(2387)] = 67525, + [SMALL_STATE(2388)] = 67533, + [SMALL_STATE(2389)] = 67541, + [SMALL_STATE(2390)] = 67549, + [SMALL_STATE(2391)] = 67557, + [SMALL_STATE(2392)] = 67565, + [SMALL_STATE(2393)] = 67573, + [SMALL_STATE(2394)] = 67581, + [SMALL_STATE(2395)] = 67589, + [SMALL_STATE(2396)] = 67597, + [SMALL_STATE(2397)] = 67605, + [SMALL_STATE(2398)] = 67613, + [SMALL_STATE(2399)] = 67621, + [SMALL_STATE(2400)] = 67629, + [SMALL_STATE(2401)] = 67637, + [SMALL_STATE(2402)] = 67645, + [SMALL_STATE(2403)] = 67653, + [SMALL_STATE(2404)] = 67661, + [SMALL_STATE(2405)] = 67669, + [SMALL_STATE(2406)] = 67677, + [SMALL_STATE(2407)] = 67685, + [SMALL_STATE(2408)] = 67693, + [SMALL_STATE(2409)] = 67701, + [SMALL_STATE(2410)] = 67709, + [SMALL_STATE(2411)] = 67717, + [SMALL_STATE(2412)] = 67725, + [SMALL_STATE(2413)] = 67733, + [SMALL_STATE(2414)] = 67741, + [SMALL_STATE(2415)] = 67749, + [SMALL_STATE(2416)] = 67757, + [SMALL_STATE(2417)] = 67765, + [SMALL_STATE(2418)] = 67773, + [SMALL_STATE(2419)] = 67781, + [SMALL_STATE(2420)] = 67789, + [SMALL_STATE(2421)] = 67797, + [SMALL_STATE(2422)] = 67805, + [SMALL_STATE(2423)] = 67813, + [SMALL_STATE(2424)] = 67821, + [SMALL_STATE(2425)] = 67829, + [SMALL_STATE(2426)] = 67837, + [SMALL_STATE(2427)] = 67845, + [SMALL_STATE(2428)] = 67853, + [SMALL_STATE(2429)] = 67861, + [SMALL_STATE(2430)] = 67869, + [SMALL_STATE(2431)] = 67877, + [SMALL_STATE(2432)] = 67885, + [SMALL_STATE(2433)] = 67893, + [SMALL_STATE(2434)] = 67901, + [SMALL_STATE(2435)] = 67909, + [SMALL_STATE(2436)] = 67917, + [SMALL_STATE(2437)] = 67925, + [SMALL_STATE(2438)] = 67933, + [SMALL_STATE(2439)] = 67941, + [SMALL_STATE(2440)] = 67949, + [SMALL_STATE(2441)] = 67957, + [SMALL_STATE(2442)] = 67965, + [SMALL_STATE(2443)] = 67973, + [SMALL_STATE(2444)] = 67981, + [SMALL_STATE(2445)] = 67989, + [SMALL_STATE(2446)] = 67997, + [SMALL_STATE(2447)] = 68005, + [SMALL_STATE(2448)] = 68013, + [SMALL_STATE(2449)] = 68021, + [SMALL_STATE(2450)] = 68029, + [SMALL_STATE(2451)] = 68037, + [SMALL_STATE(2452)] = 68045, + [SMALL_STATE(2453)] = 68053, + [SMALL_STATE(2454)] = 68061, + [SMALL_STATE(2455)] = 68069, + [SMALL_STATE(2456)] = 68077, + [SMALL_STATE(2457)] = 68085, + [SMALL_STATE(2458)] = 68093, + [SMALL_STATE(2459)] = 68101, + [SMALL_STATE(2460)] = 68109, + [SMALL_STATE(2461)] = 68117, + [SMALL_STATE(2462)] = 68125, + [SMALL_STATE(2463)] = 68133, + [SMALL_STATE(2464)] = 68141, + [SMALL_STATE(2465)] = 68149, + [SMALL_STATE(2466)] = 68157, + [SMALL_STATE(2467)] = 68165, + [SMALL_STATE(2468)] = 68173, + [SMALL_STATE(2469)] = 68181, + [SMALL_STATE(2470)] = 68189, + [SMALL_STATE(2471)] = 68197, + [SMALL_STATE(2472)] = 68205, + [SMALL_STATE(2473)] = 68213, + [SMALL_STATE(2474)] = 68221, + [SMALL_STATE(2475)] = 68229, + [SMALL_STATE(2476)] = 68237, + [SMALL_STATE(2477)] = 68245, + [SMALL_STATE(2478)] = 68253, + [SMALL_STATE(2479)] = 68261, + [SMALL_STATE(2480)] = 68269, + [SMALL_STATE(2481)] = 68277, + [SMALL_STATE(2482)] = 68285, + [SMALL_STATE(2483)] = 68293, + [SMALL_STATE(2484)] = 68301, + [SMALL_STATE(2485)] = 68309, + [SMALL_STATE(2486)] = 68317, + [SMALL_STATE(2487)] = 68325, + [SMALL_STATE(2488)] = 68333, + [SMALL_STATE(2489)] = 68341, + [SMALL_STATE(2490)] = 68349, + [SMALL_STATE(2491)] = 68357, + [SMALL_STATE(2492)] = 68365, + [SMALL_STATE(2493)] = 68373, + [SMALL_STATE(2494)] = 68381, + [SMALL_STATE(2495)] = 68389, + [SMALL_STATE(2496)] = 68397, + [SMALL_STATE(2497)] = 68405, + [SMALL_STATE(2498)] = 68413, + [SMALL_STATE(2499)] = 68421, + [SMALL_STATE(2500)] = 68429, + [SMALL_STATE(2501)] = 68437, + [SMALL_STATE(2502)] = 68445, + [SMALL_STATE(2503)] = 68453, + [SMALL_STATE(2504)] = 68461, + [SMALL_STATE(2505)] = 68469, + [SMALL_STATE(2506)] = 68477, + [SMALL_STATE(2507)] = 68485, + [SMALL_STATE(2508)] = 68493, + [SMALL_STATE(2509)] = 68501, + [SMALL_STATE(2510)] = 68509, + [SMALL_STATE(2511)] = 68517, + [SMALL_STATE(2512)] = 68525, + [SMALL_STATE(2513)] = 68533, + [SMALL_STATE(2514)] = 68541, + [SMALL_STATE(2515)] = 68549, + [SMALL_STATE(2516)] = 68557, + [SMALL_STATE(2517)] = 68565, + [SMALL_STATE(2518)] = 68573, + [SMALL_STATE(2519)] = 68581, + [SMALL_STATE(2520)] = 68589, + [SMALL_STATE(2521)] = 68597, + [SMALL_STATE(2522)] = 68605, + [SMALL_STATE(2523)] = 68613, + [SMALL_STATE(2524)] = 68621, }; static TSParseActionEntry ts_parse_actions[] = { @@ -121755,2552 +124424,2642 @@ static TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1086), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(251), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1793), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(33), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5), - [142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(29), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(95), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(981), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2477), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1435), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1461), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(726), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(712), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2474), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2056), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(563), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(91), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(587), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(557), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2064), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(143), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2462), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1275), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1832), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2403), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2401), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2400), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1099), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1416), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1242), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(77), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2135), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1401), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(591), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2386), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(81), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(526), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2143), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(965), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1745), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1054), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1064), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2379), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1284), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1064), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1135), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(262), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1854), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(29), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(96), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1024), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2524), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1481), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1483), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(754), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(747), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2521), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2115), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(569), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(76), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(603), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(575), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2118), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(142), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2517), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1323), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2047), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2507), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2504), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2457), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1144), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1472), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1288), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(79), + [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2191), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1438), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(605), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2446), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(88), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(550), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2194), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1079), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1790), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1063), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1064), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2441), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1328), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1064), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 138), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 138), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 141), + [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 141), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 97), - [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 97), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 224), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 224), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 207), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 207), - [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 1), - [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 1), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 183), - [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 183), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(720), - [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(33), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(16), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(29), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(95), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(981), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2477), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1843), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2187), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(726), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(823), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(550), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(73), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2212), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(120), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2189), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(84), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(591), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2386), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(81), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(526), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2143), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(965), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1745), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1054), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1064), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2379), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1064), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 89), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 89), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 163), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 163), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 128), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 128), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 189), + [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 189), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 132), + [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 132), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 215), + [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 215), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 232), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 232), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(737), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), + [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(10), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(29), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(96), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1024), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2524), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1908), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2209), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(754), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(802), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(581), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(90), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2215), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(179), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2210), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(84), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(605), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2446), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(88), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(550), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2194), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1079), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1790), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1063), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1064), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2441), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1064), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 1), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 1), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 169), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 169), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 109), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 109), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 149), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 149), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(243), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(318), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(319), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(320), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2374), - [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(513), - [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1785), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(525), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(509), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2240), - [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(795), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1828), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2267), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1491), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1531), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1500), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2276), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2116), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(585), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(565), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2280), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1275), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1805), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2281), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2282), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2283), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1910), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1501), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1241), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2115), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1385), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(591), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2294), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2287), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1286), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2287), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 164), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 164), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 81), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 81), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 74), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 74), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 73), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 73), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 74), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 74), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 81), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 81), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 85), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 85), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 86), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 86), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 74), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 74), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 72), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 72), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 74), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 74), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 87), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 87), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 71), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 71), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 70), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 70), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 91), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 91), - [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(287), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(483), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(485), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(487), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2455), - [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(513), - [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1785), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(525), - [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(287), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 92), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 92), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 94), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 94), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 69), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 69), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 108), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 108), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 109), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 109), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 91), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 91), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 92), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 92), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 111), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 111), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 92), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 92), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 112), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 112), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 113), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 113), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 92), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 92), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 114), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 114), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 115), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 115), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 117), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 117), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 118), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 118), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 123), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 123), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 124), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 124), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 116), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 116), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 118), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 118), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 74), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 74), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 116), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 116), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 125), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 125), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 118), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 118), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 116), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 116), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 118), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 118), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 126), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 126), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 231), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 231), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 227), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 227), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 230), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 230), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 127), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 127), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 229), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 229), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 222), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 222), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 228), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 228), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 226), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 226), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 216), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 216), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 225), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 225), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 132), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 132), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 133), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 133), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 223), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 223), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 222), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 222), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 221), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 221), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 134), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 134), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 140), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 140), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 204), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 204), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 220), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 220), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 142), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 142), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 219), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 219), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 212), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 212), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 218), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 218), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 197), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 197), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 217), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 217), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 215), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 215), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 214), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 214), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 147), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 147), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 148), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 148), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 212), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 212), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 211), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 211), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 209), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 209), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 179), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 179), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 151), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 151), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 206), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 206), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 205), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 205), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 204), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 204), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 203), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 203), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 202), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 202), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 201), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 201), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 200), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 200), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 199), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 199), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 118), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 118), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 198), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 198), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 197), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 197), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 196), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 196), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 166), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 166), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 195), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 195), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 155), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 155), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 156), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 156), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 192), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 192), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 157), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 157), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 158), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 158), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 159), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 159), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 160), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 160), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 176), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 176), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 162), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 162), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 188), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 188), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 166), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 166), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 167), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 167), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 187), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 187), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 185), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 185), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 123), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 123), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 168), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 168), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 184), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 184), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 151), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 151), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 161), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 161), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 74), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 74), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 181), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 181), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 133), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 133), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 180), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 180), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 118), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 118), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 161), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 161), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 169), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 169), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 161), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 161), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 176), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 176), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 171), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 171), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 172), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 172), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 174), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 174), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1360), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(521), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(522), - [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1306), - [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2242), - [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1705), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2346), - [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(575), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(591), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2295), - [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1377), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(573), - [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(572), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1406), - [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2244), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1331), - [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1789), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1302), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1891), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1891), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 175), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 175), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2346), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 67), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 67), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 98), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 98), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 101), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 101), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 103), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 103), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 121), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 121), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 149), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 149), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 149), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 139), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 139), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 141), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 141), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 144), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 144), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 154), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 154), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 112), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 112), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2262), + [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(945), + [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1948), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2403), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1551), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1578), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1539), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2304), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2189), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(607), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(580), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2309), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1323), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2041), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2310), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2311), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2312), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1888), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1538), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1290), + [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2188), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1422), + [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(605), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2426), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2319), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1329), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2319), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(242), + [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(379), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(378), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(375), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2379), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(556), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1801), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(551), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(534), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 167), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 167), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 220), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 220), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 219), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 219), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 217), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 217), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 185), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 185), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 214), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 214), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 213), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 213), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 212), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 212), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 211), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 211), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 222), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 222), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 210), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 210), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 209), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 209), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 208), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 208), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 207), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 207), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 122), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 122), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 200), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 200), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 206), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 206), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 223), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 223), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 205), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 205), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 204), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 204), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 117), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 117), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 172), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 172), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 224), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 224), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 225), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 225), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 205), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 205), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 203), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 203), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 164), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 164), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 226), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 226), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 220), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 220), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 199), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 199), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 198), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 198), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 197), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 197), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 161), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 161), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 152), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 152), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 227), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 227), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 228), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 228), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 212), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 212), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 230), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 230), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 231), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 231), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 120), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 120), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 182), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 182), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 194), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 194), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 127), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 127), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 193), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 193), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 128), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 128), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 190), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 190), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 145), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 145), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 156), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 156), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 233), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 233), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 120), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 120), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 122), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 122), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 120), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 120), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 224), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 224), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 235), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 235), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 236), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 236), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 129), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 129), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 187), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 187), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 136), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 136), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 186), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 186), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 122), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 122), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 230), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 230), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 185), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 185), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 238), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 238), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 120), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 120), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 122), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 122), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 239), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 239), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 236), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 236), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 240), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 240), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 130), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 130), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 131), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 131), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 182), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 182), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 159), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 159), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 160), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 160), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(440), + [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(517), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(515), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(512), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2364), + [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(556), + [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1801), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(551), + [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(440), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 180), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 180), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 179), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 179), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 177), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 177), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 135), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 135), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 176), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 176), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 167), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 167), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 175), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 175), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 167), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 167), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 136), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 136), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 122), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 122), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 137), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 137), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 156), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 156), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 198), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 198), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 127), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 127), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 173), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 173), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 172), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 172), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 170), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 170), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 167), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 167), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 166), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 166), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 117), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 117), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 162), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 162), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 161), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 161), + [2055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1399), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(555), + [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(545), + [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1356), + [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2212), + [2070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1756), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2422), + [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(572), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(605), + [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2410), + [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1427), + [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(571), + [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(597), + [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1441), + [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2224), + [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1392), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1798), + [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1343), + [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1863), + [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1863), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 181), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 181), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2422), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 125), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 125), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 192), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 192), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 142), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 142), [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 88), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 88), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 109), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 109), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 109), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 90), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 90), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 154), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 154), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 154), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 133), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 133), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 129), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 129), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [2886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2420), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 186), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 186), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 208), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 109), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 110), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 110), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 122), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 178), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 177), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 130), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 149), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 165), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 150), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1464), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1482), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(431), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(429), - [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(428), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(538), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 131), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 189), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1296), - [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(185), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 189), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 101), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 213), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 152), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 101), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 152), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 213), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(546), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1097), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1749), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 83), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 120), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 108), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 75), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 76), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 77), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 78), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 79), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(543), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 101), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 210), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 96), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(670), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 99), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1499), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1111), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 190), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 182), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1240), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 119), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1510), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(41), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1502), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1479), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 154), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 153), - [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 153), SHIFT_REPEAT(508), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(96), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(187), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 135), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 136), - [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1607), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 137), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(237), - [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 91), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2246), - [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 82), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5131] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2465), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 149), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 149), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 183), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 154), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 134), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 184), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 216), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 171), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 126), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 155), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [3449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [3457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(560), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1528), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1553), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(395), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(392), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(391), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 234), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1348), + [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(181), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 195), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 221), + [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1143), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 124), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1808), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(594), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(664), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1550), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1287), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 123), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1540), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(565), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(36), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1519), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 140), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(187), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 138), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1685), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(238), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2121), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 157), + [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 157), SHIFT_REPEAT(532), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 158), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1536), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(123), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 188), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 196), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1182), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 218), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5333] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), }; #ifdef __cplusplus