diff --git a/corpus/declarations.txt b/corpus/declarations.txt index 3c7b25f0..55fa032b 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -1384,3 +1384,21 @@ crate const X: u32 = 0; (visibility_modifier (crate)) (identifier) (parameters) (block)) (const_item (visibility_modifier (crate)) (identifier) (primitive_type) (integer_literal))) + +=================================== +Reserved keywords in path +=================================== + +struct A { + a: default::B, + b: union::C, +} + +--- + +(source_file + (struct_item + (type_identifier) + (field_declaration_list + (field_declaration (field_identifier) (scoped_type_identifier (identifier) (type_identifier))) + (field_declaration (field_identifier) (scoped_type_identifier (identifier) (type_identifier)))))) diff --git a/corpus/macros.txt b/corpus/macros.txt index 17edfd06..ca687d6a 100644 --- a/corpus/macros.txt +++ b/corpus/macros.txt @@ -28,6 +28,8 @@ a!(b + c + +); a!('a'..='z'); a!('\u{0}'..='\u{2}'); a!('lifetime) +default!(a); +union!(a); ---- @@ -50,6 +52,12 @@ a!('lifetime) (macro_invocation (identifier) (token_tree (char_literal) (char_literal))) + (macro_invocation + (identifier) + (token_tree (identifier))) + (macro_invocation + (identifier) + (token_tree (identifier))) (macro_invocation (identifier) (token_tree (identifier)))) diff --git a/grammar.js b/grammar.js index 86a4be20..5185aae1 100644 --- a/grammar.js +++ b/grammar.js @@ -129,7 +129,10 @@ module.exports = grammar({ return seq( 'macro_rules!', - field('name', $.identifier), + field('name', choice( + $.identifier, + $._reserved_identifier, + )), choice( seq('(', rules, ')', ';'), seq('{', rules, '}') @@ -877,7 +880,8 @@ module.exports = grammar({ macro_invocation: $ => seq( field('macro', choice( $.scoped_identifier, - $.identifier + $.identifier, + $._reserved_identifier, )), '!', $.token_tree @@ -1429,7 +1433,8 @@ module.exports = grammar({ $.super, $.crate, $.identifier, - $.scoped_identifier + $.scoped_identifier, + $._reserved_identifier, ), identifier: $ => /(r#)?[_\p{XID_Start}][_\p{XID_Continue}]*/, @@ -1445,7 +1450,7 @@ module.exports = grammar({ self: $ => 'self', super: $ => 'super', crate: $ => 'crate', - + metavariable: $ => /\$[a-zA-Z_]\w*/ } }) diff --git a/src/grammar.json b/src/grammar.json index 1f301eb6..46a8f410 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -152,8 +152,17 @@ "type": "FIELD", "name": "name", "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] } }, { @@ -4852,6 +4861,10 @@ { "type": "SYMBOL", "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" } ] } @@ -8213,6 +8226,10 @@ { "type": "SYMBOL", "name": "scoped_identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" } ] }, diff --git a/src/parser.c b/src/parser.c index abcab6f6..7f286794 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2418 -#define LARGE_STATE_COUNT 546 +#define STATE_COUNT 2480 +#define LARGE_STATE_COUNT 594 #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 230 +#define PRODUCTION_ID_COUNT 232 enum { sym_identifier = 1, @@ -2318,219 +2318,221 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [10] = {.index = 7, .length = 2}, [11] = {.index = 9, .length = 2}, [12] = {.index = 9, .length = 2}, - [13] = {.index = 11, .length = 2}, - [14] = {.index = 13, .length = 2}, - [15] = {.index = 13, .length = 2}, - [16] = {.index = 15, .length = 2}, - [17] = {.index = 17, .length = 1}, + [13] = {.index = 11, .length = 1}, + [14] = {.index = 12, .length = 2}, + [15] = {.index = 14, .length = 2}, + [16] = {.index = 14, .length = 2}, + [17] = {.index = 16, .length = 2}, [18] = {.index = 18, .length = 1}, - [19] = {.index = 18, .length = 1}, + [19] = {.index = 19, .length = 1}, [20] = {.index = 19, .length = 1}, - [21] = {.index = 20, .length = 2}, - [22] = {.index = 22, .length = 2}, - [23] = {.index = 20, .length = 2}, - [24] = {.index = 24, .length = 1}, - [25] = {.index = 25, .length = 2}, - [26] = {.index = 11, .length = 2}, - [27] = {.index = 27, .length = 1}, + [21] = {.index = 20, .length = 1}, + [22] = {.index = 21, .length = 2}, + [23] = {.index = 23, .length = 2}, + [24] = {.index = 21, .length = 2}, + [25] = {.index = 25, .length = 1}, + [26] = {.index = 26, .length = 2}, + [27] = {.index = 12, .length = 2}, [28] = {.index = 28, .length = 1}, - [29] = {.index = 29, .length = 2}, - [30] = {.index = 31, .length = 1}, - [31] = {.index = 32, .length = 2}, - [32] = {.index = 34, .length = 1}, - [33] = {.index = 9, .length = 2}, + [29] = {.index = 29, .length = 1}, + [30] = {.index = 30, .length = 2}, + [31] = {.index = 32, .length = 1}, + [32] = {.index = 33, .length = 2}, + [33] = {.index = 11, .length = 1}, [34] = {.index = 9, .length = 2}, - [35] = {.index = 35, .length = 2}, - [36] = {.index = 37, .length = 2}, - [37] = {.index = 39, .length = 1}, - [38] = {.index = 9, .length = 2}, + [35] = {.index = 9, .length = 2}, + [36] = {.index = 35, .length = 2}, + [37] = {.index = 37, .length = 2}, + [38] = {.index = 39, .length = 1}, [39] = {.index = 9, .length = 2}, - [40] = {.index = 40, .length = 3}, - [41] = {.index = 43, .length = 2}, - [42] = {.index = 45, .length = 2}, - [43] = {.index = 47, .length = 2}, + [40] = {.index = 9, .length = 2}, + [41] = {.index = 40, .length = 3}, + [42] = {.index = 43, .length = 2}, + [43] = {.index = 45, .length = 2}, [44] = {.index = 47, .length = 2}, - [45] = {.index = 37, .length = 2}, - [46] = {.index = 49, .length = 1}, - [47] = {.index = 50, .length = 2}, - [48] = {.index = 52, .length = 3}, - [49] = {.index = 55, .length = 2}, - [50] = {.index = 57, .length = 3}, - [52] = {.index = 60, .length = 1}, - [53] = {.index = 60, .length = 1}, - [54] = {.index = 49, .length = 1}, - [56] = {.index = 61, .length = 3}, - [57] = {.index = 64, .length = 1}, - [58] = {.index = 65, .length = 1}, - [60] = {.index = 66, .length = 2}, - [61] = {.index = 66, .length = 2}, - [62] = {.index = 68, .length = 1}, - [63] = {.index = 69, .length = 3}, - [64] = {.index = 72, .length = 2}, - [65] = {.index = 74, .length = 2}, - [66] = {.index = 74, .length = 2}, - [67] = {.index = 76, .length = 1}, - [68] = {.index = 77, .length = 2}, - [69] = {.index = 79, .length = 3}, - [70] = {.index = 82, .length = 2}, - [71] = {.index = 84, .length = 2}, - [72] = {.index = 86, .length = 2}, - [73] = {.index = 88, .length = 2}, - [74] = {.index = 90, .length = 2}, + [45] = {.index = 47, .length = 2}, + [46] = {.index = 37, .length = 2}, + [47] = {.index = 1, .length = 1}, + [48] = {.index = 49, .length = 1}, + [49] = {.index = 50, .length = 2}, + [50] = {.index = 52, .length = 3}, + [51] = {.index = 55, .length = 2}, + [52] = {.index = 57, .length = 3}, + [54] = {.index = 60, .length = 1}, + [55] = {.index = 60, .length = 1}, + [56] = {.index = 49, .length = 1}, + [58] = {.index = 61, .length = 3}, + [59] = {.index = 64, .length = 1}, + [60] = {.index = 65, .length = 1}, + [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}, + [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}, + [73] = {.index = 84, .length = 2}, + [74] = {.index = 86, .length = 2}, [75] = {.index = 88, .length = 2}, [76] = {.index = 90, .length = 2}, - [77] = {.index = 92, .length = 1}, - [78] = {.index = 92, .length = 1}, - [79] = {.index = 93, .length = 1}, - [80] = {.index = 94, .length = 2}, - [81] = {.index = 96, .length = 2}, - [82] = {.index = 96, .length = 2}, - [83] = {.index = 86, .length = 2}, - [84] = {.index = 93, .length = 1}, - [85] = {.index = 98, .length = 1}, - [86] = {.index = 99, .length = 3}, - [87] = {.index = 102, .length = 1}, - [88] = {.index = 103, .length = 1}, - [89] = {.index = 104, .length = 2}, - [90] = {.index = 106, .length = 3}, - [91] = {.index = 109, .length = 3}, - [92] = {.index = 112, .length = 4}, - [93] = {.index = 116, .length = 3}, - [94] = {.index = 1, .length = 1}, - [95] = {.index = 119, .length = 3}, - [96] = {.index = 122, .length = 2}, - [97] = {.index = 124, .length = 2}, - [98] = {.index = 124, .length = 2}, - [99] = {.index = 126, .length = 1}, - [100] = {.index = 127, .length = 3}, - [101] = {.index = 130, .length = 3}, - [102] = {.index = 133, .length = 3}, - [103] = {.index = 136, .length = 1}, - [104] = {.index = 127, .length = 3}, - [105] = {.index = 130, .length = 3}, - [106] = {.index = 137, .length = 2}, - [107] = {.index = 139, .length = 2}, - [109] = {.index = 141, .length = 3}, - [110] = {.index = 144, .length = 4}, - [111] = {.index = 104, .length = 2}, - [112] = {.index = 148, .length = 3}, - [113] = {.index = 151, .length = 2}, - [114] = {.index = 153, .length = 2}, - [115] = {.index = 155, .length = 3}, - [116] = {.index = 158, .length = 3}, - [117] = {.index = 31, .length = 1}, - [118] = {.index = 137, .length = 2}, - [119] = {.index = 161, .length = 3}, - [120] = {.index = 164, .length = 2}, - [121] = {.index = 166, .length = 2}, - [122] = {.index = 168, .length = 3}, - [123] = {.index = 171, .length = 2}, - [124] = {.index = 173, .length = 2}, - [125] = {.index = 175, .length = 1}, - [126] = {.index = 176, .length = 2}, - [127] = {.index = 178, .length = 1}, - [128] = {.index = 164, .length = 2}, - [129] = {.index = 179, .length = 2}, - [130] = {.index = 181, .length = 4}, - [131] = {.index = 185, .length = 3}, - [132] = {.index = 188, .length = 4}, - [133] = {.index = 93, .length = 1}, - [134] = {.index = 192, .length = 2}, - [135] = {.index = 194, .length = 2}, - [136] = {.index = 196, .length = 3}, - [137] = {.index = 199, .length = 2}, - [138] = {.index = 201, .length = 3}, - [139] = {.index = 204, .length = 2}, - [140] = {.index = 206, .length = 4}, - [141] = {.index = 206, .length = 4}, - [142] = {.index = 210, .length = 3}, - [143] = {.index = 210, .length = 3}, - [144] = {.index = 201, .length = 3}, - [145] = {.index = 213, .length = 2}, - [146] = {.index = 215, .length = 2}, - [147] = {.index = 217, .length = 2}, - [148] = {.index = 219, .length = 1}, - [149] = {.index = 220, .length = 2}, - [150] = {.index = 222, .length = 2}, - [151] = {.index = 194, .length = 2}, - [152] = {.index = 224, .length = 4}, - [153] = {.index = 228, .length = 3}, - [154] = {.index = 231, .length = 3}, - [155] = {.index = 234, .length = 3}, - [156] = {.index = 231, .length = 3}, - [157] = {.index = 237, .length = 3}, - [158] = {.index = 240, .length = 3}, - [159] = {.index = 243, .length = 4}, - [160] = {.index = 247, .length = 3}, - [161] = {.index = 250, .length = 2}, - [162] = {.index = 252, .length = 2}, - [163] = {.index = 254, .length = 3}, - [164] = {.index = 257, .length = 4}, - [165] = {.index = 261, .length = 3}, - [166] = {.index = 220, .length = 2}, - [167] = {.index = 264, .length = 2}, - [168] = {.index = 266, .length = 3}, - [169] = {.index = 269, .length = 3}, - [170] = {.index = 272, .length = 2}, - [171] = {.index = 274, .length = 3}, - [172] = {.index = 194, .length = 2}, - [173] = {.index = 277, .length = 3}, - [174] = {.index = 280, .length = 3}, - [175] = {.index = 252, .length = 2}, - [176] = {.index = 283, .length = 4}, - [177] = {.index = 287, .length = 5}, - [178] = {.index = 292, .length = 4}, - [179] = {.index = 296, .length = 2}, - [180] = {.index = 298, .length = 4}, - [181] = {.index = 302, .length = 4}, - [182] = {.index = 302, .length = 4}, - [183] = {.index = 306, .length = 2}, - [184] = {.index = 308, .length = 3}, - [185] = {.index = 311, .length = 2}, - [186] = {.index = 313, .length = 2}, - [187] = {.index = 104, .length = 2}, - [188] = {.index = 315, .length = 3}, - [189] = {.index = 318, .length = 4}, - [190] = {.index = 318, .length = 4}, - [191] = {.index = 315, .length = 3}, - [192] = {.index = 322, .length = 4}, - [193] = {.index = 326, .length = 4}, - [194] = {.index = 330, .length = 3}, - [195] = {.index = 333, .length = 4}, - [196] = {.index = 337, .length = 3}, - [197] = {.index = 340, .length = 3}, - [198] = {.index = 343, .length = 3}, - [199] = {.index = 346, .length = 4}, - [200] = {.index = 350, .length = 2}, - [201] = {.index = 352, .length = 3}, - [202] = {.index = 355, .length = 4}, - [203] = {.index = 359, .length = 3}, - [204] = {.index = 362, .length = 3}, - [205] = {.index = 365, .length = 3}, - [206] = {.index = 368, .length = 5}, - [207] = {.index = 373, .length = 2}, - [208] = {.index = 375, .length = 3}, - [209] = {.index = 378, .length = 3}, - [210] = {.index = 381, .length = 2}, - [211] = {.index = 383, .length = 4}, - [212] = {.index = 383, .length = 4}, - [213] = {.index = 387, .length = 4}, - [214] = {.index = 391, .length = 5}, - [215] = {.index = 396, .length = 4}, - [216] = {.index = 400, .length = 2}, - [217] = {.index = 402, .length = 4}, - [218] = {.index = 406, .length = 4}, - [219] = {.index = 410, .length = 3}, - [220] = {.index = 413, .length = 4}, - [221] = {.index = 417, .length = 3}, - [222] = {.index = 420, .length = 3}, - [223] = {.index = 423, .length = 2}, - [224] = {.index = 425, .length = 5}, - [225] = {.index = 430, .length = 4}, - [226] = {.index = 434, .length = 5}, - [227] = {.index = 439, .length = 4}, - [228] = {.index = 443, .length = 3}, - [229] = {.index = 446, .length = 5}, + [77] = {.index = 88, .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}, + [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}, + [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}, + [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}, + [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}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2553,45 +2555,45 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 2}, {field_path, 0}, [11] = + {field_macro, 0}, + [12] = {field_body, 2}, {field_name, 1}, - [13] = + [14] = {field_type, 0}, {field_type_arguments, 1}, - [15] = + [16] = {field_condition, 1}, {field_consequence, 2}, - [17] = - {field_parameters, 1}, [18] = - {field_trait, 1}, + {field_parameters, 1}, [19] = - {field_type, 1}, + {field_trait, 1}, [20] = + {field_type, 1}, + [21] = {field_parameters, 1}, {field_trait, 0}, - [22] = + [23] = {field_body, 2}, {field_type, 1}, - [24] = - {field_pattern, 1}, [25] = + {field_pattern, 1}, + [26] = {field_body, 2}, {field_value, 1}, - [27] = - {field_list, 1}, [28] = - {field_argument, 1}, + {field_list, 1}, [29] = + {field_argument, 1}, + [30] = {field_body, 2}, {field_condition, 1}, - [31] = - {field_value, 2}, [32] = + {field_value, 2}, + [33] = {field_body, 2}, {field_parameters, 1}, - [34] = - {field_macro, 0}, [35] = {field_function, 0}, {field_type_arguments, 2}, @@ -2865,272 +2867,272 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 2}, {field_type, 4}, [222] = + {field_type, 1}, + {field_type, 2, .inherited = true}, + [224] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [224] = + [226] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [228] = + [230] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [231] = + [233] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [234] = + [236] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [237] = + [239] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [240] = + [242] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [243] = + [245] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [247] = + [249] = {field_body, 5}, {field_pattern, 2}, {field_value, 4}, - [250] = + [252] = {field_alias, 4}, {field_name, 2}, - [252] = + [254] = {field_name, 1}, {field_value, 3}, - [254] = + [256] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [257] = + [259] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [261] = + [263] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [264] = + [266] = {field_body, 5}, {field_name, 3}, - [266] = + [268] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [269] = + [271] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [272] = + [274] = {field_name, 3}, {field_parameters, 4}, - [274] = + [276] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [277] = + [279] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [280] = + [282] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [283] = + [285] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [287] = + [289] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [292] = + [294] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [296] = + [298] = {field_name, 1}, {field_pattern, 3}, - [298] = + [300] = {field_alternative, 6}, {field_consequence, 5}, {field_pattern, 2}, {field_value, 4}, - [302] = + [304] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [306] = + [308] = {field_parameters, 3}, {field_return_type, 5}, - [308] = + [310] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [311] = + [313] = {field_name, 3}, {field_type, 5}, - [313] = - {field_type, 1}, - {field_type, 2, .inherited = true}, [315] = + {field_type, 2}, + {field_type, 3, .inherited = true}, + [317] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [318] = + [320] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [322] = + [324] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [326] = + [328] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [330] = + [332] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [333] = + [335] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [337] = + [339] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [340] = + [342] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [343] = + [345] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [346] = + [348] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [350] = + [352] = {field_alias, 5}, {field_name, 3}, - [352] = + [354] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [355] = + [357] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [359] = + [361] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [362] = + [364] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [365] = + [367] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [368] = + [370] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [373] = + [375] = {field_name, 2}, {field_pattern, 4}, - [375] = + [377] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [378] = + [380] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [381] = - {field_type, 2}, - {field_type, 3, .inherited = true}, [383] = + {field_type, 3}, + {field_type, 4, .inherited = true}, + [385] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [387] = + [389] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [391] = + [393] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [396] = + [398] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [400] = + [402] = {field_name, 4}, {field_type, 6}, - [402] = + [404] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [406] = + [408] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [410] = + [412] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [413] = + [415] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [417] = + [419] = {field_body, 7}, {field_pattern, 4}, {field_value, 6}, - [420] = + [422] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [423] = - {field_type, 3}, - {field_type, 4, .inherited = true}, [425] = {field_body, 8}, {field_name, 2}, @@ -3187,230 +3189,236 @@ static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGT [2] = alias_sym_type_identifier, }, [13] = { - [1] = alias_sym_type_identifier, + [0] = sym_identifier, }, [14] = { + [1] = alias_sym_type_identifier, + }, + [15] = { [0] = alias_sym_type_identifier, }, - [18] = { + [19] = { [1] = alias_sym_type_identifier, }, - [21] = { + [22] = { [0] = alias_sym_type_identifier, }, - [34] = { + [35] = { [2] = alias_sym_type_identifier, }, - [36] = { + [37] = { [0] = alias_sym_type_identifier, }, - [38] = { + [39] = { [0] = sym_generic_type, }, - [39] = { + [40] = { [0] = sym_generic_type, [2] = alias_sym_type_identifier, }, - [44] = { + [45] = { [2] = alias_sym_field_identifier, }, [47] = { + [1] = sym_identifier, + }, + [49] = { [1] = alias_sym_type_identifier, }, - [48] = { + [50] = { [1] = alias_sym_type_identifier, }, - [51] = { + [53] = { [0] = sym_identifier, [2] = sym_identifier, }, - [53] = { + [55] = { [0] = alias_sym_type_identifier, }, - [54] = { + [56] = { [0] = alias_sym_shorthand_field_identifier, }, - [55] = { + [57] = { [2] = sym_identifier, }, - [59] = { + [61] = { [1] = alias_sym_type_identifier, }, - [60] = { + [62] = { [0] = alias_sym_type_identifier, }, - [65] = { + [67] = { [1] = alias_sym_type_identifier, }, - [68] = { + [70] = { [1] = alias_sym_type_identifier, }, - [69] = { + [71] = { [1] = alias_sym_type_identifier, }, - [70] = { + [72] = { [1] = alias_sym_type_identifier, }, - [72] = { + [74] = { [2] = alias_sym_type_identifier, }, - [73] = { + [75] = { [0] = sym_identifier, }, - [74] = { + [76] = { [0] = sym_identifier, }, - [77] = { + [79] = { [0] = sym_identifier, }, - [81] = { + [83] = { [0] = sym_identifier, }, - [84] = { + [86] = { [2] = alias_sym_type_identifier, }, - [90] = { + [92] = { [1] = alias_sym_type_identifier, }, - [94] = { + [96] = { [1] = alias_sym_shorthand_field_identifier, }, - [97] = { + [99] = { [0] = alias_sym_type_identifier, }, - [100] = { + [102] = { [1] = alias_sym_type_identifier, }, - [101] = { + [103] = { [0] = alias_sym_type_identifier, }, - [108] = { + [110] = { [3] = sym_identifier, }, - [109] = { + [111] = { [1] = alias_sym_type_identifier, }, - [110] = { + [112] = { [1] = alias_sym_type_identifier, }, - [111] = { + [113] = { [1] = alias_sym_type_identifier, }, - [114] = { + [116] = { [2] = alias_sym_type_identifier, }, - [115] = { + [117] = { [2] = alias_sym_type_identifier, }, - [116] = { + [118] = { [2] = alias_sym_type_identifier, }, - [117] = { + [119] = { [0] = sym_identifier, }, - [118] = { + [120] = { [1] = sym_identifier, }, - [120] = { + [122] = { [0] = alias_sym_field_identifier, }, - [123] = { + [125] = { [2] = alias_sym_type_identifier, }, - [124] = { + [126] = { [3] = alias_sym_type_identifier, }, - [133] = { + [135] = { [2] = alias_sym_shorthand_field_identifier, }, - [134] = { + [136] = { [0] = alias_sym_field_identifier, }, - [135] = { + [137] = { [0] = alias_sym_type_identifier, }, - [138] = { + [140] = { [1] = alias_sym_type_identifier, }, - [140] = { + [142] = { [2] = alias_sym_type_identifier, }, - [142] = { + [144] = { [1] = alias_sym_type_identifier, }, - [151] = { + [154] = { [0] = alias_sym_field_identifier, }, - [152] = { + [155] = { [1] = alias_sym_type_identifier, }, - [153] = { + [156] = { [1] = alias_sym_type_identifier, }, - [154] = { - [2] = alias_sym_type_identifier, - }, [157] = { [2] = alias_sym_type_identifier, }, - [158] = { + [160] = { [2] = alias_sym_type_identifier, }, - [159] = { + [161] = { [2] = alias_sym_type_identifier, }, [162] = { + [2] = alias_sym_type_identifier, + }, + [165] = { [1] = alias_sym_field_identifier, }, - [166] = { + [169] = { [2] = alias_sym_type_identifier, }, - [167] = { + [170] = { [3] = alias_sym_type_identifier, }, - [168] = { + [171] = { [3] = alias_sym_type_identifier, }, - [169] = { + [172] = { [3] = alias_sym_type_identifier, }, - [179] = { + [182] = { [1] = alias_sym_field_identifier, }, - [181] = { + [184] = { [2] = alias_sym_type_identifier, }, - [187] = { + [190] = { [1] = alias_sym_field_identifier, }, - [188] = { + [191] = { [2] = alias_sym_type_identifier, }, - [189] = { + [192] = { [3] = alias_sym_type_identifier, }, - [192] = { + [195] = { [2] = alias_sym_type_identifier, }, - [196] = { + [199] = { [2] = alias_sym_type_identifier, }, - [197] = { + [200] = { [3] = alias_sym_type_identifier, }, - [198] = { + [201] = { [3] = alias_sym_type_identifier, }, - [199] = { + [202] = { [3] = alias_sym_type_identifier, }, - [207] = { + [210] = { [2] = alias_sym_field_identifier, }, - [211] = { + [214] = { [3] = alias_sym_type_identifier, }, - [217] = { + [220] = { [3] = alias_sym_type_identifier, }, }; @@ -3422,759 +3430,7 @@ static uint16_t ts_non_terminal_alias_map[] = { 0, }; -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43020 - ? (c < 3976 - ? (c < 2674 - ? (c < 1869 - ? (c < 908 - ? (c < 710 - ? (c < 181 - ? (c < 'a' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'z' || c == 170)) - : (c <= 181 || (c < 216 - ? (c < 192 - ? c == 186 - : c <= 214) - : (c <= 246 || (c >= 248 && c <= 705))))) - : (c <= 721 || (c < 886 - ? (c < 750 - ? (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748) - : (c <= 750 || (c >= 880 && c <= 884))) - : (c <= 887 || (c < 902 - ? (c < 895 - ? (c >= 891 && c <= 893) - : c <= 895) - : (c <= 902 || (c >= 904 && c <= 906))))))) - : (c <= 908 || (c < 1568 - ? (c < 1329 - ? (c < 1015 - ? (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013) - : (c <= 1153 || (c >= 1162 && c <= 1327))) - : (c <= 1366 || (c < 1488 - ? (c < 1376 - ? c == 1369 - : c <= 1416) - : (c <= 1514 || (c >= 1519 && c <= 1522))))) - : (c <= 1610 || (c < 1774 - ? (c < 1749 - ? (c < 1649 - ? (c >= 1646 && c <= 1647) - : c <= 1747) - : (c <= 1749 || (c >= 1765 && c <= 1766))) - : (c <= 1775 || (c < 1808 - ? (c < 1791 - ? (c >= 1786 && c <= 1788) - : c <= 1791) - : (c <= 1808 || (c >= 1810 && c <= 1839))))))))) - : (c <= 1957 || (c < 2451 - ? (c < 2144 - ? (c < 2048 - ? (c < 2036 - ? (c < 1994 - ? c == 1969 - : c <= 2026) - : (c <= 2037 || c == 2042)) - : (c <= 2069 || (c < 2088 - ? (c < 2084 - ? c == 2074 - : c <= 2084) - : (c <= 2088 || (c >= 2112 && c <= 2136))))) - : (c <= 2154 || (c < 2384 - ? (c < 2308 - ? (c < 2230 - ? (c >= 2208 && c <= 2228) - : c <= 2247) - : (c <= 2361 || c == 2365)) - : (c <= 2384 || (c < 2437 - ? (c < 2417 - ? (c >= 2392 && c <= 2401) - : c <= 2432) - : (c <= 2444 || (c >= 2447 && c <= 2448))))))) - : (c <= 2472 || (c < 2565 - ? (c < 2510 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || c == 2493)) - : (c <= 2510 || (c < 2544 - ? (c < 2527 - ? (c >= 2524 && c <= 2525) - : c <= 2529) - : (c <= 2545 || c == 2556)))) - : (c <= 2570 || (c < 2613 - ? (c < 2602 - ? (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600) - : (c <= 2608 || (c >= 2610 && c <= 2611))) - : (c <= 2614 || (c < 2649 - ? (c >= 2616 && c <= 2617) - : (c <= 2652 || c == 2654)))))))))) - : (c <= 2676 || (c < 3205 - ? (c < 2929 - ? (c < 2809 - ? (c < 2738 - ? (c < 2707 - ? (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))) - : (c <= 2739 || (c < 2768 - ? (c < 2749 - ? (c >= 2741 && c <= 2745) - : c <= 2749) - : (c <= 2768 || (c >= 2784 && c <= 2785))))) - : (c <= 2809 || (c < 2866 - ? (c < 2835 - ? (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))) - : (c <= 2867 || (c < 2908 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : c <= 2877) - : (c <= 2909 || (c >= 2911 && c <= 2913))))))) - : (c <= 2929 || (c < 2990 - ? (c < 2969 - ? (c < 2958 - ? (c < 2949 - ? c == 2947 - : c <= 2954) - : (c <= 2960 || (c >= 2962 && c <= 2965))) - : (c <= 2970 || (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c >= 2984 && c <= 2986))))) - : (c <= 3001 || (c < 3114 - ? (c < 3086 - ? (c < 3077 - ? c == 3024 - : c <= 3084) - : (c <= 3088 || (c >= 3090 && c <= 3112))) - : (c <= 3129 || (c < 3168 - ? (c < 3160 - ? c == 3133 - : c <= 3162) - : (c <= 3169 || c == 3200)))))))) - : (c <= 3212 || (c < 3517 - ? (c < 3342 - ? (c < 3261 - ? (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c >= 3253 && c <= 3257))) - : (c <= 3261 || (c < 3313 - ? (c < 3296 - ? c == 3294 - : c <= 3297) - : (c <= 3314 || (c >= 3332 && c <= 3340))))) - : (c <= 3344 || (c < 3423 - ? (c < 3406 - ? (c < 3389 - ? (c >= 3346 && c <= 3386) - : c <= 3389) - : (c <= 3406 || (c >= 3412 && c <= 3414))) - : (c <= 3425 || (c < 3482 - ? (c < 3461 - ? (c >= 3450 && c <= 3455) - : c <= 3478) - : (c <= 3505 || (c >= 3507 && c <= 3515))))))) - : (c <= 3517 || (c < 3751 - ? (c < 3713 - ? (c < 3634 - ? (c < 3585 - ? (c >= 3520 && c <= 3526) - : c <= 3632) - : (c <= 3634 || (c >= 3648 && c <= 3654))) - : (c <= 3714 || (c < 3724 - ? (c < 3718 - ? c == 3716 - : c <= 3722) - : (c <= 3747 || c == 3749)))) - : (c <= 3760 || (c < 3804 - ? (c < 3776 - ? (c < 3773 - ? c == 3762 - : c <= 3773) - : (c <= 3780 || c == 3782)) - : (c <= 3807 || (c < 3904 - ? c == 3840 - : (c <= 3911 || (c >= 3913 && c <= 3948))))))))))))) - : (c <= 3980 || (c < 8016 - ? (c < 5920 - ? (c < 4746 - ? (c < 4256 - ? (c < 4193 - ? (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))) - : (c <= 4193 || (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || c == 4238)))) - : (c <= 4293 || (c < 4682 - ? (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c >= 4348 && c <= 4680))) - : (c <= 4685 || (c < 4698 - ? (c < 4696 - ? (c >= 4688 && c <= 4694) - : c <= 4696) - : (c <= 4701 || (c >= 4704 && c <= 4744))))))) - : (c <= 4749 || (c < 4992 - ? (c < 4802 - ? (c < 4792 - ? (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789) - : (c <= 4798 || c == 4800)) - : (c <= 4805 || (c < 4882 - ? (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880) - : (c <= 4885 || (c >= 4888 && c <= 4954))))) - : (c <= 5007 || (c < 5761 - ? (c < 5121 - ? (c < 5112 - ? (c >= 5024 && c <= 5109) - : c <= 5117) - : (c <= 5740 || (c >= 5743 && c <= 5759))) - : (c <= 5786 || (c < 5888 - ? (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880) - : (c <= 5900 || (c >= 5902 && c <= 5905))))))))) - : (c <= 5937 || (c < 6981 - ? (c < 6320 - ? (c < 6103 - ? (c < 5998 - ? (c < 5984 - ? (c >= 5952 && c <= 5969) - : c <= 5996) - : (c <= 6000 || (c >= 6016 && c <= 6067))) - : (c <= 6103 || (c < 6272 - ? (c < 6176 - ? c == 6108 - : c <= 6264) - : (c <= 6312 || c == 6314)))) - : (c <= 6389 || (c < 6576 - ? (c < 6512 - ? (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509) - : (c <= 6516 || (c >= 6528 && c <= 6571))) - : (c <= 6601 || (c < 6823 - ? (c < 6688 - ? (c >= 6656 && c <= 6678) - : c <= 6740) - : (c <= 6823 || (c >= 6917 && c <= 6963))))))) - : (c <= 6987 || (c < 7401 - ? (c < 7245 - ? (c < 7098 - ? (c < 7086 - ? (c >= 7043 && c <= 7072) - : c <= 7087) - : (c <= 7141 || (c >= 7168 && c <= 7203))) - : (c <= 7247 || (c < 7312 - ? (c < 7296 - ? (c >= 7258 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c >= 7357 && c <= 7359))))) - : (c <= 7404 || (c < 7680 - ? (c < 7418 - ? (c < 7413 - ? (c >= 7406 && c <= 7411) - : c <= 7414) - : (c <= 7418 || (c >= 7424 && c <= 7615))) - : (c <= 7957 || (c < 7968 - ? (c >= 7960 && c <= 7965) - : (c <= 8005 || (c >= 8008 && c <= 8013))))))))))) - : (c <= 8023 || (c < 11631 - ? (c < 8458 - ? (c < 8144 - ? (c < 8064 - ? (c < 8029 - ? (c < 8027 - ? c == 8025 - : c <= 8027) - : (c <= 8029 || (c >= 8031 && c <= 8061))) - : (c <= 8116 || (c < 8130 - ? (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126) - : (c <= 8132 || (c >= 8134 && c <= 8140))))) - : (c <= 8147 || (c < 8305 - ? (c < 8178 - ? (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172) - : (c <= 8180 || (c >= 8182 && c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))))) - : (c <= 8467 || (c < 8544 - ? (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))) - : (c <= 8584 || (c < 11506 - ? (c < 11360 - ? (c < 11312 - ? (c >= 11264 && c <= 11310) - : c <= 11358) - : (c <= 11492 || (c >= 11499 && c <= 11502))) - : (c <= 11507 || (c < 11565 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : 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_3(int32_t c) { +static inline bool sym_identifier_character_set_1(int32_t c) { return (c < 43020 ? (c < 4096 ? (c < 2693 @@ -4184,7 +3440,7 @@ static inline bool sym_identifier_character_set_3(int32_t c) { ? (c < 186 ? (c < 170 ? (c < 'a' - ? (c >= 'A' && c <= 'Z') + ? (c >= 'A' && c <= '_') : c <= 'z') : (c <= 170 || c == 181)) : (c <= 186 || (c < 248 @@ -4924,59232 +4180,61145 @@ static inline bool sym_identifier_character_set_3(int32_t c) { : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 43052 - ? (c < 3718 - ? (c < 2730 - ? (c < 2042 - ? (c < 1015 +static inline bool sym_identifier_character_set_2(int32_t c) { + return (c < 43020 + ? (c < 3976 + ? (c < 2674 + ? (c < 1869 + ? (c < 908 ? (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 < 'a' + ? (c < '_' + ? (c >= 'A' && c <= 'Z') + : c <= '_') + : (c <= 'z' || c == 170)) + : (c <= 181 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c >= 248 && c <= 705))))) + : (c <= 721 || (c < 886 ? (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 <= 750 || (c >= 880 && c <= 884))) + : (c <= 887 || (c < 902 + ? (c < 895 + ? (c >= 891 && c <= 893) + : c <= 895) + : (c <= 902 || (c >= 904 && c <= 906))))))) + : (c <= 908 || (c < 1568 + ? (c < 1329 + ? (c < 1015 + ? (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 <= 1013) + : (c <= 1153 || (c >= 1162 && c <= 1327))) + : (c <= 1366 || (c < 1488 + ? (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 <= 1416) + : (c <= 1514 || (c >= 1519 && c <= 1522))))) + : (c <= 1610 || (c < 1774 + ? (c < 1749 + ? (c < 1649 + ? (c >= 1646 && c <= 1647) + : c <= 1747) + : (c <= 1749 || (c >= 1765 && c <= 1766))) + : (c <= 1775 || (c < 1808 + ? (c < 1791 + ? (c >= 1786 && c <= 1788) + : c <= 1791) + : (c <= 1808 || (c >= 1810 && c <= 1839))))))))) + : (c <= 1957 || (c < 2451 + ? (c < 2144 + ? (c < 2048 + ? (c < 2036 + ? (c < 1994 + ? c == 1969 + : c <= 2026) + : (c <= 2037 || c == 2042)) + : (c <= 2069 || (c < 2088 + ? (c < 2084 + ? c == 2074 + : c <= 2084) + : (c <= 2088 || (c >= 2112 && c <= 2136))))) + : (c <= 2154 || (c < 2384 + ? (c < 2308 + ? (c < 2230 + ? (c >= 2208 && c <= 2228) + : c <= 2247) + : (c <= 2361 || c == 2365)) + : (c <= 2384 || (c < 2437 + ? (c < 2417 + ? (c >= 2392 && c <= 2401) + : c <= 2432) + : (c <= 2444 || (c >= 2447 && c <= 2448))))))) + : (c <= 2472 || (c < 2565 + ? (c < 2510 + ? (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || c == 2493)) + : (c <= 2510 || (c < 2544 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2529) + : (c <= 2545 || c == 2556)))) + : (c <= 2570 || (c < 2613 + ? (c < 2602 + ? (c < 2579 + ? (c >= 2575 && c <= 2576) + : c <= 2600) + : (c <= 2608 || (c >= 2610 && c <= 2611))) + : (c <= 2614 || (c < 2649 + ? (c >= 2616 && c <= 2617) + : (c <= 2652 || c == 2654)))))))))) + : (c <= 2676 || (c < 3205 + ? (c < 2929 + ? (c < 2809 + ? (c < 2738 + ? (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c >= 2730 && c <= 2736))) + : (c <= 2739 || (c < 2768 + ? (c < 2749 + ? (c >= 2741 && c <= 2745) + : c <= 2749) + : (c <= 2768 || (c >= 2784 && c <= 2785))))) + : (c <= 2809 || (c < 2866 + ? (c < 2835 + ? (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832) + : (c <= 2856 || (c >= 2858 && c <= 2864))) + : (c <= 2867 || (c < 2908 + ? (c < 2877 ? (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 <= 2877) + : (c <= 2909 || (c >= 2911 && c <= 2913))))))) + : (c <= 2929 || (c < 2990 ? (c < 2969 - ? (c < 2949 - ? (c < 2946 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))) + ? (c < 2958 + ? (c < 2949 + ? c == 2947 + : c <= 2954) + : (c <= 2960 || (c >= 2962 && 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 <= 2980 || (c >= 2984 && c <= 2986))))) + : (c <= 3001 || (c < 3114 + ? (c < 3086 + ? (c < 3077 + ? c == 3024 + : c <= 3084) + : (c <= 3088 || (c >= 3090 && c <= 3112))) + : (c <= 3129 || (c < 3168 + ? (c < 3160 + ? c == 3133 + : c <= 3162) + : (c <= 3169 || c == 3200)))))))) + : (c <= 3212 || (c < 3517 + ? (c < 3342 + ? (c < 3261 + ? (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c >= 3253 && c <= 3257))) + : (c <= 3261 || (c < 3313 + ? (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 <= 3297) + : (c <= 3314 || (c >= 3332 && c <= 3340))))) + : (c <= 3344 || (c < 3423 + ? (c < 3406 + ? (c < 3389 + ? (c >= 3346 && c <= 3386) + : c <= 3389) + : (c <= 3406 || (c >= 3412 && c <= 3414))) + : (c <= 3425 || (c < 3482 + ? (c < 3461 + ? (c >= 3450 && c <= 3455) + : c <= 3478) + : (c <= 3505 || (c >= 3507 && c <= 3515))))))) + : (c <= 3517 || (c < 3751 + ? (c < 3713 + ? (c < 3634 + ? (c < 3585 + ? (c >= 3520 && c <= 3526) + : c <= 3632) + : (c <= 3634 || (c >= 3648 && c <= 3654))) + : (c <= 3714 || (c < 3724 + ? (c < 3718 + ? c == 3716 + : c <= 3722) + : (c <= 3747 || c == 3749)))) + : (c <= 3760 || (c < 3804 + ? (c < 3776 + ? (c < 3773 + ? c == 3762 + : c <= 3773) + : (c <= 3780 || c == 3782)) + : (c <= 3807 || (c < 3904 + ? c == 3840 + : (c <= 3911 || (c >= 3913 && c <= 3948))))))))))))) + : (c <= 3980 || (c < 8016 + ? (c < 5920 + ? (c < 4746 + ? (c < 4256 + ? (c < 4193 + ? (c < 4176 + ? (c < 4159 + ? (c >= 4096 && c <= 4138) + : c <= 4159) + : (c <= 4181 || (c >= 4186 && c <= 4189))) + : (c <= 4193 || (c < 4213 + ? (c < 4206 + ? (c >= 4197 && c <= 4198) + : c <= 4208) + : (c <= 4225 || c == 4238)))) + : (c <= 4293 || (c < 4682 ? (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 <= 4346 || (c >= 4348 && c <= 4680))) + : (c <= 4685 || (c < 4698 + ? (c < 4696 + ? (c >= 4688 && c <= 4694) + : c <= 4696) + : (c <= 4701 || (c >= 4704 && c <= 4744))))))) + : (c <= 4749 || (c < 4992 + ? (c < 4802 + ? (c < 4792 + ? (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789) + : (c <= 4798 || c == 4800)) + : (c <= 4805 || (c < 4882 + ? (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 <= 4880) + : (c <= 4885 || (c >= 4888 && c <= 4954))))) + : (c <= 5007 || (c < 5761 + ? (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c >= 5743 && c <= 5759))) + : (c <= 5786 || (c < 5888 + ? (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880) + : (c <= 5900 || (c >= 5902 && c <= 5905))))))))) + : (c <= 5937 || (c < 6981 + ? (c < 6320 + ? (c < 6103 + ? (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5969) + : c <= 5996) + : (c <= 6000 || (c >= 6016 && c <= 6067))) + : (c <= 6103 || (c < 6272 ? (c < 6176 - ? (c >= 6160 && c <= 6169) + ? c == 6108 : 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 <= 6312 || c == 6314)))) + : (c <= 6389 || (c < 6576 + ? (c < 6512 + ? (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509) + : (c <= 6516 || (c >= 6528 && c <= 6571))) + : (c <= 6601 || (c < 6823 + ? (c < 6688 + ? (c >= 6656 && c <= 6678) + : c <= 6740) + : (c <= 6823 || (c >= 6917 && c <= 6963))))))) + : (c <= 6987 || (c < 7401 + ? (c < 7245 + ? (c < 7098 + ? (c < 7086 + ? (c >= 7043 && c <= 7072) + : c <= 7087) + : (c <= 7141 || (c >= 7168 && c <= 7203))) + : (c <= 7247 || (c < 7312 + ? (c < 7296 + ? (c >= 7258 && c <= 7293) + : c <= 7304) + : (c <= 7354 || (c >= 7357 && c <= 7359))))) + : (c <= 7404 || (c < 7680 + ? (c < 7418 + ? (c < 7413 + ? (c >= 7406 && c <= 7411) + : c <= 7414) + : (c <= 7418 || (c >= 7424 && c <= 7615))) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : (c <= 8005 || (c >= 8008 && c <= 8013))))))))))) + : (c <= 8023 || (c < 11631 + ? (c < 8458 + ? (c < 8144 + ? (c < 8064 + ? (c < 8029 + ? (c < 8027 + ? c == 8025 + : c <= 8027) + : (c <= 8029 || (c >= 8031 && c <= 8061))) + : (c <= 8116 || (c < 8130 + ? (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 <= 8126) + : (c <= 8132 || (c >= 8134 && c <= 8140))))) + : (c <= 8147 || (c < 8305 + ? (c < 8178 + ? (c < 8160 + ? (c >= 8150 && c <= 8155) + : c <= 8172) + : (c <= 8180 || (c >= 8182 && c <= 8188))) + : (c <= 8305 || (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || c == 8455)))))) + : (c <= 8467 || (c < 8544 + ? (c < 8488 ? (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 <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)))) + : (c <= 8584 || (c < 11506 + ? (c < 11360 + ? (c < 11312 + ? (c >= 11264 && c <= 11310) + : c <= 11358) + : (c <= 11492 || (c >= 11499 && c <= 11502))) + : (c <= 11507 || (c < 11565 + ? (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 <= 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 <= 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 <= 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 < 43216 - ? (c < 43136 + ? (c < 43250 + ? (c < 43138 ? (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 <= 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 < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031))) - : (c <= 68099 || (c < 68117 - ? (c < 68108 - ? (c >= 68101 && c <= 68102) + : (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 <= 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 <= 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 <= 71133) - : c <= 71232) - : (c <= 71236 || (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352))) - : (c <= 71369 || (c < 71472 - ? (c < 71453 + ? (c >= 71128 && c <= 71131) + : c <= 71215) + : (c <= 71236 || (c >= 71296 && c <= 71338))) + : (c <= 71352 || (c < 71840 + ? (c < 71680 ? (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 <= 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 < 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 < 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 <= 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 <= 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 <= 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 <= 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 < 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 <= 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 < 121505 - ? (c < 120782 - ? (c < 120714 + : (c <= 120596 || (c >= 120598 && c <= 120628))) + : (c <= 120654 || (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 <= 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 < 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 <= 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 < 131072 - ? (c < 130032 + ? (c < 173824 + ? (c < 131072 ? (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))))))))))))))))); + : c <= 173789) + : (c <= 177972 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 194560 + ? (c >= 183984 && c <= 191456) + : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(148); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - 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); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 2: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(2) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 3: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(3) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 4: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(148); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 5: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 6: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(109); - if (lookahead == '.') ADVANCE(21); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '[') ADVANCE(66); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 7: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(32); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 8: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 9: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '@') ADVANCE(137); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(9) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 10: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(10) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 11: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '/') ADVANCE(81); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(70); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '_') ADVANCE(82); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(11) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (('!' <= lookahead && lookahead <= '@') || - lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); - END_STATE(); - case 12: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '/') ADVANCE(81); - if (lookahead == '0') ADVANCE(142); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '_') ADVANCE(82); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (('!' <= lookahead && lookahead <= '@') || - lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); - END_STATE(); - case 13: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == 'b') ADVANCE(154); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(13) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 14: - if (lookahead == '#') ADVANCE(87); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == '<') ADVANCE(96); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(14) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 15: - if (lookahead == '\'') ADVANCE(149); - END_STATE(); - case 16: - if (lookahead == '\'') ADVANCE(149); - if (lookahead == '\\') ADVANCE(36); - if (lookahead != 0) ADVANCE(15); - END_STATE(); - case 17: - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(32); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(17) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 18: - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(73); - if (lookahead != 0) ADVANCE(75); - END_STATE(); - case 19: - if (lookahead == '.') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); - END_STATE(); - case 20: - if (lookahead == '.') ADVANCE(105); - END_STATE(); - case 21: - if (lookahead == '.') ADVANCE(106); - END_STATE(); - case 22: - if (lookahead == '.') ADVANCE(19); - END_STATE(); - case 23: - if (lookahead == '/') ADVANCE(151); - END_STATE(); - case 24: - if (lookahead == '1') ADVANCE(26); - if (lookahead == '3') ADVANCE(25); - if (lookahead == '6') ADVANCE(28); - if (lookahead == '8') ADVANCE(138); - if (lookahead == 's') ADVANCE(34); - END_STATE(); - case 25: - if (lookahead == '2') ADVANCE(138); - END_STATE(); - case 26: - if (lookahead == '2') ADVANCE(29); - if (lookahead == '6') ADVANCE(138); - END_STATE(); - case 27: - if (lookahead == '3') ADVANCE(25); - if (lookahead == '6') ADVANCE(28); - END_STATE(); - case 28: - if (lookahead == '4') ADVANCE(138); - END_STATE(); - case 29: - if (lookahead == '8') ADVANCE(138); - END_STATE(); - case 30: - if (lookahead == ':') ADVANCE(100); - END_STATE(); - case 31: - if (lookahead == '=') ADVANCE(119); - END_STATE(); - case 32: - if (lookahead == '>') ADVANCE(95); - END_STATE(); - case 33: - if (lookahead == 'e') ADVANCE(138); - END_STATE(); - case 34: - if (lookahead == 'i') ADVANCE(37); - END_STATE(); - case 35: - if (lookahead == 'u') ADVANCE(38); - if (lookahead == 'x') ADVANCE(49); - if (lookahead != 0) ADVANCE(150); - END_STATE(); - case 36: - if (lookahead == 'u') ADVANCE(39); - if (lookahead == 'x') ADVANCE(50); - if (lookahead != 0) ADVANCE(15); - END_STATE(); - case 37: - if (lookahead == 'z') ADVANCE(33); - END_STATE(); - case 38: - if (lookahead == '{') ADVANCE(47); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); - END_STATE(); - case 39: - if (lookahead == '{') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); - END_STATE(); - case 40: - if (lookahead == '}') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); - END_STATE(); - case 41: - if (lookahead == '}') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); - END_STATE(); - case 42: - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(143); - END_STATE(); - case 43: - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(144); - END_STATE(); - case 44: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(15); - END_STATE(); - case 45: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); - END_STATE(); - case 46: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); - END_STATE(); - case 47: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); - END_STATE(); - case 48: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); - END_STATE(); - case 49: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); - END_STATE(); - case 50: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); - END_STATE(); - case 51: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); - END_STATE(); - case 52: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(146); - END_STATE(); - case 53: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); - END_STATE(); - case 54: - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 55: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 56: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(91); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(56) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 57: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(57) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 58: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 59: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 60: - ACCEPT_TOKEN(anon_sym_macro_rules_BANG); - END_STATE(); - case 61: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 62: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 63: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 64: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 65: - ACCEPT_TOKEN(anon_sym_EQ_GT); - END_STATE(); - case 66: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 67: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 68: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 69: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(100); - END_STATE(); - case 70: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '_' || - lookahead == '|' || - lookahead == '~') ADVANCE(83); - END_STATE(); - case 71: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); - END_STATE(); - case 72: - ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '\n') ADVANCE(75); - if (lookahead == '*' || - lookahead == '+' || - lookahead == '?') ADVANCE(151); - if (lookahead != 0) ADVANCE(72); - END_STATE(); - case 73: - ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(73); - if (lookahead != 0 && - lookahead != '*' && - lookahead != '+' && - lookahead != '?') ADVANCE(75); - END_STATE(); - case 74: - ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(72); - if (lookahead != 0 && - lookahead != '*' && - lookahead != '+' && - lookahead != '?') ADVANCE(75); - END_STATE(); - case 75: - ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead != 0 && - lookahead != '*' && - lookahead != '+' && - lookahead != '?') ADVANCE(75); - END_STATE(); - case 76: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 77: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(126); - END_STATE(); - case 78: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 79: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(128); - END_STATE(); - case 80: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - case 81: - ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '/') ADVANCE(84); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '_' || - lookahead == '|' || - lookahead == '~') ADVANCE(83); - END_STATE(); - case 82: - ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '_') ADVANCE(82); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|' || - lookahead == '~') ADVANCE(83); - 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); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '_' || - lookahead == '|' || - lookahead == '~') ADVANCE(83); - END_STATE(); - case 84: - ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '_' || - lookahead == '|' || - lookahead == '~') ADVANCE(84); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); - END_STATE(); - case 85: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 86: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(149); - if (lookahead == '\\') ADVANCE(36); - if (lookahead != 0) ADVANCE(15); - END_STATE(); - case 87: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 88: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 89: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(119); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 91: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(118); - END_STATE(); - case 92: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(118); - if (lookahead == '>') ADVANCE(65); - END_STATE(); - case 93: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(65); - END_STATE(); - case 94: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 95: - ACCEPT_TOKEN(anon_sym_DASH_GT); - END_STATE(); - case 96: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 97: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(120); - END_STATE(); - case 98: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 99: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(121); - if (lookahead == '>') ADVANCE(123); - END_STATE(); - case 100: - ACCEPT_TOKEN(anon_sym_COLON_COLON); - END_STATE(); - case 101: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(113); - if (lookahead == '=') ADVANCE(131); - END_STATE(); - case 103: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - END_STATE(); - case 104: - ACCEPT_TOKEN(anon_sym_LT2); - END_STATE(); - case 105: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - END_STATE(); - case 106: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(103); - END_STATE(); - case 107: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); - END_STATE(); - case 108: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - END_STATE(); - case 109: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 110: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(127); - END_STATE(); - case 111: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(127); - if (lookahead == '>') ADVANCE(95); - END_STATE(); - case 112: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(95); - END_STATE(); - case 113: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 114: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 115: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 116: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(132); - if (lookahead == '|') ADVANCE(114); - END_STATE(); - case 117: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(133); - END_STATE(); - case 118: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - END_STATE(); - case 119: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - END_STATE(); - case 120: - ACCEPT_TOKEN(anon_sym_LT_EQ); - END_STATE(); - case 121: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 122: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(134); - END_STATE(); - case 123: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(135); - END_STATE(); - case 124: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(151); - if (lookahead == '=') ADVANCE(129); - END_STATE(); - case 125: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(130); - END_STATE(); - case 126: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 127: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); - case 128: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - END_STATE(); - case 129: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - END_STATE(); - case 130: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - END_STATE(); - case 131: - ACCEPT_TOKEN(anon_sym_AMP_EQ); - END_STATE(); - case 132: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); - END_STATE(); - case 133: - ACCEPT_TOKEN(anon_sym_CARET_EQ); - END_STATE(); - case 134: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); - END_STATE(); - case 135: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); - END_STATE(); - case 136: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(107); - END_STATE(); - case 137: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - case 138: - ACCEPT_TOKEN(sym_integer_literal); - END_STATE(); - case 139: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '2') ADVANCE(146); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); - END_STATE(); - case 140: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '3') ADVANCE(139); - if (lookahead == '6') ADVANCE(141); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); - END_STATE(); - case 141: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '4') ADVANCE(146); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); - END_STATE(); - case 142: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'b') ADVANCE(42); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'o') ADVANCE(43); - if (lookahead == 'u') ADVANCE(24); - if (lookahead == 'x') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(145); - END_STATE(); - case 143: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(143); - END_STATE(); - case 144: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(144); - END_STATE(); - case 145: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(145); - END_STATE(); - case 146: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); - END_STATE(); - case 147: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - END_STATE(); - case 148: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 149: - ACCEPT_TOKEN(sym_char_literal); - END_STATE(); - case 150: - ACCEPT_TOKEN(sym_escape_sequence); - END_STATE(); - case 151: - ACCEPT_TOKEN(sym_line_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); - END_STATE(); - case 152: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(60); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 153: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '\'') ADVANCE(16); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 154: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(147); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 155: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '#') ADVANCE(54); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 156: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(163); - 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 (('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); - if (lookahead == 'c') ADVANCE(162); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 159: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(164); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 160: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(159); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 161: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(156); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 162: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(161); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 163: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(165); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 164: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(152); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 165: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(160); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 166: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 167: - ACCEPT_TOKEN(sym_metavariable); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == '_') ADVANCE(1); - if (lookahead == 'a') ADVANCE(2); - if (lookahead == 'b') ADVANCE(3); - if (lookahead == 'c') ADVANCE(4); - if (lookahead == 'd') ADVANCE(5); - if (lookahead == 'e') ADVANCE(6); - if (lookahead == 'f') ADVANCE(7); - if (lookahead == 'i') ADVANCE(8); - if (lookahead == 'l') ADVANCE(9); - if (lookahead == 'm') ADVANCE(10); - if (lookahead == 'p') ADVANCE(11); - if (lookahead == 'r') ADVANCE(12); - if (lookahead == 's') ADVANCE(13); - if (lookahead == 't') ADVANCE(14); - if (lookahead == 'u') ADVANCE(15); - if (lookahead == 'v') ADVANCE(16); - if (lookahead == 'w') ADVANCE(17); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(0) - END_STATE(); - case 1: - ACCEPT_TOKEN(anon_sym__); - END_STATE(); - case 2: - if (lookahead == 's') ADVANCE(18); - if (lookahead == 'w') ADVANCE(19); - END_STATE(); - case 3: - if (lookahead == 'l') ADVANCE(20); - if (lookahead == 'o') ADVANCE(21); - if (lookahead == 'r') ADVANCE(22); - END_STATE(); - case 4: - if (lookahead == 'h') ADVANCE(23); - if (lookahead == 'o') ADVANCE(24); - if (lookahead == 'r') ADVANCE(25); - END_STATE(); - case 5: - if (lookahead == 'e') ADVANCE(26); - if (lookahead == 'y') ADVANCE(27); - END_STATE(); - case 6: - if (lookahead == 'l') ADVANCE(28); - if (lookahead == 'n') ADVANCE(29); - if (lookahead == 'x') ADVANCE(30); - END_STATE(); - case 7: - if (lookahead == '3') ADVANCE(31); - if (lookahead == '6') ADVANCE(32); - if (lookahead == 'a') ADVANCE(33); - if (lookahead == 'n') ADVANCE(34); - if (lookahead == 'o') ADVANCE(35); - END_STATE(); - case 8: - if (lookahead == '1') ADVANCE(36); - if (lookahead == '3') ADVANCE(37); - if (lookahead == '6') ADVANCE(38); - if (lookahead == '8') ADVANCE(39); - if (lookahead == 'd') ADVANCE(40); - if (lookahead == 'f') ADVANCE(41); - if (lookahead == 'm') ADVANCE(42); - if (lookahead == 'n') ADVANCE(43); - if (lookahead == 's') ADVANCE(44); - if (lookahead == 't') ADVANCE(45); - END_STATE(); - case 9: - if (lookahead == 'e') ADVANCE(46); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'o') ADVANCE(48); - END_STATE(); - case 10: - if (lookahead == 'a') ADVANCE(49); - if (lookahead == 'e') ADVANCE(50); - if (lookahead == 'o') ADVANCE(51); - if (lookahead == 'u') ADVANCE(52); - END_STATE(); - case 11: - if (lookahead == 'a') ADVANCE(53); - if (lookahead == 'u') ADVANCE(54); - END_STATE(); - case 12: - if (lookahead == 'e') ADVANCE(55); - END_STATE(); - case 13: - if (lookahead == 'e') ADVANCE(56); - if (lookahead == 't') ADVANCE(57); - if (lookahead == 'u') ADVANCE(58); - END_STATE(); - case 14: - if (lookahead == 'r') ADVANCE(59); - if (lookahead == 't') ADVANCE(60); - if (lookahead == 'y') ADVANCE(61); - END_STATE(); - case 15: - if (lookahead == '1') ADVANCE(62); - if (lookahead == '3') ADVANCE(63); - if (lookahead == '6') ADVANCE(64); - if (lookahead == '8') ADVANCE(65); - if (lookahead == 'n') ADVANCE(66); - if (lookahead == 's') ADVANCE(67); - END_STATE(); - case 16: - if (lookahead == 'i') ADVANCE(68); - END_STATE(); - case 17: - if (lookahead == 'h') ADVANCE(69); - END_STATE(); - case 18: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(70); - END_STATE(); - case 19: - if (lookahead == 'a') ADVANCE(71); - END_STATE(); - case 20: - if (lookahead == 'o') ADVANCE(72); - END_STATE(); - case 21: - if (lookahead == 'o') ADVANCE(73); - END_STATE(); - case 22: - if (lookahead == 'e') ADVANCE(74); - END_STATE(); - case 23: - if (lookahead == 'a') ADVANCE(75); - END_STATE(); - case 24: - if (lookahead == 'n') ADVANCE(76); - END_STATE(); - case 25: - if (lookahead == 'a') ADVANCE(77); - END_STATE(); - case 26: - if (lookahead == 'f') ADVANCE(78); - END_STATE(); - case 27: - if (lookahead == 'n') ADVANCE(79); - END_STATE(); - case 28: - if (lookahead == 's') ADVANCE(80); - END_STATE(); - case 29: - if (lookahead == 'u') ADVANCE(81); - END_STATE(); - case 30: - if (lookahead == 'p') ADVANCE(82); - if (lookahead == 't') ADVANCE(83); - END_STATE(); - case 31: - if (lookahead == '2') ADVANCE(84); - END_STATE(); - case 32: - if (lookahead == '4') ADVANCE(85); - END_STATE(); - case 33: - if (lookahead == 'l') ADVANCE(86); - END_STATE(); - case 34: - ACCEPT_TOKEN(anon_sym_fn); - END_STATE(); - case 35: - if (lookahead == 'r') ADVANCE(87); - END_STATE(); - case 36: - if (lookahead == '2') ADVANCE(88); - if (lookahead == '6') ADVANCE(89); - END_STATE(); - case 37: - if (lookahead == '2') ADVANCE(90); - END_STATE(); - case 38: - if (lookahead == '4') ADVANCE(91); - END_STATE(); - case 39: - ACCEPT_TOKEN(anon_sym_i8); - END_STATE(); - case 40: - if (lookahead == 'e') ADVANCE(92); - END_STATE(); - case 41: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 42: - if (lookahead == 'p') ADVANCE(93); - END_STATE(); - case 43: - ACCEPT_TOKEN(anon_sym_in); - END_STATE(); - case 44: - if (lookahead == 'i') ADVANCE(94); - END_STATE(); - case 45: - if (lookahead == 'e') ADVANCE(95); - END_STATE(); - case 46: - if (lookahead == 't') ADVANCE(96); - END_STATE(); - case 47: - if (lookahead == 'f') ADVANCE(97); - if (lookahead == 't') ADVANCE(98); - END_STATE(); - case 48: - if (lookahead == 'o') ADVANCE(99); - END_STATE(); - case 49: - if (lookahead == 't') ADVANCE(100); - END_STATE(); - case 50: - if (lookahead == 't') ADVANCE(101); - END_STATE(); - case 51: - if (lookahead == 'd') ADVANCE(102); - if (lookahead == 'v') ADVANCE(103); - END_STATE(); - case 52: - if (lookahead == 't') ADVANCE(104); - END_STATE(); - case 53: - if (lookahead == 't') ADVANCE(105); - END_STATE(); - case 54: - if (lookahead == 'b') ADVANCE(106); - END_STATE(); - case 55: - if (lookahead == 'f') ADVANCE(107); - if (lookahead == 't') ADVANCE(108); - END_STATE(); - case 56: - if (lookahead == 'l') ADVANCE(109); - END_STATE(); - case 57: - if (lookahead == 'a') ADVANCE(110); - if (lookahead == 'm') ADVANCE(111); - if (lookahead == 'r') ADVANCE(112); - END_STATE(); - case 58: - if (lookahead == 'p') ADVANCE(113); - END_STATE(); - case 59: - if (lookahead == 'a') ADVANCE(114); - if (lookahead == 'u') ADVANCE(115); - END_STATE(); - case 60: - ACCEPT_TOKEN(anon_sym_tt); - END_STATE(); - case 61: - ACCEPT_TOKEN(anon_sym_ty); - if (lookahead == 'p') ADVANCE(116); - END_STATE(); - case 62: - if (lookahead == '2') ADVANCE(117); - if (lookahead == '6') ADVANCE(118); - END_STATE(); - case 63: - if (lookahead == '2') ADVANCE(119); - END_STATE(); - case 64: - if (lookahead == '4') ADVANCE(120); - END_STATE(); - case 65: - ACCEPT_TOKEN(anon_sym_u8); - END_STATE(); - case 66: - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 's') ADVANCE(122); - END_STATE(); - case 67: - if (lookahead == 'e') ADVANCE(123); - if (lookahead == 'i') ADVANCE(124); - END_STATE(); - case 68: - if (lookahead == 's') ADVANCE(125); - END_STATE(); - case 69: - if (lookahead == 'e') ADVANCE(126); - if (lookahead == 'i') ADVANCE(127); - END_STATE(); - case 70: - if (lookahead == 'n') ADVANCE(128); - END_STATE(); - case 71: - if (lookahead == 'i') ADVANCE(129); - END_STATE(); - case 72: - if (lookahead == 'c') ADVANCE(130); - END_STATE(); - case 73: - if (lookahead == 'l') ADVANCE(131); - END_STATE(); - case 74: - if (lookahead == 'a') ADVANCE(132); - END_STATE(); - case 75: - if (lookahead == 'r') ADVANCE(133); - END_STATE(); - case 76: - if (lookahead == 's') ADVANCE(134); - if (lookahead == 't') ADVANCE(135); - END_STATE(); - case 77: - if (lookahead == 't') ADVANCE(136); - END_STATE(); - case 78: - if (lookahead == 'a') ADVANCE(137); - END_STATE(); - case 79: - ACCEPT_TOKEN(anon_sym_dyn); - END_STATE(); - case 80: - if (lookahead == 'e') ADVANCE(138); - END_STATE(); - case 81: - if (lookahead == 'm') ADVANCE(139); - END_STATE(); - case 82: - if (lookahead == 'r') ADVANCE(140); - END_STATE(); - case 83: - if (lookahead == 'e') ADVANCE(141); - END_STATE(); - case 84: - ACCEPT_TOKEN(anon_sym_f32); - END_STATE(); - case 85: - ACCEPT_TOKEN(anon_sym_f64); - END_STATE(); - case 86: - if (lookahead == 's') ADVANCE(142); - END_STATE(); - case 87: - ACCEPT_TOKEN(anon_sym_for); - END_STATE(); - case 88: - if (lookahead == '8') ADVANCE(143); - END_STATE(); - case 89: - ACCEPT_TOKEN(anon_sym_i16); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_i32); - END_STATE(); - case 91: - ACCEPT_TOKEN(anon_sym_i64); - END_STATE(); - case 92: - if (lookahead == 'n') ADVANCE(144); - END_STATE(); - case 93: - if (lookahead == 'l') ADVANCE(145); - END_STATE(); - case 94: - if (lookahead == 'z') ADVANCE(146); - END_STATE(); - case 95: - if (lookahead == 'm') ADVANCE(147); - END_STATE(); - case 96: - ACCEPT_TOKEN(anon_sym_let); - END_STATE(); - case 97: - if (lookahead == 'e') ADVANCE(148); - END_STATE(); - case 98: - if (lookahead == 'e') ADVANCE(149); - END_STATE(); - case 99: - if (lookahead == 'p') ADVANCE(150); - END_STATE(); - case 100: - if (lookahead == 'c') ADVANCE(151); - END_STATE(); - case 101: - if (lookahead == 'a') ADVANCE(152); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_mod); - END_STATE(); - case 103: - if (lookahead == 'e') ADVANCE(153); - END_STATE(); - case 104: - ACCEPT_TOKEN(sym_mutable_specifier); - END_STATE(); - case 105: - ACCEPT_TOKEN(anon_sym_pat); - if (lookahead == 'h') ADVANCE(154); - END_STATE(); - case 106: - ACCEPT_TOKEN(anon_sym_pub); - END_STATE(); - case 107: - ACCEPT_TOKEN(anon_sym_ref); - END_STATE(); - case 108: - if (lookahead == 'u') ADVANCE(155); - END_STATE(); - case 109: - if (lookahead == 'f') ADVANCE(156); - END_STATE(); - case 110: - if (lookahead == 't') ADVANCE(157); - END_STATE(); - case 111: - if (lookahead == 't') ADVANCE(158); - END_STATE(); - case 112: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(159); - END_STATE(); - case 113: - if (lookahead == 'e') ADVANCE(160); - END_STATE(); - case 114: - if (lookahead == 'i') ADVANCE(161); - END_STATE(); - case 115: - if (lookahead == 'e') ADVANCE(162); - END_STATE(); - case 116: - if (lookahead == 'e') ADVANCE(163); - END_STATE(); - case 117: - if (lookahead == '8') ADVANCE(164); - END_STATE(); - case 118: - ACCEPT_TOKEN(anon_sym_u16); - END_STATE(); - case 119: - ACCEPT_TOKEN(anon_sym_u32); - END_STATE(); - case 120: - ACCEPT_TOKEN(anon_sym_u64); - END_STATE(); - case 121: - if (lookahead == 'o') ADVANCE(165); - END_STATE(); - case 122: - if (lookahead == 'a') ADVANCE(166); - END_STATE(); - case 123: - ACCEPT_TOKEN(anon_sym_use); - END_STATE(); - case 124: - if (lookahead == 'z') ADVANCE(167); - END_STATE(); - case 125: - ACCEPT_TOKEN(anon_sym_vis); - END_STATE(); - case 126: - if (lookahead == 'r') ADVANCE(168); - END_STATE(); - case 127: - if (lookahead == 'l') ADVANCE(169); - END_STATE(); - case 128: - if (lookahead == 'c') ADVANCE(170); - END_STATE(); - case 129: - if (lookahead == 't') ADVANCE(171); - END_STATE(); - case 130: - if (lookahead == 'k') ADVANCE(172); - END_STATE(); - case 131: - ACCEPT_TOKEN(anon_sym_bool); - END_STATE(); - case 132: - if (lookahead == 'k') ADVANCE(173); - END_STATE(); - case 133: - ACCEPT_TOKEN(anon_sym_char); - END_STATE(); - case 134: - if (lookahead == 't') ADVANCE(174); - END_STATE(); - case 135: - if (lookahead == 'i') ADVANCE(175); - END_STATE(); - case 136: - if (lookahead == 'e') ADVANCE(176); - END_STATE(); - case 137: - if (lookahead == 'u') ADVANCE(177); - END_STATE(); - case 138: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 139: - ACCEPT_TOKEN(anon_sym_enum); - END_STATE(); - case 140: - ACCEPT_TOKEN(anon_sym_expr); - END_STATE(); - case 141: - if (lookahead == 'r') ADVANCE(178); - END_STATE(); - case 142: - if (lookahead == 'e') ADVANCE(179); - END_STATE(); - case 143: - ACCEPT_TOKEN(anon_sym_i128); - END_STATE(); - case 144: - if (lookahead == 't') ADVANCE(180); - END_STATE(); - case 145: - ACCEPT_TOKEN(anon_sym_impl); - END_STATE(); - case 146: - if (lookahead == 'e') ADVANCE(181); - END_STATE(); - case 147: - ACCEPT_TOKEN(anon_sym_item); - END_STATE(); - case 148: - if (lookahead == 't') ADVANCE(182); - END_STATE(); - case 149: - if (lookahead == 'r') ADVANCE(183); - END_STATE(); - case 150: - ACCEPT_TOKEN(anon_sym_loop); - END_STATE(); - case 151: - if (lookahead == 'h') ADVANCE(184); - END_STATE(); - case 152: - ACCEPT_TOKEN(anon_sym_meta); - END_STATE(); - case 153: - ACCEPT_TOKEN(anon_sym_move); - END_STATE(); - case 154: - ACCEPT_TOKEN(anon_sym_path); - END_STATE(); - case 155: - if (lookahead == 'r') ADVANCE(185); - END_STATE(); - case 156: - ACCEPT_TOKEN(sym_self); - END_STATE(); - case 157: - if (lookahead == 'i') ADVANCE(186); - END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_stmt); - END_STATE(); - case 159: - if (lookahead == 'c') ADVANCE(187); - END_STATE(); - case 160: - if (lookahead == 'r') ADVANCE(188); - END_STATE(); - case 161: - if (lookahead == 't') ADVANCE(189); - END_STATE(); - case 162: - ACCEPT_TOKEN(anon_sym_true); - END_STATE(); - case 163: - ACCEPT_TOKEN(anon_sym_type); - END_STATE(); - case 164: - ACCEPT_TOKEN(anon_sym_u128); - END_STATE(); - case 165: - if (lookahead == 'n') ADVANCE(190); - END_STATE(); - case 166: - if (lookahead == 'f') ADVANCE(191); - END_STATE(); - case 167: - if (lookahead == 'e') ADVANCE(192); - END_STATE(); - case 168: - if (lookahead == 'e') ADVANCE(193); - END_STATE(); - case 169: - if (lookahead == 'e') ADVANCE(194); - END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_async); - END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_await); - END_STATE(); - case 172: - ACCEPT_TOKEN(anon_sym_block); - END_STATE(); - case 173: - ACCEPT_TOKEN(anon_sym_break); - END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym_const); - END_STATE(); - case 175: - if (lookahead == 'n') ADVANCE(195); - END_STATE(); - case 176: - ACCEPT_TOKEN(sym_crate); - END_STATE(); - case 177: - if (lookahead == 'l') ADVANCE(196); - END_STATE(); - case 178: - if (lookahead == 'n') ADVANCE(197); - END_STATE(); - case 179: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 180: - ACCEPT_TOKEN(anon_sym_ident); - END_STATE(); - case 181: - ACCEPT_TOKEN(anon_sym_isize); - END_STATE(); - case 182: - if (lookahead == 'i') ADVANCE(198); - END_STATE(); - case 183: - if (lookahead == 'a') ADVANCE(199); - END_STATE(); - case 184: - ACCEPT_TOKEN(anon_sym_match); - END_STATE(); - case 185: - if (lookahead == 'n') ADVANCE(200); - END_STATE(); - case 186: - if (lookahead == 'c') ADVANCE(201); - END_STATE(); - case 187: - if (lookahead == 't') ADVANCE(202); - END_STATE(); - case 188: - ACCEPT_TOKEN(sym_super); - END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_trait); - END_STATE(); - case 190: - ACCEPT_TOKEN(anon_sym_union); - END_STATE(); - case 191: - if (lookahead == 'e') ADVANCE(203); - END_STATE(); - case 192: - ACCEPT_TOKEN(anon_sym_usize); - END_STATE(); - case 193: - ACCEPT_TOKEN(anon_sym_where); - END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_while); - END_STATE(); - case 195: - if (lookahead == 'u') ADVANCE(204); - END_STATE(); - case 196: - if (lookahead == 't') ADVANCE(205); - END_STATE(); - case 197: - ACCEPT_TOKEN(anon_sym_extern); - END_STATE(); - case 198: - if (lookahead == 'm') ADVANCE(206); - END_STATE(); - case 199: - if (lookahead == 'l') ADVANCE(207); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_return); - END_STATE(); - case 201: - ACCEPT_TOKEN(anon_sym_static); - END_STATE(); - case 202: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_unsafe); - END_STATE(); - case 204: - if (lookahead == 'e') ADVANCE(208); - END_STATE(); - case 205: - ACCEPT_TOKEN(anon_sym_default); - END_STATE(); - case 206: - if (lookahead == 'e') ADVANCE(209); - END_STATE(); - case 207: - ACCEPT_TOKEN(anon_sym_literal); - END_STATE(); - case 208: - ACCEPT_TOKEN(anon_sym_continue); - END_STATE(); - case 209: - ACCEPT_TOKEN(anon_sym_lifetime); - END_STATE(); - default: - return false; - } -} - -static TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 57, .external_lex_state = 2}, - [2] = {.lex_state = 57, .external_lex_state = 2}, - [3] = {.lex_state = 57, .external_lex_state = 2}, - [4] = {.lex_state = 57, .external_lex_state = 2}, - [5] = {.lex_state = 57, .external_lex_state = 2}, - [6] = {.lex_state = 57, .external_lex_state = 2}, - [7] = {.lex_state = 57, .external_lex_state = 2}, - [8] = {.lex_state = 57, .external_lex_state = 2}, - [9] = {.lex_state = 57, .external_lex_state = 2}, - [10] = {.lex_state = 57, .external_lex_state = 2}, - [11] = {.lex_state = 57, .external_lex_state = 2}, - [12] = {.lex_state = 57, .external_lex_state = 2}, - [13] = {.lex_state = 57, .external_lex_state = 2}, - [14] = {.lex_state = 57, .external_lex_state = 2}, - [15] = {.lex_state = 57, .external_lex_state = 2}, - [16] = {.lex_state = 57, .external_lex_state = 2}, - [17] = {.lex_state = 1, .external_lex_state = 2}, - [18] = {.lex_state = 1, .external_lex_state = 2}, - [19] = {.lex_state = 1, .external_lex_state = 2}, - [20] = {.lex_state = 1, .external_lex_state = 2}, - [21] = {.lex_state = 1, .external_lex_state = 2}, - [22] = {.lex_state = 1, .external_lex_state = 2}, - [23] = {.lex_state = 1, .external_lex_state = 2}, - [24] = {.lex_state = 1, .external_lex_state = 2}, - [25] = {.lex_state = 1, .external_lex_state = 2}, - [26] = {.lex_state = 1, .external_lex_state = 2}, - [27] = {.lex_state = 5, .external_lex_state = 2}, - [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 = 56, .external_lex_state = 2}, - [32] = {.lex_state = 56, .external_lex_state = 2}, - [33] = {.lex_state = 5, .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 = 56, .external_lex_state = 2}, - [38] = {.lex_state = 5, .external_lex_state = 2}, - [39] = {.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}, - [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 = 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}, - [53] = {.lex_state = 56, .external_lex_state = 2}, - [54] = {.lex_state = 5, .external_lex_state = 2}, - [55] = {.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 = 5, .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 = 56, .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 = 5, .external_lex_state = 2}, - [69] = {.lex_state = 56, .external_lex_state = 2}, - [70] = {.lex_state = 56, .external_lex_state = 2}, - [71] = {.lex_state = 56, .external_lex_state = 2}, - [72] = {.lex_state = 5, .external_lex_state = 2}, - [73] = {.lex_state = 5, .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}, - [78] = {.lex_state = 5, .external_lex_state = 2}, - [79] = {.lex_state = 5, .external_lex_state = 2}, - [80] = {.lex_state = 5, .external_lex_state = 2}, - [81] = {.lex_state = 5, .external_lex_state = 2}, - [82] = {.lex_state = 5, .external_lex_state = 2}, - [83] = {.lex_state = 56, .external_lex_state = 2}, - [84] = {.lex_state = 5, .external_lex_state = 2}, - [85] = {.lex_state = 5, .external_lex_state = 2}, - [86] = {.lex_state = 5, .external_lex_state = 2}, - [87] = {.lex_state = 5, .external_lex_state = 2}, - [88] = {.lex_state = 5, .external_lex_state = 2}, - [89] = {.lex_state = 5, .external_lex_state = 2}, - [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}, - [95] = {.lex_state = 5, .external_lex_state = 2}, - [96] = {.lex_state = 5, .external_lex_state = 2}, - [97] = {.lex_state = 5, .external_lex_state = 2}, - [98] = {.lex_state = 5, .external_lex_state = 2}, - [99] = {.lex_state = 5, .external_lex_state = 2}, - [100] = {.lex_state = 5, .external_lex_state = 2}, - [101] = {.lex_state = 5, .external_lex_state = 2}, - [102] = {.lex_state = 5, .external_lex_state = 2}, - [103] = {.lex_state = 5, .external_lex_state = 2}, - [104] = {.lex_state = 5, .external_lex_state = 2}, - [105] = {.lex_state = 5, .external_lex_state = 2}, - [106] = {.lex_state = 5, .external_lex_state = 2}, - [107] = {.lex_state = 5, .external_lex_state = 2}, - [108] = {.lex_state = 5, .external_lex_state = 2}, - [109] = {.lex_state = 5, .external_lex_state = 2}, - [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}, - [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}, - [118] = {.lex_state = 5, .external_lex_state = 2}, - [119] = {.lex_state = 6, .external_lex_state = 2}, - [120] = {.lex_state = 5, .external_lex_state = 2}, - [121] = {.lex_state = 5, .external_lex_state = 2}, - [122] = {.lex_state = 5, .external_lex_state = 2}, - [123] = {.lex_state = 5, .external_lex_state = 2}, - [124] = {.lex_state = 5, .external_lex_state = 2}, - [125] = {.lex_state = 5, .external_lex_state = 2}, - [126] = {.lex_state = 5, .external_lex_state = 2}, - [127] = {.lex_state = 5, .external_lex_state = 2}, - [128] = {.lex_state = 5, .external_lex_state = 2}, - [129] = {.lex_state = 5, .external_lex_state = 2}, - [130] = {.lex_state = 5, .external_lex_state = 2}, - [131] = {.lex_state = 5, .external_lex_state = 2}, - [132] = {.lex_state = 5, .external_lex_state = 2}, - [133] = {.lex_state = 5, .external_lex_state = 2}, - [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 = 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}, - [143] = {.lex_state = 5, .external_lex_state = 2}, - [144] = {.lex_state = 5, .external_lex_state = 2}, - [145] = {.lex_state = 5, .external_lex_state = 2}, - [146] = {.lex_state = 5, .external_lex_state = 2}, - [147] = {.lex_state = 5, .external_lex_state = 2}, - [148] = {.lex_state = 5, .external_lex_state = 2}, - [149] = {.lex_state = 5, .external_lex_state = 2}, - [150] = {.lex_state = 5, .external_lex_state = 2}, - [151] = {.lex_state = 5, .external_lex_state = 2}, - [152] = {.lex_state = 5, .external_lex_state = 2}, - [153] = {.lex_state = 5, .external_lex_state = 2}, - [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 = 5, .external_lex_state = 2}, - [158] = {.lex_state = 6, .external_lex_state = 2}, - [159] = {.lex_state = 5, .external_lex_state = 2}, - [160] = {.lex_state = 6, .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}, - [165] = {.lex_state = 5, .external_lex_state = 2}, - [166] = {.lex_state = 5, .external_lex_state = 2}, - [167] = {.lex_state = 5, .external_lex_state = 2}, - [168] = {.lex_state = 5, .external_lex_state = 2}, - [169] = {.lex_state = 5, .external_lex_state = 2}, - [170] = {.lex_state = 5, .external_lex_state = 2}, - [171] = {.lex_state = 5, .external_lex_state = 2}, - [172] = {.lex_state = 5, .external_lex_state = 2}, - [173] = {.lex_state = 5, .external_lex_state = 2}, - [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 = 5, .external_lex_state = 2}, - [178] = {.lex_state = 6, .external_lex_state = 2}, - [179] = {.lex_state = 5, .external_lex_state = 2}, - [180] = {.lex_state = 6, .external_lex_state = 2}, - [181] = {.lex_state = 6, .external_lex_state = 2}, - [182] = {.lex_state = 6, .external_lex_state = 2}, - [183] = {.lex_state = 6, .external_lex_state = 2}, - [184] = {.lex_state = 6, .external_lex_state = 2}, - [185] = {.lex_state = 6, .external_lex_state = 2}, - [186] = {.lex_state = 6, .external_lex_state = 2}, - [187] = {.lex_state = 6, .external_lex_state = 2}, - [188] = {.lex_state = 6, .external_lex_state = 2}, - [189] = {.lex_state = 6, .external_lex_state = 2}, - [190] = {.lex_state = 5, .external_lex_state = 2}, - [191] = {.lex_state = 5, .external_lex_state = 2}, - [192] = {.lex_state = 5, .external_lex_state = 2}, - [193] = {.lex_state = 5, .external_lex_state = 2}, - [194] = {.lex_state = 1, .external_lex_state = 2}, - [195] = {.lex_state = 5, .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}, - [204] = {.lex_state = 5, .external_lex_state = 2}, - [205] = {.lex_state = 5, .external_lex_state = 2}, - [206] = {.lex_state = 1, .external_lex_state = 2}, - [207] = {.lex_state = 1, .external_lex_state = 2}, - [208] = {.lex_state = 1, .external_lex_state = 2}, - [209] = {.lex_state = 5, .external_lex_state = 2}, - [210] = {.lex_state = 5, .external_lex_state = 2}, - [211] = {.lex_state = 5, .external_lex_state = 2}, - [212] = {.lex_state = 1, .external_lex_state = 2}, - [213] = {.lex_state = 5, .external_lex_state = 2}, - [214] = {.lex_state = 1, .external_lex_state = 2}, - [215] = {.lex_state = 1, .external_lex_state = 2}, - [216] = {.lex_state = 12, .external_lex_state = 2}, - [217] = {.lex_state = 1, .external_lex_state = 2}, - [218] = {.lex_state = 4, .external_lex_state = 3}, - [219] = {.lex_state = 1, .external_lex_state = 2}, - [220] = {.lex_state = 1, .external_lex_state = 2}, - [221] = {.lex_state = 1, .external_lex_state = 2}, - [222] = {.lex_state = 5, .external_lex_state = 2}, - [223] = {.lex_state = 5, .external_lex_state = 2}, - [224] = {.lex_state = 1, .external_lex_state = 2}, - [225] = {.lex_state = 1, .external_lex_state = 2}, - [226] = {.lex_state = 4, .external_lex_state = 3}, - [227] = {.lex_state = 1, .external_lex_state = 2}, - [228] = {.lex_state = 4, .external_lex_state = 3}, - [229] = {.lex_state = 1, .external_lex_state = 2}, - [230] = {.lex_state = 1, .external_lex_state = 2}, - [231] = {.lex_state = 5, .external_lex_state = 2}, - [232] = {.lex_state = 1, .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 = 1, .external_lex_state = 2}, - [238] = {.lex_state = 1, .external_lex_state = 2}, - [239] = {.lex_state = 1, .external_lex_state = 2}, - [240] = {.lex_state = 1, .external_lex_state = 2}, - [241] = {.lex_state = 4, .external_lex_state = 3}, - [242] = {.lex_state = 1, .external_lex_state = 2}, - [243] = {.lex_state = 1, .external_lex_state = 2}, - [244] = {.lex_state = 4, .external_lex_state = 3}, - [245] = {.lex_state = 57, .external_lex_state = 2}, - [246] = {.lex_state = 12, .external_lex_state = 2}, - [247] = {.lex_state = 57, .external_lex_state = 2}, - [248] = {.lex_state = 57, .external_lex_state = 2}, - [249] = {.lex_state = 57, .external_lex_state = 2}, - [250] = {.lex_state = 57, .external_lex_state = 2}, - [251] = {.lex_state = 57, .external_lex_state = 2}, - [252] = {.lex_state = 57, .external_lex_state = 2}, - [253] = {.lex_state = 57, .external_lex_state = 2}, - [254] = {.lex_state = 57, .external_lex_state = 2}, - [255] = {.lex_state = 57, .external_lex_state = 2}, - [256] = {.lex_state = 57, .external_lex_state = 2}, - [257] = {.lex_state = 57, .external_lex_state = 2}, - [258] = {.lex_state = 57, .external_lex_state = 2}, - [259] = {.lex_state = 57, .external_lex_state = 2}, - [260] = {.lex_state = 57, .external_lex_state = 2}, - [261] = {.lex_state = 57, .external_lex_state = 2}, - [262] = {.lex_state = 57, .external_lex_state = 2}, - [263] = {.lex_state = 57, .external_lex_state = 2}, - [264] = {.lex_state = 57, .external_lex_state = 2}, - [265] = {.lex_state = 57, .external_lex_state = 2}, - [266] = {.lex_state = 57, .external_lex_state = 2}, - [267] = {.lex_state = 57, .external_lex_state = 2}, - [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 = 57, .external_lex_state = 2}, - [272] = {.lex_state = 57, .external_lex_state = 2}, - [273] = {.lex_state = 57, .external_lex_state = 2}, - [274] = {.lex_state = 12, .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 = 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 = 57, .external_lex_state = 2}, - [288] = {.lex_state = 57, .external_lex_state = 2}, - [289] = {.lex_state = 57, .external_lex_state = 2}, - [290] = {.lex_state = 57, .external_lex_state = 2}, - [291] = {.lex_state = 12, .external_lex_state = 2}, - [292] = {.lex_state = 12, .external_lex_state = 2}, - [293] = {.lex_state = 12, .external_lex_state = 2}, - [294] = {.lex_state = 57, .external_lex_state = 2}, - [295] = {.lex_state = 12, .external_lex_state = 2}, - [296] = {.lex_state = 57, .external_lex_state = 2}, - [297] = {.lex_state = 57, .external_lex_state = 2}, - [298] = {.lex_state = 57, .external_lex_state = 2}, - [299] = {.lex_state = 57, .external_lex_state = 2}, - [300] = {.lex_state = 57, .external_lex_state = 2}, - [301] = {.lex_state = 57, .external_lex_state = 2}, - [302] = {.lex_state = 12, .external_lex_state = 2}, - [303] = {.lex_state = 12, .external_lex_state = 2}, - [304] = {.lex_state = 12, .external_lex_state = 2}, - [305] = {.lex_state = 57, .external_lex_state = 2}, - [306] = {.lex_state = 57, .external_lex_state = 2}, - [307] = {.lex_state = 57, .external_lex_state = 2}, - [308] = {.lex_state = 57, .external_lex_state = 2}, - [309] = {.lex_state = 57, .external_lex_state = 2}, - [310] = {.lex_state = 57, .external_lex_state = 2}, - [311] = {.lex_state = 57, .external_lex_state = 2}, - [312] = {.lex_state = 57, .external_lex_state = 2}, - [313] = {.lex_state = 12, .external_lex_state = 2}, - [314] = {.lex_state = 12, .external_lex_state = 2}, - [315] = {.lex_state = 57, .external_lex_state = 2}, - [316] = {.lex_state = 12, .external_lex_state = 2}, - [317] = {.lex_state = 57, .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}, - [324] = {.lex_state = 57, .external_lex_state = 2}, - [325] = {.lex_state = 57, .external_lex_state = 2}, - [326] = {.lex_state = 57, .external_lex_state = 2}, - [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 = 57, .external_lex_state = 2}, - [331] = {.lex_state = 57, .external_lex_state = 2}, - [332] = {.lex_state = 57, .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}, - [337] = {.lex_state = 57, .external_lex_state = 2}, - [338] = {.lex_state = 57, .external_lex_state = 2}, - [339] = {.lex_state = 57, .external_lex_state = 2}, - [340] = {.lex_state = 57, .external_lex_state = 2}, - [341] = {.lex_state = 57, .external_lex_state = 2}, - [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}, - [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 = 57, .external_lex_state = 2}, - [350] = {.lex_state = 57, .external_lex_state = 2}, - [351] = {.lex_state = 57, .external_lex_state = 2}, - [352] = {.lex_state = 57, .external_lex_state = 2}, - [353] = {.lex_state = 57, .external_lex_state = 2}, - [354] = {.lex_state = 57, .external_lex_state = 2}, - [355] = {.lex_state = 57, .external_lex_state = 2}, - [356] = {.lex_state = 57, .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}, - [360] = {.lex_state = 57, .external_lex_state = 2}, - [361] = {.lex_state = 57, .external_lex_state = 2}, - [362] = {.lex_state = 57, .external_lex_state = 2}, - [363] = {.lex_state = 57, .external_lex_state = 2}, - [364] = {.lex_state = 57, .external_lex_state = 2}, - [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}, - [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}, - [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}, - [380] = {.lex_state = 57, .external_lex_state = 2}, - [381] = {.lex_state = 57, .external_lex_state = 2}, - [382] = {.lex_state = 57, .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}, - [386] = {.lex_state = 57, .external_lex_state = 2}, - [387] = {.lex_state = 57, .external_lex_state = 2}, - [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}, - [393] = {.lex_state = 57, .external_lex_state = 2}, - [394] = {.lex_state = 57, .external_lex_state = 2}, - [395] = {.lex_state = 57, .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}, - [399] = {.lex_state = 57, .external_lex_state = 2}, - [400] = {.lex_state = 57, .external_lex_state = 2}, - [401] = {.lex_state = 57, .external_lex_state = 2}, - [402] = {.lex_state = 57, .external_lex_state = 2}, - [403] = {.lex_state = 57, .external_lex_state = 2}, - [404] = {.lex_state = 57, .external_lex_state = 2}, - [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}, - [409] = {.lex_state = 57, .external_lex_state = 2}, - [410] = {.lex_state = 57, .external_lex_state = 2}, - [411] = {.lex_state = 57, .external_lex_state = 2}, - [412] = {.lex_state = 57, .external_lex_state = 2}, - [413] = {.lex_state = 57, .external_lex_state = 2}, - [414] = {.lex_state = 57, .external_lex_state = 2}, - [415] = {.lex_state = 57, .external_lex_state = 2}, - [416] = {.lex_state = 57, .external_lex_state = 2}, - [417] = {.lex_state = 57, .external_lex_state = 2}, - [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}, - [423] = {.lex_state = 57, .external_lex_state = 2}, - [424] = {.lex_state = 57, .external_lex_state = 2}, - [425] = {.lex_state = 12, .external_lex_state = 2}, - [426] = {.lex_state = 57, .external_lex_state = 2}, - [427] = {.lex_state = 57, .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 = 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 = 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}, - [441] = {.lex_state = 57, .external_lex_state = 2}, - [442] = {.lex_state = 57, .external_lex_state = 2}, - [443] = {.lex_state = 57, .external_lex_state = 2}, - [444] = {.lex_state = 12, .external_lex_state = 2}, - [445] = {.lex_state = 57, .external_lex_state = 2}, - [446] = {.lex_state = 57, .external_lex_state = 2}, - [447] = {.lex_state = 57, .external_lex_state = 2}, - [448] = {.lex_state = 57, .external_lex_state = 2}, - [449] = {.lex_state = 57, .external_lex_state = 2}, - [450] = {.lex_state = 57, .external_lex_state = 2}, - [451] = {.lex_state = 57, .external_lex_state = 2}, - [452] = {.lex_state = 57, .external_lex_state = 2}, - [453] = {.lex_state = 57, .external_lex_state = 2}, - [454] = {.lex_state = 57, .external_lex_state = 2}, - [455] = {.lex_state = 5, .external_lex_state = 2}, - [456] = {.lex_state = 5, .external_lex_state = 2}, - [457] = {.lex_state = 5, .external_lex_state = 2}, - [458] = {.lex_state = 12, .external_lex_state = 2}, - [459] = {.lex_state = 12, .external_lex_state = 2}, - [460] = {.lex_state = 12, .external_lex_state = 2}, - [461] = {.lex_state = 12, .external_lex_state = 2}, - [462] = {.lex_state = 12, .external_lex_state = 2}, - [463] = {.lex_state = 12, .external_lex_state = 2}, - [464] = {.lex_state = 12, .external_lex_state = 2}, - [465] = {.lex_state = 5, .external_lex_state = 2}, - [466] = {.lex_state = 12, .external_lex_state = 2}, - [467] = {.lex_state = 12, .external_lex_state = 2}, - [468] = {.lex_state = 5, .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 = 5, .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}, - [491] = {.lex_state = 12, .external_lex_state = 2}, - [492] = {.lex_state = 12, .external_lex_state = 2}, - [493] = {.lex_state = 5, .external_lex_state = 2}, - [494] = {.lex_state = 7, .external_lex_state = 3}, - [495] = {.lex_state = 7, .external_lex_state = 3}, - [496] = {.lex_state = 7, .external_lex_state = 3}, - [497] = {.lex_state = 5, .external_lex_state = 2}, - [498] = {.lex_state = 7, .external_lex_state = 3}, - [499] = {.lex_state = 7, .external_lex_state = 3}, - [500] = {.lex_state = 7, .external_lex_state = 3}, - [501] = {.lex_state = 11, .external_lex_state = 2}, - [502] = {.lex_state = 5, .external_lex_state = 2}, - [503] = {.lex_state = 7, .external_lex_state = 3}, - [504] = {.lex_state = 12, .external_lex_state = 2}, - [505] = {.lex_state = 7, .external_lex_state = 3}, - [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 = 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 = 5, .external_lex_state = 2}, - [519] = {.lex_state = 12, .external_lex_state = 2}, - [520] = {.lex_state = 12, .external_lex_state = 2}, - [521] = {.lex_state = 7, .external_lex_state = 3}, - [522] = {.lex_state = 12, .external_lex_state = 2}, - [523] = {.lex_state = 12, .external_lex_state = 2}, - [524] = {.lex_state = 7, .external_lex_state = 3}, - [525] = {.lex_state = 5, .external_lex_state = 2}, - [526] = {.lex_state = 7, .external_lex_state = 3}, - [527] = {.lex_state = 7, .external_lex_state = 3}, - [528] = {.lex_state = 5, .external_lex_state = 2}, - [529] = {.lex_state = 5, .external_lex_state = 2}, - [530] = {.lex_state = 5, .external_lex_state = 2}, - [531] = {.lex_state = 5, .external_lex_state = 2}, - [532] = {.lex_state = 7, .external_lex_state = 3}, - [533] = {.lex_state = 5, .external_lex_state = 2}, - [534] = {.lex_state = 7, .external_lex_state = 3}, - [535] = {.lex_state = 7, .external_lex_state = 3}, - [536] = {.lex_state = 7, .external_lex_state = 3}, - [537] = {.lex_state = 5, .external_lex_state = 2}, - [538] = {.lex_state = 5, .external_lex_state = 2}, - [539] = {.lex_state = 5, .external_lex_state = 2}, - [540] = {.lex_state = 7, .external_lex_state = 3}, - [541] = {.lex_state = 7, .external_lex_state = 3}, - [542] = {.lex_state = 5, .external_lex_state = 2}, - [543] = {.lex_state = 5, .external_lex_state = 2}, - [544] = {.lex_state = 5, .external_lex_state = 2}, - [545] = {.lex_state = 5, .external_lex_state = 2}, - [546] = {.lex_state = 5, .external_lex_state = 2}, - [547] = {.lex_state = 7, .external_lex_state = 3}, - [548] = {.lex_state = 5, .external_lex_state = 2}, - [549] = {.lex_state = 7, .external_lex_state = 3}, - [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 = 7, .external_lex_state = 3}, - [555] = {.lex_state = 5, .external_lex_state = 2}, - [556] = {.lex_state = 5, .external_lex_state = 2}, - [557] = {.lex_state = 7, .external_lex_state = 3}, - [558] = {.lex_state = 5, .external_lex_state = 2}, - [559] = {.lex_state = 7, .external_lex_state = 3}, - [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}, - [564] = {.lex_state = 5, .external_lex_state = 2}, - [565] = {.lex_state = 5, .external_lex_state = 2}, - [566] = {.lex_state = 7, .external_lex_state = 3}, - [567] = {.lex_state = 5, .external_lex_state = 2}, - [568] = {.lex_state = 5, .external_lex_state = 2}, - [569] = {.lex_state = 7, .external_lex_state = 3}, - [570] = {.lex_state = 5, .external_lex_state = 2}, - [571] = {.lex_state = 5, .external_lex_state = 2}, - [572] = {.lex_state = 7, .external_lex_state = 3}, - [573] = {.lex_state = 7, .external_lex_state = 3}, - [574] = {.lex_state = 7, .external_lex_state = 3}, - [575] = {.lex_state = 5, .external_lex_state = 2}, - [576] = {.lex_state = 7, .external_lex_state = 3}, - [577] = {.lex_state = 7, .external_lex_state = 3}, - [578] = {.lex_state = 5, .external_lex_state = 2}, - [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 = 5, .external_lex_state = 2}, - [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 = 5, .external_lex_state = 2}, - [592] = {.lex_state = 7, .external_lex_state = 3}, - [593] = {.lex_state = 7, .external_lex_state = 3}, - [594] = {.lex_state = 7, .external_lex_state = 3}, - [595] = {.lex_state = 7, .external_lex_state = 3}, - [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}, - [602] = {.lex_state = 7, .external_lex_state = 3}, - [603] = {.lex_state = 7, .external_lex_state = 3}, - [604] = {.lex_state = 7, .external_lex_state = 3}, - [605] = {.lex_state = 7, .external_lex_state = 3}, - [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}, - [610] = {.lex_state = 7, .external_lex_state = 3}, - [611] = {.lex_state = 7, .external_lex_state = 3}, - [612] = {.lex_state = 7, .external_lex_state = 3}, - [613] = {.lex_state = 7, .external_lex_state = 3}, - [614] = {.lex_state = 7, .external_lex_state = 3}, - [615] = {.lex_state = 7, .external_lex_state = 3}, - [616] = {.lex_state = 7, .external_lex_state = 3}, - [617] = {.lex_state = 7, .external_lex_state = 3}, - [618] = {.lex_state = 7, .external_lex_state = 3}, - [619] = {.lex_state = 7, .external_lex_state = 3}, - [620] = {.lex_state = 7, .external_lex_state = 3}, - [621] = {.lex_state = 7, .external_lex_state = 3}, - [622] = {.lex_state = 7, .external_lex_state = 3}, - [623] = {.lex_state = 7, .external_lex_state = 3}, - [624] = {.lex_state = 7, .external_lex_state = 3}, - [625] = {.lex_state = 7, .external_lex_state = 3}, - [626] = {.lex_state = 7, .external_lex_state = 3}, - [627] = {.lex_state = 7, .external_lex_state = 3}, - [628] = {.lex_state = 7, .external_lex_state = 3}, - [629] = {.lex_state = 7, .external_lex_state = 3}, - [630] = {.lex_state = 7, .external_lex_state = 3}, - [631] = {.lex_state = 7, .external_lex_state = 3}, - [632] = {.lex_state = 7, .external_lex_state = 3}, - [633] = {.lex_state = 7, .external_lex_state = 3}, - [634] = {.lex_state = 7, .external_lex_state = 3}, - [635] = {.lex_state = 7, .external_lex_state = 3}, - [636] = {.lex_state = 7, .external_lex_state = 3}, - [637] = {.lex_state = 7, .external_lex_state = 3}, - [638] = {.lex_state = 7, .external_lex_state = 3}, - [639] = {.lex_state = 7, .external_lex_state = 3}, - [640] = {.lex_state = 7, .external_lex_state = 3}, - [641] = {.lex_state = 7, .external_lex_state = 3}, - [642] = {.lex_state = 7, .external_lex_state = 3}, - [643] = {.lex_state = 7, .external_lex_state = 3}, - [644] = {.lex_state = 7, .external_lex_state = 3}, - [645] = {.lex_state = 7, .external_lex_state = 3}, - [646] = {.lex_state = 7, .external_lex_state = 3}, - [647] = {.lex_state = 7, .external_lex_state = 3}, - [648] = {.lex_state = 7, .external_lex_state = 3}, - [649] = {.lex_state = 7, .external_lex_state = 3}, - [650] = {.lex_state = 7, .external_lex_state = 3}, - [651] = {.lex_state = 7, .external_lex_state = 3}, - [652] = {.lex_state = 7, .external_lex_state = 3}, - [653] = {.lex_state = 7, .external_lex_state = 3}, - [654] = {.lex_state = 7, .external_lex_state = 3}, - [655] = {.lex_state = 7, .external_lex_state = 3}, - [656] = {.lex_state = 7, .external_lex_state = 3}, - [657] = {.lex_state = 7, .external_lex_state = 3}, - [658] = {.lex_state = 7, .external_lex_state = 3}, - [659] = {.lex_state = 7, .external_lex_state = 3}, - [660] = {.lex_state = 7, .external_lex_state = 3}, - [661] = {.lex_state = 7, .external_lex_state = 3}, - [662] = {.lex_state = 7, .external_lex_state = 3}, - [663] = {.lex_state = 7, .external_lex_state = 3}, - [664] = {.lex_state = 7, .external_lex_state = 3}, - [665] = {.lex_state = 7, .external_lex_state = 3}, - [666] = {.lex_state = 7, .external_lex_state = 3}, - [667] = {.lex_state = 7, .external_lex_state = 3}, - [668] = {.lex_state = 7, .external_lex_state = 3}, - [669] = {.lex_state = 7, .external_lex_state = 3}, - [670] = {.lex_state = 7, .external_lex_state = 3}, - [671] = {.lex_state = 7, .external_lex_state = 3}, - [672] = {.lex_state = 7, .external_lex_state = 3}, - [673] = {.lex_state = 7, .external_lex_state = 3}, - [674] = {.lex_state = 7, .external_lex_state = 3}, - [675] = {.lex_state = 7, .external_lex_state = 3}, - [676] = {.lex_state = 7, .external_lex_state = 3}, - [677] = {.lex_state = 7, .external_lex_state = 3}, - [678] = {.lex_state = 7, .external_lex_state = 3}, - [679] = {.lex_state = 7, .external_lex_state = 3}, - [680] = {.lex_state = 7, .external_lex_state = 3}, - [681] = {.lex_state = 7, .external_lex_state = 3}, - [682] = {.lex_state = 7, .external_lex_state = 3}, - [683] = {.lex_state = 7, .external_lex_state = 3}, - [684] = {.lex_state = 7, .external_lex_state = 3}, - [685] = {.lex_state = 7, .external_lex_state = 3}, - [686] = {.lex_state = 7, .external_lex_state = 3}, - [687] = {.lex_state = 7, .external_lex_state = 3}, - [688] = {.lex_state = 7, .external_lex_state = 3}, - [689] = {.lex_state = 7, .external_lex_state = 3}, - [690] = {.lex_state = 7, .external_lex_state = 3}, - [691] = {.lex_state = 7, .external_lex_state = 3}, - [692] = {.lex_state = 7, .external_lex_state = 3}, - [693] = {.lex_state = 7, .external_lex_state = 3}, - [694] = {.lex_state = 7, .external_lex_state = 3}, - [695] = {.lex_state = 7, .external_lex_state = 3}, - [696] = {.lex_state = 7, .external_lex_state = 3}, - [697] = {.lex_state = 7, .external_lex_state = 3}, - [698] = {.lex_state = 5, .external_lex_state = 2}, - [699] = {.lex_state = 5, .external_lex_state = 2}, - [700] = {.lex_state = 5, .external_lex_state = 2}, - [701] = {.lex_state = 5, .external_lex_state = 2}, - [702] = {.lex_state = 6, .external_lex_state = 2}, - [703] = {.lex_state = 3, .external_lex_state = 3}, - [704] = {.lex_state = 3, .external_lex_state = 3}, - [705] = {.lex_state = 3, .external_lex_state = 3}, - [706] = {.lex_state = 3, .external_lex_state = 3}, - [707] = {.lex_state = 3, .external_lex_state = 3}, - [708] = {.lex_state = 2, .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 = 3, .external_lex_state = 3}, - [713] = {.lex_state = 4, .external_lex_state = 3}, - [714] = {.lex_state = 3, .external_lex_state = 3}, - [715] = {.lex_state = 4, .external_lex_state = 3}, - [716] = {.lex_state = 4, .external_lex_state = 3}, - [717] = {.lex_state = 4, .external_lex_state = 3}, - [718] = {.lex_state = 4, .external_lex_state = 3}, - [719] = {.lex_state = 2, .external_lex_state = 3}, - [720] = {.lex_state = 2, .external_lex_state = 3}, - [721] = {.lex_state = 2, .external_lex_state = 3}, - [722] = {.lex_state = 2, .external_lex_state = 3}, - [723] = {.lex_state = 2, .external_lex_state = 3}, - [724] = {.lex_state = 2, .external_lex_state = 3}, - [725] = {.lex_state = 2, .external_lex_state = 3}, - [726] = {.lex_state = 2, .external_lex_state = 3}, - [727] = {.lex_state = 4, .external_lex_state = 3}, - [728] = {.lex_state = 2, .external_lex_state = 3}, - [729] = {.lex_state = 4, .external_lex_state = 3}, - [730] = {.lex_state = 4, .external_lex_state = 3}, - [731] = {.lex_state = 2, .external_lex_state = 3}, - [732] = {.lex_state = 4, .external_lex_state = 3}, - [733] = {.lex_state = 2, .external_lex_state = 3}, - [734] = {.lex_state = 4, .external_lex_state = 3}, - [735] = {.lex_state = 4, .external_lex_state = 3}, - [736] = {.lex_state = 4, .external_lex_state = 3}, - [737] = {.lex_state = 4, .external_lex_state = 3}, - [738] = {.lex_state = 4, .external_lex_state = 3}, - [739] = {.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}, - [745] = {.lex_state = 2, .external_lex_state = 3}, - [746] = {.lex_state = 4, .external_lex_state = 3}, - [747] = {.lex_state = 4, .external_lex_state = 3}, - [748] = {.lex_state = 4, .external_lex_state = 3}, - [749] = {.lex_state = 2, .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}, - [758] = {.lex_state = 4, .external_lex_state = 3}, - [759] = {.lex_state = 4, .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 = 4, .external_lex_state = 3}, - [764] = {.lex_state = 2, .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 = 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 = 2, .external_lex_state = 3}, - [775] = {.lex_state = 4, .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}, - [779] = {.lex_state = 4, .external_lex_state = 3}, - [780] = {.lex_state = 4, .external_lex_state = 3}, - [781] = {.lex_state = 4, .external_lex_state = 3}, - [782] = {.lex_state = 2, .external_lex_state = 3}, - [783] = {.lex_state = 4, .external_lex_state = 3}, - [784] = {.lex_state = 4, .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}, - [789] = {.lex_state = 4, .external_lex_state = 3}, - [790] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, - [795] = {.lex_state = 4, .external_lex_state = 3}, - [796] = {.lex_state = 4, .external_lex_state = 3}, - [797] = {.lex_state = 10, .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}, - [803] = {.lex_state = 4, .external_lex_state = 3}, - [804] = {.lex_state = 4, .external_lex_state = 3}, - [805] = {.lex_state = 4, .external_lex_state = 3}, - [806] = {.lex_state = 4, .external_lex_state = 3}, - [807] = {.lex_state = 4, .external_lex_state = 3}, - [808] = {.lex_state = 4, .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 = 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 = 4, .external_lex_state = 3}, - [821] = {.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 = 2, .external_lex_state = 3}, - [825] = {.lex_state = 2, .external_lex_state = 3}, - [826] = {.lex_state = 2, .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}, - [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}, - [838] = {.lex_state = 4, .external_lex_state = 3}, - [839] = {.lex_state = 2, .external_lex_state = 3}, - [840] = {.lex_state = 2, .external_lex_state = 3}, - [841] = {.lex_state = 4, .external_lex_state = 3}, - [842] = {.lex_state = 4, .external_lex_state = 3}, - [843] = {.lex_state = 4, .external_lex_state = 3}, - [844] = {.lex_state = 2, .external_lex_state = 3}, - [845] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [852] = {.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}, - [858] = {.lex_state = 4, .external_lex_state = 3}, - [859] = {.lex_state = 4, .external_lex_state = 3}, - [860] = {.lex_state = 4, .external_lex_state = 3}, - [861] = {.lex_state = 4, .external_lex_state = 3}, - [862] = {.lex_state = 4, .external_lex_state = 3}, - [863] = {.lex_state = 4, .external_lex_state = 3}, - [864] = {.lex_state = 2, .external_lex_state = 3}, - [865] = {.lex_state = 4, .external_lex_state = 3}, - [866] = {.lex_state = 4, .external_lex_state = 3}, - [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}, - [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 = 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 = 4, .external_lex_state = 3}, - [881] = {.lex_state = 4, .external_lex_state = 3}, - [882] = {.lex_state = 4, .external_lex_state = 3}, - [883] = {.lex_state = 2, .external_lex_state = 3}, - [884] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, - [889] = {.lex_state = 4, .external_lex_state = 3}, - [890] = {.lex_state = 4, .external_lex_state = 3}, - [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}, - [896] = {.lex_state = 4, .external_lex_state = 3}, - [897] = {.lex_state = 2, .external_lex_state = 3}, - [898] = {.lex_state = 4, .external_lex_state = 3}, - [899] = {.lex_state = 4, .external_lex_state = 3}, - [900] = {.lex_state = 4, .external_lex_state = 3}, - [901] = {.lex_state = 4, .external_lex_state = 3}, - [902] = {.lex_state = 4, .external_lex_state = 3}, - [903] = {.lex_state = 4, .external_lex_state = 3}, - [904] = {.lex_state = 2, .external_lex_state = 3}, - [905] = {.lex_state = 4, .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 = 4, .external_lex_state = 3}, - [911] = {.lex_state = 2, .external_lex_state = 3}, - [912] = {.lex_state = 4, .external_lex_state = 3}, - [913] = {.lex_state = 4, .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 = 4, .external_lex_state = 3}, - [923] = {.lex_state = 4, .external_lex_state = 3}, - [924] = {.lex_state = 4, .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 = 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 = 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}, - [936] = {.lex_state = 4, .external_lex_state = 3}, - [937] = {.lex_state = 4, .external_lex_state = 3}, - [938] = {.lex_state = 4, .external_lex_state = 3}, - [939] = {.lex_state = 4, .external_lex_state = 3}, - [940] = {.lex_state = 4, .external_lex_state = 3}, - [941] = {.lex_state = 4, .external_lex_state = 3}, - [942] = {.lex_state = 4, .external_lex_state = 3}, - [943] = {.lex_state = 4, .external_lex_state = 3}, - [944] = {.lex_state = 4, .external_lex_state = 3}, - [945] = {.lex_state = 4, .external_lex_state = 3}, - [946] = {.lex_state = 4, .external_lex_state = 3}, - [947] = {.lex_state = 2, .external_lex_state = 3}, - [948] = {.lex_state = 4, .external_lex_state = 3}, - [949] = {.lex_state = 2, .external_lex_state = 3}, - [950] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, - [955] = {.lex_state = 2, .external_lex_state = 3}, - [956] = {.lex_state = 2, .external_lex_state = 3}, - [957] = {.lex_state = 2, .external_lex_state = 3}, - [958] = {.lex_state = 2, .external_lex_state = 3}, - [959] = {.lex_state = 2, .external_lex_state = 3}, - [960] = {.lex_state = 2, .external_lex_state = 3}, - [961] = {.lex_state = 2, .external_lex_state = 3}, - [962] = {.lex_state = 2, .external_lex_state = 3}, - [963] = {.lex_state = 2, .external_lex_state = 3}, - [964] = {.lex_state = 2, .external_lex_state = 3}, - [965] = {.lex_state = 2, .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}, - [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 = 2, .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}, - [1002] = {.lex_state = 2, .external_lex_state = 3}, - [1003] = {.lex_state = 2, .external_lex_state = 3}, - [1004] = {.lex_state = 2, .external_lex_state = 3}, - [1005] = {.lex_state = 2, .external_lex_state = 3}, - [1006] = {.lex_state = 2, .external_lex_state = 3}, - [1007] = {.lex_state = 2, .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}, - [1012] = {.lex_state = 2, .external_lex_state = 3}, - [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 = 2, .external_lex_state = 3}, - [1021] = {.lex_state = 2, .external_lex_state = 3}, - [1022] = {.lex_state = 2, .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}, - [1027] = {.lex_state = 2, .external_lex_state = 3}, - [1028] = {.lex_state = 2, .external_lex_state = 3}, - [1029] = {.lex_state = 2, .external_lex_state = 3}, - [1030] = {.lex_state = 2, .external_lex_state = 3}, - [1031] = {.lex_state = 2, .external_lex_state = 3}, - [1032] = {.lex_state = 2, .external_lex_state = 3}, - [1033] = {.lex_state = 2, .external_lex_state = 3}, - [1034] = {.lex_state = 2, .external_lex_state = 3}, - [1035] = {.lex_state = 2, .external_lex_state = 3}, - [1036] = {.lex_state = 2, .external_lex_state = 3}, - [1037] = {.lex_state = 2, .external_lex_state = 3}, - [1038] = {.lex_state = 2, .external_lex_state = 3}, - [1039] = {.lex_state = 2, .external_lex_state = 3}, - [1040] = {.lex_state = 2, .external_lex_state = 3}, - [1041] = {.lex_state = 2, .external_lex_state = 3}, - [1042] = {.lex_state = 2, .external_lex_state = 3}, - [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 = 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 = 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}, - [1056] = {.lex_state = 2, .external_lex_state = 3}, - [1057] = {.lex_state = 2, .external_lex_state = 3}, - [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}, - [1062] = {.lex_state = 2, .external_lex_state = 3}, - [1063] = {.lex_state = 2, .external_lex_state = 3}, - [1064] = {.lex_state = 7, .external_lex_state = 3}, - [1065] = {.lex_state = 7, .external_lex_state = 3}, - [1066] = {.lex_state = 7, .external_lex_state = 3}, - [1067] = {.lex_state = 7, .external_lex_state = 3}, - [1068] = {.lex_state = 7, .external_lex_state = 3}, - [1069] = {.lex_state = 7, .external_lex_state = 3}, - [1070] = {.lex_state = 2, .external_lex_state = 3}, - [1071] = {.lex_state = 7, .external_lex_state = 3}, - [1072] = {.lex_state = 5, .external_lex_state = 2}, - [1073] = {.lex_state = 7, .external_lex_state = 3}, - [1074] = {.lex_state = 2, .external_lex_state = 3}, - [1075] = {.lex_state = 2, .external_lex_state = 3}, - [1076] = {.lex_state = 7, .external_lex_state = 3}, - [1077] = {.lex_state = 5, .external_lex_state = 2}, - [1078] = {.lex_state = 2, .external_lex_state = 3}, - [1079] = {.lex_state = 7, .external_lex_state = 3}, - [1080] = {.lex_state = 5, .external_lex_state = 2}, - [1081] = {.lex_state = 7, .external_lex_state = 3}, - [1082] = {.lex_state = 2, .external_lex_state = 3}, - [1083] = {.lex_state = 5, .external_lex_state = 2}, - [1084] = {.lex_state = 2, .external_lex_state = 3}, - [1085] = {.lex_state = 7, .external_lex_state = 3}, - [1086] = {.lex_state = 7, .external_lex_state = 3}, - [1087] = {.lex_state = 2, .external_lex_state = 3}, - [1088] = {.lex_state = 7, .external_lex_state = 3}, - [1089] = {.lex_state = 7, .external_lex_state = 3}, - [1090] = {.lex_state = 2, .external_lex_state = 3}, - [1091] = {.lex_state = 2, .external_lex_state = 3}, - [1092] = {.lex_state = 5, .external_lex_state = 2}, - [1093] = {.lex_state = 2, .external_lex_state = 3}, - [1094] = {.lex_state = 2, .external_lex_state = 3}, - [1095] = {.lex_state = 2, .external_lex_state = 3}, - [1096] = {.lex_state = 2, .external_lex_state = 3}, - [1097] = {.lex_state = 7, .external_lex_state = 3}, - [1098] = {.lex_state = 2, .external_lex_state = 3}, - [1099] = {.lex_state = 2, .external_lex_state = 3}, - [1100] = {.lex_state = 7, .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 = 2, .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 = 2, .external_lex_state = 3}, - [1112] = {.lex_state = 2, .external_lex_state = 3}, - [1113] = {.lex_state = 2, .external_lex_state = 3}, - [1114] = {.lex_state = 2, .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}, - [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 = 2, .external_lex_state = 3}, - [1127] = {.lex_state = 2, .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 = 2, .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}, - [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}, - [1152] = {.lex_state = 2, .external_lex_state = 3}, - [1153] = {.lex_state = 2, .external_lex_state = 3}, - [1154] = {.lex_state = 2, .external_lex_state = 3}, - [1155] = {.lex_state = 2, .external_lex_state = 3}, - [1156] = {.lex_state = 2, .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 = 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}, - [1164] = {.lex_state = 2, .external_lex_state = 3}, - [1165] = {.lex_state = 2, .external_lex_state = 3}, - [1166] = {.lex_state = 2, .external_lex_state = 3}, - [1167] = {.lex_state = 2, .external_lex_state = 3}, - [1168] = {.lex_state = 2, .external_lex_state = 3}, - [1169] = {.lex_state = 2, .external_lex_state = 3}, - [1170] = {.lex_state = 2, .external_lex_state = 3}, - [1171] = {.lex_state = 5, .external_lex_state = 2}, - [1172] = {.lex_state = 2, .external_lex_state = 3}, - [1173] = {.lex_state = 2, .external_lex_state = 3}, - [1174] = {.lex_state = 2, .external_lex_state = 3}, - [1175] = {.lex_state = 2, .external_lex_state = 3}, - [1176] = {.lex_state = 7, .external_lex_state = 3}, - [1177] = {.lex_state = 2, .external_lex_state = 3}, - [1178] = {.lex_state = 2, .external_lex_state = 3}, - [1179] = {.lex_state = 5, .external_lex_state = 2}, - [1180] = {.lex_state = 2, .external_lex_state = 3}, - [1181] = {.lex_state = 2, .external_lex_state = 3}, - [1182] = {.lex_state = 5, .external_lex_state = 2}, - [1183] = {.lex_state = 7, .external_lex_state = 3}, - [1184] = {.lex_state = 2, .external_lex_state = 3}, - [1185] = {.lex_state = 7, .external_lex_state = 3}, - [1186] = {.lex_state = 2, .external_lex_state = 3}, - [1187] = {.lex_state = 2, .external_lex_state = 3}, - [1188] = {.lex_state = 7, .external_lex_state = 3}, - [1189] = {.lex_state = 2, .external_lex_state = 3}, - [1190] = {.lex_state = 2, .external_lex_state = 3}, - [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}, - [1195] = {.lex_state = 2, .external_lex_state = 3}, - [1196] = {.lex_state = 2, .external_lex_state = 3}, - [1197] = {.lex_state = 2, .external_lex_state = 3}, - [1198] = {.lex_state = 7, .external_lex_state = 3}, - [1199] = {.lex_state = 2, .external_lex_state = 3}, - [1200] = {.lex_state = 2, .external_lex_state = 3}, - [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}, - [1205] = {.lex_state = 5, .external_lex_state = 2}, - [1206] = {.lex_state = 2, .external_lex_state = 3}, - [1207] = {.lex_state = 7, .external_lex_state = 3}, - [1208] = {.lex_state = 7, .external_lex_state = 3}, - [1209] = {.lex_state = 2, .external_lex_state = 3}, - [1210] = {.lex_state = 2, .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}, - [1219] = {.lex_state = 2, .external_lex_state = 3}, - [1220] = {.lex_state = 7, .external_lex_state = 3}, - [1221] = {.lex_state = 5, .external_lex_state = 2}, - [1222] = {.lex_state = 7, .external_lex_state = 3}, - [1223] = {.lex_state = 7, .external_lex_state = 3}, - [1224] = {.lex_state = 7, .external_lex_state = 3}, - [1225] = {.lex_state = 7, .external_lex_state = 3}, - [1226] = {.lex_state = 7, .external_lex_state = 3}, - [1227] = {.lex_state = 7, .external_lex_state = 3}, - [1228] = {.lex_state = 7, .external_lex_state = 3}, - [1229] = {.lex_state = 7, .external_lex_state = 3}, - [1230] = {.lex_state = 7, .external_lex_state = 3}, - [1231] = {.lex_state = 7, .external_lex_state = 3}, - [1232] = {.lex_state = 7, .external_lex_state = 3}, - [1233] = {.lex_state = 7, .external_lex_state = 3}, - [1234] = {.lex_state = 7, .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 = 17, .external_lex_state = 3}, - [1244] = {.lex_state = 17, .external_lex_state = 3}, - [1245] = {.lex_state = 9, .external_lex_state = 3}, - [1246] = {.lex_state = 9, .external_lex_state = 3}, - [1247] = {.lex_state = 9, .external_lex_state = 3}, - [1248] = {.lex_state = 9, .external_lex_state = 3}, - [1249] = {.lex_state = 9, .external_lex_state = 3}, - [1250] = {.lex_state = 9, .external_lex_state = 3}, - [1251] = {.lex_state = 9, .external_lex_state = 3}, - [1252] = {.lex_state = 9, .external_lex_state = 3}, - [1253] = {.lex_state = 9, .external_lex_state = 3}, - [1254] = {.lex_state = 9, .external_lex_state = 3}, - [1255] = {.lex_state = 9, .external_lex_state = 3}, - [1256] = {.lex_state = 9, .external_lex_state = 3}, - [1257] = {.lex_state = 7, .external_lex_state = 3}, - [1258] = {.lex_state = 17, .external_lex_state = 3}, - [1259] = {.lex_state = 17, .external_lex_state = 3}, - [1260] = {.lex_state = 17, .external_lex_state = 3}, - [1261] = {.lex_state = 7, .external_lex_state = 3}, - [1262] = {.lex_state = 7, .external_lex_state = 3}, - [1263] = {.lex_state = 17, .external_lex_state = 3}, - [1264] = {.lex_state = 7, .external_lex_state = 3}, - [1265] = {.lex_state = 7, .external_lex_state = 3}, - [1266] = {.lex_state = 7, .external_lex_state = 3}, - [1267] = {.lex_state = 9, .external_lex_state = 3}, - [1268] = {.lex_state = 7, .external_lex_state = 3}, - [1269] = {.lex_state = 7, .external_lex_state = 3}, - [1270] = {.lex_state = 9, .external_lex_state = 3}, - [1271] = {.lex_state = 7, .external_lex_state = 3}, - [1272] = {.lex_state = 7, .external_lex_state = 3}, - [1273] = {.lex_state = 7, .external_lex_state = 3}, - [1274] = {.lex_state = 7, .external_lex_state = 3}, - [1275] = {.lex_state = 7, .external_lex_state = 3}, - [1276] = {.lex_state = 9, .external_lex_state = 3}, - [1277] = {.lex_state = 7, .external_lex_state = 3}, - [1278] = {.lex_state = 7, .external_lex_state = 3}, - [1279] = {.lex_state = 7, .external_lex_state = 3}, - [1280] = {.lex_state = 17, .external_lex_state = 3}, - [1281] = {.lex_state = 7, .external_lex_state = 3}, - [1282] = {.lex_state = 7, .external_lex_state = 3}, - [1283] = {.lex_state = 17, .external_lex_state = 3}, - [1284] = {.lex_state = 17, .external_lex_state = 3}, - [1285] = {.lex_state = 17, .external_lex_state = 3}, - [1286] = {.lex_state = 17, .external_lex_state = 3}, - [1287] = {.lex_state = 17, .external_lex_state = 3}, - [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 = 17, .external_lex_state = 3}, - [1292] = {.lex_state = 9, .external_lex_state = 3}, - [1293] = {.lex_state = 17, .external_lex_state = 3}, - [1294] = {.lex_state = 17, .external_lex_state = 3}, - [1295] = {.lex_state = 17, .external_lex_state = 3}, - [1296] = {.lex_state = 17, .external_lex_state = 3}, - [1297] = {.lex_state = 7, .external_lex_state = 3}, - [1298] = {.lex_state = 7, .external_lex_state = 3}, - [1299] = {.lex_state = 7, .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}, - [1303] = {.lex_state = 17, .external_lex_state = 3}, - [1304] = {.lex_state = 17, .external_lex_state = 3}, - [1305] = {.lex_state = 17, .external_lex_state = 3}, - [1306] = {.lex_state = 17, .external_lex_state = 3}, - [1307] = {.lex_state = 17, .external_lex_state = 3}, - [1308] = {.lex_state = 17, .external_lex_state = 3}, - [1309] = {.lex_state = 17, .external_lex_state = 3}, - [1310] = {.lex_state = 17, .external_lex_state = 3}, - [1311] = {.lex_state = 17, .external_lex_state = 3}, - [1312] = {.lex_state = 17, .external_lex_state = 3}, - [1313] = {.lex_state = 17, .external_lex_state = 3}, - [1314] = {.lex_state = 17, .external_lex_state = 3}, - [1315] = {.lex_state = 17, .external_lex_state = 3}, - [1316] = {.lex_state = 17, .external_lex_state = 3}, - [1317] = {.lex_state = 7, .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}, - [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 = 17, .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 = 9, .external_lex_state = 3}, - [1334] = {.lex_state = 9, .external_lex_state = 3}, - [1335] = {.lex_state = 9, .external_lex_state = 3}, - [1336] = {.lex_state = 7, .external_lex_state = 3}, - [1337] = {.lex_state = 7, .external_lex_state = 3}, - [1338] = {.lex_state = 9, .external_lex_state = 3}, - [1339] = {.lex_state = 9, .external_lex_state = 3}, - [1340] = {.lex_state = 7, .external_lex_state = 3}, - [1341] = {.lex_state = 7, .external_lex_state = 3}, - [1342] = {.lex_state = 7, .external_lex_state = 3}, - [1343] = {.lex_state = 9, .external_lex_state = 3}, - [1344] = {.lex_state = 9, .external_lex_state = 3}, - [1345] = {.lex_state = 9, .external_lex_state = 3}, - [1346] = {.lex_state = 9, .external_lex_state = 3}, - [1347] = {.lex_state = 9, .external_lex_state = 3}, - [1348] = {.lex_state = 9, .external_lex_state = 3}, - [1349] = {.lex_state = 9, .external_lex_state = 3}, - [1350] = {.lex_state = 17, .external_lex_state = 3}, - [1351] = {.lex_state = 9, .external_lex_state = 3}, - [1352] = {.lex_state = 17, .external_lex_state = 3}, - [1353] = {.lex_state = 17, .external_lex_state = 3}, - [1354] = {.lex_state = 7, .external_lex_state = 3}, - [1355] = {.lex_state = 7, .external_lex_state = 3}, - [1356] = {.lex_state = 7, .external_lex_state = 3}, - [1357] = {.lex_state = 17, .external_lex_state = 3}, - [1358] = {.lex_state = 17, .external_lex_state = 3}, - [1359] = {.lex_state = 17, .external_lex_state = 3}, - [1360] = {.lex_state = 13, .external_lex_state = 3}, - [1361] = {.lex_state = 17, .external_lex_state = 3}, - [1362] = {.lex_state = 13, .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 = 17, .external_lex_state = 3}, - [1371] = {.lex_state = 17, .external_lex_state = 3}, - [1372] = {.lex_state = 17, .external_lex_state = 3}, - [1373] = {.lex_state = 17, .external_lex_state = 3}, - [1374] = {.lex_state = 17, .external_lex_state = 3}, - [1375] = {.lex_state = 17, .external_lex_state = 3}, - [1376] = {.lex_state = 17, .external_lex_state = 3}, - [1377] = {.lex_state = 17, .external_lex_state = 3}, - [1378] = {.lex_state = 17, .external_lex_state = 3}, - [1379] = {.lex_state = 17, .external_lex_state = 3}, - [1380] = {.lex_state = 17, .external_lex_state = 3}, - [1381] = {.lex_state = 13, .external_lex_state = 3}, - [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}, - [1386] = {.lex_state = 17, .external_lex_state = 3}, - [1387] = {.lex_state = 17, .external_lex_state = 3}, - [1388] = {.lex_state = 17, .external_lex_state = 3}, - [1389] = {.lex_state = 17, .external_lex_state = 3}, - [1390] = {.lex_state = 17, .external_lex_state = 3}, - [1391] = {.lex_state = 17, .external_lex_state = 3}, - [1392] = {.lex_state = 17, .external_lex_state = 3}, - [1393] = {.lex_state = 9, .external_lex_state = 3}, - [1394] = {.lex_state = 7, .external_lex_state = 3}, - [1395] = {.lex_state = 9, .external_lex_state = 3}, - [1396] = {.lex_state = 9, .external_lex_state = 3}, - [1397] = {.lex_state = 7, .external_lex_state = 3}, - [1398] = {.lex_state = 9, .external_lex_state = 3}, - [1399] = {.lex_state = 1, .external_lex_state = 2}, - [1400] = {.lex_state = 1, .external_lex_state = 2}, - [1401] = {.lex_state = 14, .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 = 7, .external_lex_state = 3}, - [1408] = {.lex_state = 7, .external_lex_state = 3}, - [1409] = {.lex_state = 7, .external_lex_state = 3}, - [1410] = {.lex_state = 7, .external_lex_state = 3}, - [1411] = {.lex_state = 14, .external_lex_state = 3}, - [1412] = {.lex_state = 7, .external_lex_state = 3}, - [1413] = {.lex_state = 14, .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 = 7, .external_lex_state = 3}, - [1418] = {.lex_state = 7, .external_lex_state = 3}, - [1419] = {.lex_state = 7, .external_lex_state = 3}, - [1420] = {.lex_state = 4, .external_lex_state = 3}, - [1421] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, - [1427] = {.lex_state = 7, .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 = 7, .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 = 7, .external_lex_state = 3}, - [1441] = {.lex_state = 7, .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 = 17, .external_lex_state = 3}, - [1447] = {.lex_state = 17, .external_lex_state = 3}, - [1448] = {.lex_state = 17, .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 = 17, .external_lex_state = 3}, - [1454] = {.lex_state = 13, .external_lex_state = 3}, - [1455] = {.lex_state = 14, .external_lex_state = 3}, - [1456] = {.lex_state = 7, .external_lex_state = 3}, - [1457] = {.lex_state = 14, .external_lex_state = 3}, - [1458] = {.lex_state = 7, .external_lex_state = 3}, - [1459] = {.lex_state = 7, .external_lex_state = 3}, - [1460] = {.lex_state = 14, .external_lex_state = 3}, - [1461] = {.lex_state = 7, .external_lex_state = 3}, - [1462] = {.lex_state = 14, .external_lex_state = 3}, - [1463] = {.lex_state = 7, .external_lex_state = 3}, - [1464] = {.lex_state = 7, .external_lex_state = 3}, - [1465] = {.lex_state = 14, .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 = 4, .external_lex_state = 3}, - [1471] = {.lex_state = 4, .external_lex_state = 3}, - [1472] = {.lex_state = 17, .external_lex_state = 3}, - [1473] = {.lex_state = 17, .external_lex_state = 3}, - [1474] = {.lex_state = 7, .external_lex_state = 3}, - [1475] = {.lex_state = 14, .external_lex_state = 3}, - [1476] = {.lex_state = 0, .external_lex_state = 3}, - [1477] = {.lex_state = 7, .external_lex_state = 3}, - [1478] = {.lex_state = 4, .external_lex_state = 3}, - [1479] = {.lex_state = 17, .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 = 14, .external_lex_state = 3}, - [1484] = {.lex_state = 14, .external_lex_state = 3}, - [1485] = {.lex_state = 7, .external_lex_state = 3}, - [1486] = {.lex_state = 17, .external_lex_state = 3}, - [1487] = {.lex_state = 14, .external_lex_state = 3}, - [1488] = {.lex_state = 7, .external_lex_state = 3}, - [1489] = {.lex_state = 4, .external_lex_state = 3}, - [1490] = {.lex_state = 7, .external_lex_state = 3}, - [1491] = {.lex_state = 7, .external_lex_state = 3}, - [1492] = {.lex_state = 7, .external_lex_state = 3}, - [1493] = {.lex_state = 0, .external_lex_state = 3}, - [1494] = {.lex_state = 7, .external_lex_state = 3}, - [1495] = {.lex_state = 0, .external_lex_state = 3}, - [1496] = {.lex_state = 0, .external_lex_state = 3}, - [1497] = {.lex_state = 7, .external_lex_state = 3}, - [1498] = {.lex_state = 14, .external_lex_state = 3}, - [1499] = {.lex_state = 10, .external_lex_state = 3}, - [1500] = {.lex_state = 4, .external_lex_state = 3}, - [1501] = {.lex_state = 7, .external_lex_state = 3}, - [1502] = {.lex_state = 7, .external_lex_state = 3}, - [1503] = {.lex_state = 0, .external_lex_state = 3}, - [1504] = {.lex_state = 14, .external_lex_state = 3}, - [1505] = {.lex_state = 7, .external_lex_state = 3}, - [1506] = {.lex_state = 7, .external_lex_state = 3}, - [1507] = {.lex_state = 7, .external_lex_state = 3}, - [1508] = {.lex_state = 14, .external_lex_state = 3}, - [1509] = {.lex_state = 7, .external_lex_state = 3}, - [1510] = {.lex_state = 0, .external_lex_state = 3}, - [1511] = {.lex_state = 0, .external_lex_state = 3}, - [1512] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [1517] = {.lex_state = 14, .external_lex_state = 3}, - [1518] = {.lex_state = 7, .external_lex_state = 3}, - [1519] = {.lex_state = 7, .external_lex_state = 3}, - [1520] = {.lex_state = 0, .external_lex_state = 3}, - [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 7, .external_lex_state = 3}, - [1523] = {.lex_state = 0, .external_lex_state = 3}, - [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 0, .external_lex_state = 3}, - [1526] = {.lex_state = 0, .external_lex_state = 3}, - [1527] = {.lex_state = 10, .external_lex_state = 3}, - [1528] = {.lex_state = 7, .external_lex_state = 3}, - [1529] = {.lex_state = 17, .external_lex_state = 3}, - [1530] = {.lex_state = 7, .external_lex_state = 3}, - [1531] = {.lex_state = 7, .external_lex_state = 3}, - [1532] = {.lex_state = 14, .external_lex_state = 3}, - [1533] = {.lex_state = 7, .external_lex_state = 3}, - [1534] = {.lex_state = 17, .external_lex_state = 3}, - [1535] = {.lex_state = 7, .external_lex_state = 3}, - [1536] = {.lex_state = 7, .external_lex_state = 3}, - [1537] = {.lex_state = 4, .external_lex_state = 3}, - [1538] = {.lex_state = 7, .external_lex_state = 3}, - [1539] = {.lex_state = 7, .external_lex_state = 3}, - [1540] = {.lex_state = 7, .external_lex_state = 3}, - [1541] = {.lex_state = 4, .external_lex_state = 3}, - [1542] = {.lex_state = 17, .external_lex_state = 3}, - [1543] = {.lex_state = 7, .external_lex_state = 3}, - [1544] = {.lex_state = 7, .external_lex_state = 3}, - [1545] = {.lex_state = 0, .external_lex_state = 3}, - [1546] = {.lex_state = 17, .external_lex_state = 3}, - [1547] = {.lex_state = 7, .external_lex_state = 3}, - [1548] = {.lex_state = 7, .external_lex_state = 3}, - [1549] = {.lex_state = 10, .external_lex_state = 3}, - [1550] = {.lex_state = 13, .external_lex_state = 3}, - [1551] = {.lex_state = 57, .external_lex_state = 3}, - [1552] = {.lex_state = 10, .external_lex_state = 3}, - [1553] = {.lex_state = 7, .external_lex_state = 3}, - [1554] = {.lex_state = 7, .external_lex_state = 3}, - [1555] = {.lex_state = 7, .external_lex_state = 3}, - [1556] = {.lex_state = 57, .external_lex_state = 3}, - [1557] = {.lex_state = 10, .external_lex_state = 3}, - [1558] = {.lex_state = 17, .external_lex_state = 3}, - [1559] = {.lex_state = 7, .external_lex_state = 3}, - [1560] = {.lex_state = 4, .external_lex_state = 3}, - [1561] = {.lex_state = 0, .external_lex_state = 3}, - [1562] = {.lex_state = 7, .external_lex_state = 3}, - [1563] = {.lex_state = 7, .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 = 17, .external_lex_state = 3}, - [1568] = {.lex_state = 7, .external_lex_state = 3}, - [1569] = {.lex_state = 10, .external_lex_state = 3}, - [1570] = {.lex_state = 7, .external_lex_state = 3}, - [1571] = {.lex_state = 7, .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 = 13, .external_lex_state = 3}, - [1576] = {.lex_state = 17, .external_lex_state = 3}, - [1577] = {.lex_state = 10, .external_lex_state = 3}, - [1578] = {.lex_state = 7, .external_lex_state = 3}, - [1579] = {.lex_state = 0, .external_lex_state = 3}, - [1580] = {.lex_state = 17, .external_lex_state = 3}, - [1581] = {.lex_state = 7, .external_lex_state = 3}, - [1582] = {.lex_state = 7, .external_lex_state = 3}, - [1583] = {.lex_state = 7, .external_lex_state = 3}, - [1584] = {.lex_state = 17, .external_lex_state = 3}, - [1585] = {.lex_state = 17, .external_lex_state = 3}, - [1586] = {.lex_state = 7, .external_lex_state = 3}, - [1587] = {.lex_state = 7, .external_lex_state = 3}, - [1588] = {.lex_state = 0, .external_lex_state = 3}, - [1589] = {.lex_state = 7, .external_lex_state = 3}, - [1590] = {.lex_state = 7, .external_lex_state = 3}, - [1591] = {.lex_state = 7, .external_lex_state = 3}, - [1592] = {.lex_state = 7, .external_lex_state = 3}, - [1593] = {.lex_state = 7, .external_lex_state = 3}, - [1594] = {.lex_state = 7, .external_lex_state = 3}, - [1595] = {.lex_state = 7, .external_lex_state = 3}, - [1596] = {.lex_state = 7, .external_lex_state = 3}, - [1597] = {.lex_state = 17, .external_lex_state = 3}, - [1598] = {.lex_state = 0, .external_lex_state = 3}, - [1599] = {.lex_state = 0, .external_lex_state = 3}, - [1600] = {.lex_state = 7, .external_lex_state = 3}, - [1601] = {.lex_state = 7, .external_lex_state = 3}, - [1602] = {.lex_state = 7, .external_lex_state = 3}, - [1603] = {.lex_state = 7, .external_lex_state = 3}, - [1604] = {.lex_state = 7, .external_lex_state = 3}, - [1605] = {.lex_state = 17, .external_lex_state = 3}, - [1606] = {.lex_state = 7, .external_lex_state = 3}, - [1607] = {.lex_state = 17, .external_lex_state = 3}, - [1608] = {.lex_state = 17, .external_lex_state = 3}, - [1609] = {.lex_state = 7, .external_lex_state = 3}, - [1610] = {.lex_state = 7, .external_lex_state = 3}, - [1611] = {.lex_state = 17, .external_lex_state = 3}, - [1612] = {.lex_state = 7, .external_lex_state = 3}, - [1613] = {.lex_state = 7, .external_lex_state = 3}, - [1614] = {.lex_state = 0, .external_lex_state = 3}, - [1615] = {.lex_state = 7, .external_lex_state = 3}, - [1616] = {.lex_state = 0, .external_lex_state = 3}, - [1617] = {.lex_state = 7, .external_lex_state = 3}, - [1618] = {.lex_state = 7, .external_lex_state = 3}, - [1619] = {.lex_state = 17, .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 = 7, .external_lex_state = 3}, - [1624] = {.lex_state = 17, .external_lex_state = 3}, - [1625] = {.lex_state = 17, .external_lex_state = 3}, - [1626] = {.lex_state = 7, .external_lex_state = 3}, - [1627] = {.lex_state = 7, .external_lex_state = 3}, - [1628] = {.lex_state = 57, .external_lex_state = 3}, - [1629] = {.lex_state = 17, .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 = 0, .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}, - [1638] = {.lex_state = 7, .external_lex_state = 3}, - [1639] = {.lex_state = 7, .external_lex_state = 3}, - [1640] = {.lex_state = 7, .external_lex_state = 3}, - [1641] = {.lex_state = 7, .external_lex_state = 3}, - [1642] = {.lex_state = 0, .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 = 7, .external_lex_state = 3}, - [1647] = {.lex_state = 7, .external_lex_state = 3}, - [1648] = {.lex_state = 7, .external_lex_state = 3}, - [1649] = {.lex_state = 7, .external_lex_state = 3}, - [1650] = {.lex_state = 17, .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 = 7, .external_lex_state = 3}, - [1655] = {.lex_state = 7, .external_lex_state = 3}, - [1656] = {.lex_state = 7, .external_lex_state = 3}, - [1657] = {.lex_state = 57, .external_lex_state = 3}, - [1658] = {.lex_state = 57, .external_lex_state = 3}, - [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 7, .external_lex_state = 3}, - [1661] = {.lex_state = 57, .external_lex_state = 3}, - [1662] = {.lex_state = 7, .external_lex_state = 3}, - [1663] = {.lex_state = 7, .external_lex_state = 3}, - [1664] = {.lex_state = 57, .external_lex_state = 3}, - [1665] = {.lex_state = 17, .external_lex_state = 3}, - [1666] = {.lex_state = 57, .external_lex_state = 3}, - [1667] = {.lex_state = 57, .external_lex_state = 3}, - [1668] = {.lex_state = 57, .external_lex_state = 3}, - [1669] = {.lex_state = 18, .external_lex_state = 3}, - [1670] = {.lex_state = 57, .external_lex_state = 3}, - [1671] = {.lex_state = 7, .external_lex_state = 3}, - [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 7, .external_lex_state = 3}, - [1674] = {.lex_state = 57, .external_lex_state = 3}, - [1675] = {.lex_state = 7, .external_lex_state = 3}, - [1676] = {.lex_state = 4, .external_lex_state = 4}, - [1677] = {.lex_state = 18, .external_lex_state = 3}, - [1678] = {.lex_state = 17, .external_lex_state = 3}, - [1679] = {.lex_state = 0, .external_lex_state = 3}, - [1680] = {.lex_state = 7, .external_lex_state = 3}, - [1681] = {.lex_state = 17, .external_lex_state = 3}, - [1682] = {.lex_state = 4, .external_lex_state = 4}, - [1683] = {.lex_state = 4, .external_lex_state = 4}, - [1684] = {.lex_state = 7, .external_lex_state = 3}, - [1685] = {.lex_state = 57, .external_lex_state = 3}, - [1686] = {.lex_state = 18, .external_lex_state = 3}, - [1687] = {.lex_state = 7, .external_lex_state = 3}, - [1688] = {.lex_state = 18, .external_lex_state = 3}, - [1689] = {.lex_state = 17, .external_lex_state = 3}, - [1690] = {.lex_state = 0, .external_lex_state = 3}, - [1691] = {.lex_state = 0, .external_lex_state = 3}, - [1692] = {.lex_state = 7, .external_lex_state = 3}, - [1693] = {.lex_state = 7, .external_lex_state = 3}, - [1694] = {.lex_state = 17, .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 = 17, .external_lex_state = 3}, - [1699] = {.lex_state = 57, .external_lex_state = 3}, - [1700] = {.lex_state = 7, .external_lex_state = 3}, - [1701] = {.lex_state = 17, .external_lex_state = 3}, - [1702] = {.lex_state = 7, .external_lex_state = 3}, - [1703] = {.lex_state = 0, .external_lex_state = 3}, - [1704] = {.lex_state = 4, .external_lex_state = 4}, - [1705] = {.lex_state = 57, .external_lex_state = 3}, - [1706] = {.lex_state = 7, .external_lex_state = 3}, - [1707] = {.lex_state = 0, .external_lex_state = 3}, - [1708] = {.lex_state = 4, .external_lex_state = 4}, - [1709] = {.lex_state = 57, .external_lex_state = 3}, - [1710] = {.lex_state = 57, .external_lex_state = 3}, - [1711] = {.lex_state = 0, .external_lex_state = 3}, - [1712] = {.lex_state = 17, .external_lex_state = 3}, - [1713] = {.lex_state = 7, .external_lex_state = 3}, - [1714] = {.lex_state = 57, .external_lex_state = 3}, - [1715] = {.lex_state = 0, .external_lex_state = 3}, - [1716] = {.lex_state = 7, .external_lex_state = 3}, - [1717] = {.lex_state = 0, .external_lex_state = 3}, - [1718] = {.lex_state = 57, .external_lex_state = 3}, - [1719] = {.lex_state = 0, .external_lex_state = 3}, - [1720] = {.lex_state = 57, .external_lex_state = 3}, - [1721] = {.lex_state = 17, .external_lex_state = 3}, - [1722] = {.lex_state = 57, .external_lex_state = 3}, - [1723] = {.lex_state = 57, .external_lex_state = 3}, - [1724] = {.lex_state = 7, .external_lex_state = 3}, - [1725] = {.lex_state = 4, .external_lex_state = 4}, - [1726] = {.lex_state = 57, .external_lex_state = 3}, - [1727] = {.lex_state = 7, .external_lex_state = 3}, - [1728] = {.lex_state = 57, .external_lex_state = 3}, - [1729] = {.lex_state = 7, .external_lex_state = 3}, - [1730] = {.lex_state = 0, .external_lex_state = 3}, - [1731] = {.lex_state = 57, .external_lex_state = 3}, - [1732] = {.lex_state = 17, .external_lex_state = 3}, - [1733] = {.lex_state = 0, .external_lex_state = 3}, - [1734] = {.lex_state = 7, .external_lex_state = 3}, - [1735] = {.lex_state = 57, .external_lex_state = 3}, - [1736] = {.lex_state = 57, .external_lex_state = 3}, - [1737] = {.lex_state = 57, .external_lex_state = 3}, - [1738] = {.lex_state = 7, .external_lex_state = 3}, - [1739] = {.lex_state = 57, .external_lex_state = 3}, - [1740] = {.lex_state = 7, .external_lex_state = 3}, - [1741] = {.lex_state = 17, .external_lex_state = 3}, - [1742] = {.lex_state = 4, .external_lex_state = 4}, - [1743] = {.lex_state = 7, .external_lex_state = 3}, - [1744] = {.lex_state = 57, .external_lex_state = 3}, - [1745] = {.lex_state = 57, .external_lex_state = 3}, - [1746] = {.lex_state = 0, .external_lex_state = 3}, - [1747] = {.lex_state = 0, .external_lex_state = 3}, - [1748] = {.lex_state = 0, .external_lex_state = 3}, - [1749] = {.lex_state = 57, .external_lex_state = 3}, - [1750] = {.lex_state = 57, .external_lex_state = 3}, - [1751] = {.lex_state = 57, .external_lex_state = 3}, - [1752] = {.lex_state = 0, .external_lex_state = 3}, - [1753] = {.lex_state = 0, .external_lex_state = 3}, - [1754] = {.lex_state = 57, .external_lex_state = 3}, - [1755] = {.lex_state = 0, .external_lex_state = 3}, - [1756] = {.lex_state = 10, .external_lex_state = 3}, - [1757] = {.lex_state = 7, .external_lex_state = 3}, - [1758] = {.lex_state = 0, .external_lex_state = 3}, - [1759] = {.lex_state = 0, .external_lex_state = 3}, - [1760] = {.lex_state = 0, .external_lex_state = 3}, - [1761] = {.lex_state = 0, .external_lex_state = 3}, - [1762] = {.lex_state = 7, .external_lex_state = 3}, - [1763] = {.lex_state = 0, .external_lex_state = 3}, - [1764] = {.lex_state = 0, .external_lex_state = 3}, - [1765] = {.lex_state = 0, .external_lex_state = 3}, - [1766] = {.lex_state = 0, .external_lex_state = 3}, - [1767] = {.lex_state = 57, .external_lex_state = 3}, - [1768] = {.lex_state = 7, .external_lex_state = 3}, - [1769] = {.lex_state = 10, .external_lex_state = 3}, - [1770] = {.lex_state = 0, .external_lex_state = 3}, - [1771] = {.lex_state = 0, .external_lex_state = 3}, - [1772] = {.lex_state = 0, .external_lex_state = 3}, - [1773] = {.lex_state = 0, .external_lex_state = 3}, - [1774] = {.lex_state = 57, .external_lex_state = 3}, - [1775] = {.lex_state = 0, .external_lex_state = 3}, - [1776] = {.lex_state = 0, .external_lex_state = 3}, - [1777] = {.lex_state = 0, .external_lex_state = 3}, - [1778] = {.lex_state = 3, .external_lex_state = 3}, - [1779] = {.lex_state = 0, .external_lex_state = 3}, - [1780] = {.lex_state = 0, .external_lex_state = 3}, - [1781] = {.lex_state = 3, .external_lex_state = 3}, - [1782] = {.lex_state = 3, .external_lex_state = 3}, - [1783] = {.lex_state = 3, .external_lex_state = 3}, - [1784] = {.lex_state = 17, .external_lex_state = 3}, - [1785] = {.lex_state = 57, .external_lex_state = 3}, - [1786] = {.lex_state = 0, .external_lex_state = 3}, - [1787] = {.lex_state = 7, .external_lex_state = 3}, - [1788] = {.lex_state = 0, .external_lex_state = 3}, - [1789] = {.lex_state = 0, .external_lex_state = 3}, - [1790] = {.lex_state = 57, .external_lex_state = 3}, - [1791] = {.lex_state = 7, .external_lex_state = 3}, - [1792] = {.lex_state = 3, .external_lex_state = 3}, - [1793] = {.lex_state = 0, .external_lex_state = 3}, - [1794] = {.lex_state = 0, .external_lex_state = 3}, - [1795] = {.lex_state = 0, .external_lex_state = 3}, - [1796] = {.lex_state = 7, .external_lex_state = 3}, - [1797] = {.lex_state = 57, .external_lex_state = 3}, - [1798] = {.lex_state = 4, .external_lex_state = 3}, - [1799] = {.lex_state = 57, .external_lex_state = 3}, - [1800] = {.lex_state = 10, .external_lex_state = 3}, - [1801] = {.lex_state = 7, .external_lex_state = 3}, - [1802] = {.lex_state = 0, .external_lex_state = 3}, - [1803] = {.lex_state = 7, .external_lex_state = 3}, - [1804] = {.lex_state = 57, .external_lex_state = 3}, - [1805] = {.lex_state = 0, .external_lex_state = 3}, - [1806] = {.lex_state = 57, .external_lex_state = 3}, - [1807] = {.lex_state = 0, .external_lex_state = 3}, - [1808] = {.lex_state = 3, .external_lex_state = 3}, - [1809] = {.lex_state = 0, .external_lex_state = 3}, - [1810] = {.lex_state = 0, .external_lex_state = 3}, - [1811] = {.lex_state = 7, .external_lex_state = 3}, - [1812] = {.lex_state = 3, .external_lex_state = 3}, - [1813] = {.lex_state = 0, .external_lex_state = 3}, - [1814] = {.lex_state = 0, .external_lex_state = 3}, - [1815] = {.lex_state = 7, .external_lex_state = 3}, - [1816] = {.lex_state = 7, .external_lex_state = 3}, - [1817] = {.lex_state = 57, .external_lex_state = 3}, - [1818] = {.lex_state = 0, .external_lex_state = 3}, - [1819] = {.lex_state = 10, .external_lex_state = 3}, - [1820] = {.lex_state = 0, .external_lex_state = 3}, - [1821] = {.lex_state = 7, .external_lex_state = 3}, - [1822] = {.lex_state = 10, .external_lex_state = 3}, - [1823] = {.lex_state = 0, .external_lex_state = 3}, - [1824] = {.lex_state = 0, .external_lex_state = 3}, - [1825] = {.lex_state = 0, .external_lex_state = 3}, - [1826] = {.lex_state = 0, .external_lex_state = 3}, - [1827] = {.lex_state = 7, .external_lex_state = 3}, - [1828] = {.lex_state = 57, .external_lex_state = 3}, - [1829] = {.lex_state = 0, .external_lex_state = 3}, - [1830] = {.lex_state = 0, .external_lex_state = 3}, - [1831] = {.lex_state = 0, .external_lex_state = 3}, - [1832] = {.lex_state = 0, .external_lex_state = 3}, - [1833] = {.lex_state = 0, .external_lex_state = 3}, - [1834] = {.lex_state = 7, .external_lex_state = 3}, - [1835] = {.lex_state = 0, .external_lex_state = 3}, - [1836] = {.lex_state = 0, .external_lex_state = 3}, - [1837] = {.lex_state = 0, .external_lex_state = 3}, - [1838] = {.lex_state = 57, .external_lex_state = 3}, - [1839] = {.lex_state = 0, .external_lex_state = 3}, - [1840] = {.lex_state = 7, .external_lex_state = 3}, - [1841] = {.lex_state = 3, .external_lex_state = 3}, - [1842] = {.lex_state = 3, .external_lex_state = 3}, - [1843] = {.lex_state = 57, .external_lex_state = 3}, - [1844] = {.lex_state = 0, .external_lex_state = 3}, - [1845] = {.lex_state = 0, .external_lex_state = 3}, - [1846] = {.lex_state = 0, .external_lex_state = 3}, - [1847] = {.lex_state = 3, .external_lex_state = 3}, - [1848] = {.lex_state = 3, .external_lex_state = 3}, - [1849] = {.lex_state = 0, .external_lex_state = 3}, - [1850] = {.lex_state = 0, .external_lex_state = 3}, - [1851] = {.lex_state = 57, .external_lex_state = 3}, - [1852] = {.lex_state = 3, .external_lex_state = 3}, - [1853] = {.lex_state = 0, .external_lex_state = 3}, - [1854] = {.lex_state = 10, .external_lex_state = 3}, - [1855] = {.lex_state = 10, .external_lex_state = 3}, - [1856] = {.lex_state = 3, .external_lex_state = 3}, - [1857] = {.lex_state = 3, .external_lex_state = 3}, - [1858] = {.lex_state = 0, .external_lex_state = 3}, - [1859] = {.lex_state = 0, .external_lex_state = 3}, - [1860] = {.lex_state = 57, .external_lex_state = 3}, - [1861] = {.lex_state = 57, .external_lex_state = 3}, - [1862] = {.lex_state = 0, .external_lex_state = 3}, - [1863] = {.lex_state = 0, .external_lex_state = 3}, - [1864] = {.lex_state = 0, .external_lex_state = 3}, - [1865] = {.lex_state = 0, .external_lex_state = 3}, - [1866] = {.lex_state = 0, .external_lex_state = 3}, - [1867] = {.lex_state = 57, .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 = 0, .external_lex_state = 3}, - [1873] = {.lex_state = 0, .external_lex_state = 3}, - [1874] = {.lex_state = 57, .external_lex_state = 3}, - [1875] = {.lex_state = 3, .external_lex_state = 3}, - [1876] = {.lex_state = 0, .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 = 3, .external_lex_state = 3}, - [1882] = {.lex_state = 3, .external_lex_state = 3}, - [1883] = {.lex_state = 3, .external_lex_state = 3}, - [1884] = {.lex_state = 57, .external_lex_state = 3}, - [1885] = {.lex_state = 0, .external_lex_state = 3}, - [1886] = {.lex_state = 57, .external_lex_state = 3}, - [1887] = {.lex_state = 0, .external_lex_state = 3}, - [1888] = {.lex_state = 0, .external_lex_state = 3}, - [1889] = {.lex_state = 0, .external_lex_state = 3}, - [1890] = {.lex_state = 4, .external_lex_state = 3}, - [1891] = {.lex_state = 3, .external_lex_state = 3}, - [1892] = {.lex_state = 0, .external_lex_state = 3}, - [1893] = {.lex_state = 57, .external_lex_state = 3}, - [1894] = {.lex_state = 0, .external_lex_state = 3}, - [1895] = {.lex_state = 3, .external_lex_state = 3}, - [1896] = {.lex_state = 0, .external_lex_state = 3}, - [1897] = {.lex_state = 57, .external_lex_state = 3}, - [1898] = {.lex_state = 0, .external_lex_state = 3}, - [1899] = {.lex_state = 57, .external_lex_state = 3}, - [1900] = {.lex_state = 57, .external_lex_state = 3}, - [1901] = {.lex_state = 57, .external_lex_state = 3}, - [1902] = {.lex_state = 7, .external_lex_state = 3}, - [1903] = {.lex_state = 57, .external_lex_state = 3}, - [1904] = {.lex_state = 0, .external_lex_state = 3}, - [1905] = {.lex_state = 0, .external_lex_state = 3}, - [1906] = {.lex_state = 0, .external_lex_state = 3}, - [1907] = {.lex_state = 57, .external_lex_state = 3}, - [1908] = {.lex_state = 0, .external_lex_state = 3}, - [1909] = {.lex_state = 0, .external_lex_state = 3}, - [1910] = {.lex_state = 57, .external_lex_state = 3}, - [1911] = {.lex_state = 0, .external_lex_state = 3}, - [1912] = {.lex_state = 7, .external_lex_state = 3}, - [1913] = {.lex_state = 57, .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 = 0, .external_lex_state = 3}, - [1923] = {.lex_state = 57, .external_lex_state = 3}, - [1924] = {.lex_state = 57, .external_lex_state = 3}, - [1925] = {.lex_state = 0, .external_lex_state = 3}, - [1926] = {.lex_state = 0, .external_lex_state = 3}, - [1927] = {.lex_state = 57, .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 = 57, .external_lex_state = 3}, - [1932] = {.lex_state = 0, .external_lex_state = 3}, - [1933] = {.lex_state = 0, .external_lex_state = 3}, - [1934] = {.lex_state = 0, .external_lex_state = 3}, - [1935] = {.lex_state = 0, .external_lex_state = 3}, - [1936] = {.lex_state = 57, .external_lex_state = 3}, - [1937] = {.lex_state = 7, .external_lex_state = 3}, - [1938] = {.lex_state = 10, .external_lex_state = 3}, - [1939] = {.lex_state = 7, .external_lex_state = 3}, - [1940] = {.lex_state = 57, .external_lex_state = 3}, - [1941] = {.lex_state = 57, .external_lex_state = 3}, - [1942] = {.lex_state = 0, .external_lex_state = 3}, - [1943] = {.lex_state = 0, .external_lex_state = 3}, - [1944] = {.lex_state = 57, .external_lex_state = 3}, - [1945] = {.lex_state = 57, .external_lex_state = 3}, - [1946] = {.lex_state = 57, .external_lex_state = 3}, - [1947] = {.lex_state = 57, .external_lex_state = 3}, - [1948] = {.lex_state = 0, .external_lex_state = 3}, - [1949] = {.lex_state = 0, .external_lex_state = 3}, - [1950] = {.lex_state = 0, .external_lex_state = 3}, - [1951] = {.lex_state = 0, .external_lex_state = 3}, - [1952] = {.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 = 57, .external_lex_state = 3}, - [1956] = {.lex_state = 0, .external_lex_state = 3}, - [1957] = {.lex_state = 57, .external_lex_state = 3}, - [1958] = {.lex_state = 57, .external_lex_state = 3}, - [1959] = {.lex_state = 57, .external_lex_state = 3}, - [1960] = {.lex_state = 57, .external_lex_state = 3}, - [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 0, .external_lex_state = 3}, - [1963] = {.lex_state = 57, .external_lex_state = 3}, - [1964] = {.lex_state = 57, .external_lex_state = 3}, - [1965] = {.lex_state = 57, .external_lex_state = 3}, - [1966] = {.lex_state = 0, .external_lex_state = 3}, - [1967] = {.lex_state = 0, .external_lex_state = 3}, - [1968] = {.lex_state = 10, .external_lex_state = 3}, - [1969] = {.lex_state = 0, .external_lex_state = 3}, - [1970] = {.lex_state = 0, .external_lex_state = 3}, - [1971] = {.lex_state = 57, .external_lex_state = 3}, - [1972] = {.lex_state = 10, .external_lex_state = 3}, - [1973] = {.lex_state = 7, .external_lex_state = 3}, - [1974] = {.lex_state = 0, .external_lex_state = 3}, - [1975] = {.lex_state = 0, .external_lex_state = 3}, - [1976] = {.lex_state = 57, .external_lex_state = 3}, - [1977] = {.lex_state = 57, .external_lex_state = 3}, - [1978] = {.lex_state = 57, .external_lex_state = 3}, - [1979] = {.lex_state = 0, .external_lex_state = 3}, - [1980] = {.lex_state = 0, .external_lex_state = 3}, - [1981] = {.lex_state = 57, .external_lex_state = 3}, - [1982] = {.lex_state = 7, .external_lex_state = 3}, - [1983] = {.lex_state = 7, .external_lex_state = 3}, - [1984] = {.lex_state = 57, .external_lex_state = 3}, - [1985] = {.lex_state = 57, .external_lex_state = 3}, - [1986] = {.lex_state = 57, .external_lex_state = 3}, - [1987] = {.lex_state = 0, .external_lex_state = 3}, - [1988] = {.lex_state = 0, .external_lex_state = 3}, - [1989] = {.lex_state = 7, .external_lex_state = 3}, - [1990] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [1996] = {.lex_state = 0, .external_lex_state = 3}, - [1997] = {.lex_state = 17, .external_lex_state = 3}, - [1998] = {.lex_state = 0, .external_lex_state = 3}, - [1999] = {.lex_state = 0, .external_lex_state = 3}, - [2000] = {.lex_state = 7, .external_lex_state = 3}, - [2001] = {.lex_state = 0, .external_lex_state = 3}, - [2002] = {.lex_state = 0, .external_lex_state = 3}, - [2003] = {.lex_state = 57, .external_lex_state = 3}, - [2004] = {.lex_state = 0, .external_lex_state = 3}, - [2005] = {.lex_state = 7, .external_lex_state = 3}, - [2006] = {.lex_state = 0, .external_lex_state = 3}, - [2007] = {.lex_state = 7, .external_lex_state = 3}, - [2008] = {.lex_state = 7, .external_lex_state = 3}, - [2009] = {.lex_state = 7, .external_lex_state = 3}, - [2010] = {.lex_state = 0, .external_lex_state = 3}, - [2011] = {.lex_state = 0, .external_lex_state = 3}, - [2012] = {.lex_state = 57, .external_lex_state = 3}, - [2013] = {.lex_state = 0, .external_lex_state = 3}, - [2014] = {.lex_state = 0, .external_lex_state = 3}, - [2015] = {.lex_state = 0, .external_lex_state = 3}, - [2016] = {.lex_state = 0, .external_lex_state = 3}, - [2017] = {.lex_state = 7, .external_lex_state = 3}, - [2018] = {.lex_state = 0, .external_lex_state = 3}, - [2019] = {.lex_state = 57, .external_lex_state = 3}, - [2020] = {.lex_state = 57, .external_lex_state = 3}, - [2021] = {.lex_state = 7, .external_lex_state = 3}, - [2022] = {.lex_state = 0, .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 = 57, .external_lex_state = 3}, - [2027] = {.lex_state = 7, .external_lex_state = 3}, - [2028] = {.lex_state = 57, .external_lex_state = 3}, - [2029] = {.lex_state = 7, .external_lex_state = 3}, - [2030] = {.lex_state = 17, .external_lex_state = 3}, - [2031] = {.lex_state = 17, .external_lex_state = 3}, - [2032] = {.lex_state = 7, .external_lex_state = 3}, - [2033] = {.lex_state = 57, .external_lex_state = 3}, - [2034] = {.lex_state = 0, .external_lex_state = 3}, - [2035] = {.lex_state = 0, .external_lex_state = 3}, - [2036] = {.lex_state = 17, .external_lex_state = 3}, - [2037] = {.lex_state = 0, .external_lex_state = 3}, - [2038] = {.lex_state = 57, .external_lex_state = 3}, - [2039] = {.lex_state = 0, .external_lex_state = 3}, - [2040] = {.lex_state = 57, .external_lex_state = 3}, - [2041] = {.lex_state = 7, .external_lex_state = 3}, - [2042] = {.lex_state = 17, .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 = 0, .external_lex_state = 3}, - [2047] = {.lex_state = 57, .external_lex_state = 3}, - [2048] = {.lex_state = 0, .external_lex_state = 3}, - [2049] = {.lex_state = 0, .external_lex_state = 3}, - [2050] = {.lex_state = 57, .external_lex_state = 3}, - [2051] = {.lex_state = 0, .external_lex_state = 3}, - [2052] = {.lex_state = 0, .external_lex_state = 3}, - [2053] = {.lex_state = 57, .external_lex_state = 3}, - [2054] = {.lex_state = 7, .external_lex_state = 3}, - [2055] = {.lex_state = 57, .external_lex_state = 3}, - [2056] = {.lex_state = 0, .external_lex_state = 3}, - [2057] = {.lex_state = 57, .external_lex_state = 3}, - [2058] = {.lex_state = 7, .external_lex_state = 3}, - [2059] = {.lex_state = 0, .external_lex_state = 3}, - [2060] = {.lex_state = 57, .external_lex_state = 3}, - [2061] = {.lex_state = 17, .external_lex_state = 3}, - [2062] = {.lex_state = 0, .external_lex_state = 3}, - [2063] = {.lex_state = 57, .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 = 57, .external_lex_state = 3}, - [2068] = {.lex_state = 0, .external_lex_state = 3}, - [2069] = {.lex_state = 0, .external_lex_state = 3}, - [2070] = {.lex_state = 0, .external_lex_state = 3}, - [2071] = {.lex_state = 0, .external_lex_state = 3}, - [2072] = {.lex_state = 4, .external_lex_state = 3}, - [2073] = {.lex_state = 0, .external_lex_state = 3}, - [2074] = {.lex_state = 0, .external_lex_state = 3}, - [2075] = {.lex_state = 57, .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 = 0, .external_lex_state = 3}, - [2080] = {.lex_state = 0, .external_lex_state = 3}, - [2081] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [2088] = {.lex_state = 57, .external_lex_state = 3}, - [2089] = {.lex_state = 7, .external_lex_state = 3}, - [2090] = {.lex_state = 0, .external_lex_state = 3}, - [2091] = {.lex_state = 0, .external_lex_state = 3}, - [2092] = {.lex_state = 0, .external_lex_state = 3}, - [2093] = {.lex_state = 0, .external_lex_state = 3}, - [2094] = {.lex_state = 7, .external_lex_state = 3}, - [2095] = {.lex_state = 57, .external_lex_state = 3}, - [2096] = {.lex_state = 0, .external_lex_state = 3}, - [2097] = {.lex_state = 0, .external_lex_state = 3}, - [2098] = {.lex_state = 0, .external_lex_state = 3}, - [2099] = {.lex_state = 0, .external_lex_state = 3}, - [2100] = {.lex_state = 57, .external_lex_state = 3}, - [2101] = {.lex_state = 0, .external_lex_state = 3}, - [2102] = {.lex_state = 0, .external_lex_state = 3}, - [2103] = {.lex_state = 0, .external_lex_state = 3}, - [2104] = {.lex_state = 0, .external_lex_state = 3}, - [2105] = {.lex_state = 0, .external_lex_state = 3}, - [2106] = {.lex_state = 0, .external_lex_state = 3}, - [2107] = {.lex_state = 0, .external_lex_state = 3}, - [2108] = {.lex_state = 57, .external_lex_state = 3}, - [2109] = {.lex_state = 0, .external_lex_state = 3}, - [2110] = {.lex_state = 0, .external_lex_state = 3}, - [2111] = {.lex_state = 7, .external_lex_state = 3}, - [2112] = {.lex_state = 0, .external_lex_state = 3}, - [2113] = {.lex_state = 0, .external_lex_state = 3}, - [2114] = {.lex_state = 0, .external_lex_state = 3}, - [2115] = {.lex_state = 0, .external_lex_state = 3}, - [2116] = {.lex_state = 0, .external_lex_state = 3}, - [2117] = {.lex_state = 7, .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}, - [2123] = {.lex_state = 7, .external_lex_state = 3}, - [2124] = {.lex_state = 0, .external_lex_state = 3}, - [2125] = {.lex_state = 57, .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}, - [2131] = {.lex_state = 0, .external_lex_state = 3}, - [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 0, .external_lex_state = 3}, - [2134] = {.lex_state = 0, .external_lex_state = 3}, - [2135] = {.lex_state = 0, .external_lex_state = 3}, - [2136] = {.lex_state = 0, .external_lex_state = 3}, - [2137] = {.lex_state = 0, .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}, - [2141] = {.lex_state = 0, .external_lex_state = 3}, - [2142] = {.lex_state = 0, .external_lex_state = 3}, - [2143] = {.lex_state = 57, .external_lex_state = 3}, - [2144] = {.lex_state = 0, .external_lex_state = 3}, - [2145] = {.lex_state = 7, .external_lex_state = 3}, - [2146] = {.lex_state = 0, .external_lex_state = 3}, - [2147] = {.lex_state = 0, .external_lex_state = 3}, - [2148] = {.lex_state = 0, .external_lex_state = 3}, - [2149] = {.lex_state = 0, .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}, - [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 = 0, .external_lex_state = 3}, - [2157] = {.lex_state = 57, .external_lex_state = 3}, - [2158] = {.lex_state = 57, .external_lex_state = 3}, - [2159] = {.lex_state = 57, .external_lex_state = 3}, - [2160] = {.lex_state = 0, .external_lex_state = 3}, - [2161] = {.lex_state = 7, .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}, - [2167] = {.lex_state = 0, .external_lex_state = 3}, - [2168] = {.lex_state = 57, .external_lex_state = 3}, - [2169] = {.lex_state = 0, .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 = 7, .external_lex_state = 3}, - [2174] = {.lex_state = 57, .external_lex_state = 3}, - [2175] = {.lex_state = 0, .external_lex_state = 3}, - [2176] = {.lex_state = 10, .external_lex_state = 3}, - [2177] = {.lex_state = 0, .external_lex_state = 3}, - [2178] = {.lex_state = 0, .external_lex_state = 3}, - [2179] = {.lex_state = 0, .external_lex_state = 5}, - [2180] = {.lex_state = 4, .external_lex_state = 3}, - [2181] = {.lex_state = 0, .external_lex_state = 3}, - [2182] = {.lex_state = 0, .external_lex_state = 3}, - [2183] = {.lex_state = 0, .external_lex_state = 3}, - [2184] = {.lex_state = 7, .external_lex_state = 3}, - [2185] = {.lex_state = 7, .external_lex_state = 3}, - [2186] = {.lex_state = 7, .external_lex_state = 3}, - [2187] = {.lex_state = 0, .external_lex_state = 3}, - [2188] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, - [2193] = {.lex_state = 7, .external_lex_state = 3}, - [2194] = {.lex_state = 7, .external_lex_state = 3}, - [2195] = {.lex_state = 0, .external_lex_state = 3}, - [2196] = {.lex_state = 7, .external_lex_state = 3}, - [2197] = {.lex_state = 7, .external_lex_state = 3}, - [2198] = {.lex_state = 0, .external_lex_state = 3}, - [2199] = {.lex_state = 7, .external_lex_state = 3}, - [2200] = {.lex_state = 57, .external_lex_state = 3}, - [2201] = {.lex_state = 7, .external_lex_state = 3}, - [2202] = {.lex_state = 7, .external_lex_state = 3}, - [2203] = {.lex_state = 0, .external_lex_state = 3}, - [2204] = {.lex_state = 57, .external_lex_state = 3}, - [2205] = {.lex_state = 7, .external_lex_state = 3}, - [2206] = {.lex_state = 7, .external_lex_state = 3}, - [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 7, .external_lex_state = 3}, - [2209] = {.lex_state = 0, .external_lex_state = 3}, - [2210] = {.lex_state = 7, .external_lex_state = 3}, - [2211] = {.lex_state = 10, .external_lex_state = 3}, - [2212] = {.lex_state = 7, .external_lex_state = 3}, - [2213] = {.lex_state = 7, .external_lex_state = 3}, - [2214] = {.lex_state = 7, .external_lex_state = 3}, - [2215] = {.lex_state = 7, .external_lex_state = 3}, - [2216] = {.lex_state = 7, .external_lex_state = 3}, - [2217] = {.lex_state = 0, .external_lex_state = 3}, - [2218] = {.lex_state = 57, .external_lex_state = 3}, - [2219] = {.lex_state = 7, .external_lex_state = 3}, - [2220] = {.lex_state = 7, .external_lex_state = 3}, - [2221] = {.lex_state = 7, .external_lex_state = 3}, - [2222] = {.lex_state = 0, .external_lex_state = 3}, - [2223] = {.lex_state = 7, .external_lex_state = 3}, - [2224] = {.lex_state = 7, .external_lex_state = 3}, - [2225] = {.lex_state = 7, .external_lex_state = 3}, - [2226] = {.lex_state = 7, .external_lex_state = 3}, - [2227] = {.lex_state = 7, .external_lex_state = 3}, - [2228] = {.lex_state = 0, .external_lex_state = 3}, - [2229] = {.lex_state = 7, .external_lex_state = 3}, - [2230] = {.lex_state = 7, .external_lex_state = 3}, - [2231] = {.lex_state = 7, .external_lex_state = 3}, - [2232] = {.lex_state = 7, .external_lex_state = 3}, - [2233] = {.lex_state = 0, .external_lex_state = 3}, - [2234] = {.lex_state = 0, .external_lex_state = 3}, - [2235] = {.lex_state = 0, .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 = 7, .external_lex_state = 3}, - [2240] = {.lex_state = 7, .external_lex_state = 3}, - [2241] = {.lex_state = 0, .external_lex_state = 3}, - [2242] = {.lex_state = 0, .external_lex_state = 3}, - [2243] = {.lex_state = 7, .external_lex_state = 3}, - [2244] = {.lex_state = 7, .external_lex_state = 3}, - [2245] = {.lex_state = 0, .external_lex_state = 3}, - [2246] = {.lex_state = 7, .external_lex_state = 3}, - [2247] = {.lex_state = 7, .external_lex_state = 3}, - [2248] = {.lex_state = 7, .external_lex_state = 3}, - [2249] = {.lex_state = 7, .external_lex_state = 3}, - [2250] = {.lex_state = 7, .external_lex_state = 3}, - [2251] = {.lex_state = 0, .external_lex_state = 3}, - [2252] = {.lex_state = 7, .external_lex_state = 3}, - [2253] = {.lex_state = 0, .external_lex_state = 3}, - [2254] = {.lex_state = 10, .external_lex_state = 3}, - [2255] = {.lex_state = 0, .external_lex_state = 3}, - [2256] = {.lex_state = 7, .external_lex_state = 3}, - [2257] = {.lex_state = 7, .external_lex_state = 3}, - [2258] = {.lex_state = 0, .external_lex_state = 3}, - [2259] = {.lex_state = 0, .external_lex_state = 3}, - [2260] = {.lex_state = 0, .external_lex_state = 3}, - [2261] = {.lex_state = 7, .external_lex_state = 3}, - [2262] = {.lex_state = 7, .external_lex_state = 3}, - [2263] = {.lex_state = 7, .external_lex_state = 3}, - [2264] = {.lex_state = 0, .external_lex_state = 3}, - [2265] = {.lex_state = 7, .external_lex_state = 3}, - [2266] = {.lex_state = 7, .external_lex_state = 3}, - [2267] = {.lex_state = 10, .external_lex_state = 3}, - [2268] = {.lex_state = 0, .external_lex_state = 3}, - [2269] = {.lex_state = 7, .external_lex_state = 3}, - [2270] = {.lex_state = 0, .external_lex_state = 3}, - [2271] = {.lex_state = 7, .external_lex_state = 3}, - [2272] = {.lex_state = 7, .external_lex_state = 3}, - [2273] = {.lex_state = 7, .external_lex_state = 3}, - [2274] = {.lex_state = 0, .external_lex_state = 3}, - [2275] = {.lex_state = 7, .external_lex_state = 3}, - [2276] = {.lex_state = 7, .external_lex_state = 3}, - [2277] = {.lex_state = 7, .external_lex_state = 3}, - [2278] = {.lex_state = 7, .external_lex_state = 3}, - [2279] = {.lex_state = 10, .external_lex_state = 3}, - [2280] = {.lex_state = 7, .external_lex_state = 3}, - [2281] = {.lex_state = 7, .external_lex_state = 3}, - [2282] = {.lex_state = 0, .external_lex_state = 3}, - [2283] = {.lex_state = 7, .external_lex_state = 3}, - [2284] = {.lex_state = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 0, .external_lex_state = 3}, - [2286] = {.lex_state = 7, .external_lex_state = 3}, - [2287] = {.lex_state = 7, .external_lex_state = 3}, - [2288] = {.lex_state = 7, .external_lex_state = 3}, - [2289] = {.lex_state = 0, .external_lex_state = 3}, - [2290] = {.lex_state = 7, .external_lex_state = 3}, - [2291] = {.lex_state = 0, .external_lex_state = 3}, - [2292] = {.lex_state = 7, .external_lex_state = 3}, - [2293] = {.lex_state = 10, .external_lex_state = 3}, - [2294] = {.lex_state = 7, .external_lex_state = 3}, - [2295] = {.lex_state = 7, .external_lex_state = 3}, - [2296] = {.lex_state = 7, .external_lex_state = 3}, - [2297] = {.lex_state = 7, .external_lex_state = 3}, - [2298] = {.lex_state = 7, .external_lex_state = 3}, - [2299] = {.lex_state = 0, .external_lex_state = 3}, - [2300] = {.lex_state = 0, .external_lex_state = 3}, - [2301] = {.lex_state = 7, .external_lex_state = 3}, - [2302] = {.lex_state = 0, .external_lex_state = 3}, - [2303] = {.lex_state = 0, .external_lex_state = 3}, - [2304] = {.lex_state = 10, .external_lex_state = 3}, - [2305] = {.lex_state = 10, .external_lex_state = 3}, - [2306] = {.lex_state = 7, .external_lex_state = 3}, - [2307] = {.lex_state = 0, .external_lex_state = 3}, - [2308] = {.lex_state = 0, .external_lex_state = 3}, - [2309] = {.lex_state = 0, .external_lex_state = 3}, - [2310] = {.lex_state = 0, .external_lex_state = 3}, - [2311] = {.lex_state = 0, .external_lex_state = 3}, - [2312] = {.lex_state = 7, .external_lex_state = 3}, - [2313] = {.lex_state = 0, .external_lex_state = 3}, - [2314] = {.lex_state = 0, .external_lex_state = 3}, - [2315] = {.lex_state = 0, .external_lex_state = 3}, - [2316] = {.lex_state = 7, .external_lex_state = 3}, - [2317] = {.lex_state = 0, .external_lex_state = 3}, - [2318] = {.lex_state = 0, .external_lex_state = 3}, - [2319] = {.lex_state = 0, .external_lex_state = 3}, - [2320] = {.lex_state = 0, .external_lex_state = 3}, - [2321] = {.lex_state = 7, .external_lex_state = 3}, - [2322] = {.lex_state = 7, .external_lex_state = 3}, - [2323] = {.lex_state = 0, .external_lex_state = 3}, - [2324] = {.lex_state = 0, .external_lex_state = 3}, - [2325] = {.lex_state = 7, .external_lex_state = 3}, - [2326] = {.lex_state = 0, .external_lex_state = 3}, - [2327] = {.lex_state = 57, .external_lex_state = 3}, - [2328] = {.lex_state = 0, .external_lex_state = 3}, - [2329] = {.lex_state = 0, .external_lex_state = 3}, - [2330] = {.lex_state = 7, .external_lex_state = 3}, - [2331] = {.lex_state = 0, .external_lex_state = 3}, - [2332] = {.lex_state = 0, .external_lex_state = 3}, - [2333] = {.lex_state = 0, .external_lex_state = 3}, - [2334] = {.lex_state = 10, .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}, - [2339] = {.lex_state = 7, .external_lex_state = 3}, - [2340] = {.lex_state = 7, .external_lex_state = 3}, - [2341] = {.lex_state = 7, .external_lex_state = 3}, - [2342] = {.lex_state = 0, .external_lex_state = 3}, - [2343] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [2348] = {.lex_state = 0, .external_lex_state = 3}, - [2349] = {.lex_state = 0, .external_lex_state = 3}, - [2350] = {.lex_state = 0, .external_lex_state = 3}, - [2351] = {.lex_state = 0, .external_lex_state = 3}, - [2352] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [2357] = {.lex_state = 10, .external_lex_state = 3}, - [2358] = {.lex_state = 0, .external_lex_state = 3}, - [2359] = {.lex_state = 10, .external_lex_state = 3}, - [2360] = {.lex_state = 0, .external_lex_state = 3}, - [2361] = {.lex_state = 0, .external_lex_state = 3}, - [2362] = {.lex_state = 0, .external_lex_state = 3}, - [2363] = {.lex_state = 0, .external_lex_state = 3}, - [2364] = {.lex_state = 10, .external_lex_state = 3}, - [2365] = {.lex_state = 0, .external_lex_state = 3}, - [2366] = {.lex_state = 0, .external_lex_state = 3}, - [2367] = {.lex_state = 10, .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}, - [2371] = {.lex_state = 7, .external_lex_state = 3}, - [2372] = {.lex_state = 0, .external_lex_state = 3}, - [2373] = {.lex_state = 10, .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}, - [2377] = {.lex_state = 7, .external_lex_state = 3}, - [2378] = {.lex_state = 0, .external_lex_state = 3}, - [2379] = {.lex_state = 10, .external_lex_state = 3}, - [2380] = {.lex_state = 10, .external_lex_state = 3}, - [2381] = {.lex_state = 10, .external_lex_state = 3}, - [2382] = {.lex_state = 10, .external_lex_state = 3}, - [2383] = {.lex_state = 0, .external_lex_state = 3}, - [2384] = {.lex_state = 0, .external_lex_state = 3}, - [2385] = {.lex_state = 7, .external_lex_state = 3}, - [2386] = {.lex_state = 0, .external_lex_state = 3}, - [2387] = {.lex_state = 7, .external_lex_state = 3}, - [2388] = {.lex_state = 10, .external_lex_state = 3}, - [2389] = {.lex_state = 0, .external_lex_state = 3}, - [2390] = {.lex_state = 10, .external_lex_state = 3}, - [2391] = {.lex_state = 0, .external_lex_state = 3}, - [2392] = {.lex_state = 0, .external_lex_state = 3}, - [2393] = {.lex_state = 7, .external_lex_state = 3}, - [2394] = {.lex_state = 0, .external_lex_state = 3}, - [2395] = {.lex_state = 0, .external_lex_state = 3}, - [2396] = {.lex_state = 10, .external_lex_state = 3}, - [2397] = {.lex_state = 7, .external_lex_state = 3}, - [2398] = {.lex_state = 0, .external_lex_state = 3}, - [2399] = {.lex_state = 7, .external_lex_state = 3}, - [2400] = {.lex_state = 0, .external_lex_state = 3}, - [2401] = {.lex_state = 0, .external_lex_state = 3}, - [2402] = {.lex_state = 7, .external_lex_state = 3}, - [2403] = {.lex_state = 0, .external_lex_state = 3}, - [2404] = {.lex_state = 0, .external_lex_state = 3}, - [2405] = {.lex_state = 0, .external_lex_state = 3}, - [2406] = {.lex_state = 7, .external_lex_state = 3}, - [2407] = {.lex_state = 7, .external_lex_state = 3}, - [2408] = {.lex_state = 7, .external_lex_state = 3}, - [2409] = {.lex_state = 0, .external_lex_state = 3}, - [2410] = {.lex_state = 7, .external_lex_state = 3}, - [2411] = {.lex_state = 7, .external_lex_state = 3}, - [2412] = {.lex_state = 7, .external_lex_state = 3}, - [2413] = {.lex_state = 7, .external_lex_state = 3}, - [2414] = {.lex_state = 0, .external_lex_state = 3}, - [2415] = {.lex_state = 7, .external_lex_state = 3}, - [2416] = {.lex_state = 0, .external_lex_state = 3}, - [2417] = {.lex_state = 7, .external_lex_state = 3}, -}; - -enum { - ts_external_token__string_content = 0, - ts_external_token_raw_string_literal = 1, - ts_external_token_float_literal = 2, - ts_external_token_block_comment = 3, -}; - -static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__string_content] = sym__string_content, - [ts_external_token_raw_string_literal] = sym_raw_string_literal, - [ts_external_token_float_literal] = sym_float_literal, - [ts_external_token_block_comment] = sym_block_comment, -}; - -static bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__string_content] = true, - [ts_external_token_raw_string_literal] = true, - [ts_external_token_float_literal] = true, - [ts_external_token_block_comment] = true, - }, - [2] = { - [ts_external_token_raw_string_literal] = true, - [ts_external_token_float_literal] = true, - [ts_external_token_block_comment] = true, - }, - [3] = { - [ts_external_token_block_comment] = true, - }, - [4] = { - [ts_external_token__string_content] = true, - [ts_external_token_block_comment] = true, - }, - [5] = { - [ts_external_token_float_literal] = true, - [ts_external_token_block_comment] = true, - }, -}; - -static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [sym_identifier] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_macro_rules_BANG] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_EQ_GT] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_DOLLAR] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), - [anon_sym_block] = ACTIONS(1), - [anon_sym_expr] = ACTIONS(1), - [anon_sym_ident] = ACTIONS(1), - [anon_sym_item] = ACTIONS(1), - [anon_sym_lifetime] = ACTIONS(1), - [anon_sym_literal] = ACTIONS(1), - [anon_sym_meta] = ACTIONS(1), - [anon_sym_pat] = ACTIONS(1), - [anon_sym_path] = ACTIONS(1), - [anon_sym_stmt] = ACTIONS(1), - [anon_sym_tt] = ACTIONS(1), - [anon_sym_ty] = ACTIONS(1), - [anon_sym_vis] = ACTIONS(1), - [anon_sym_u8] = ACTIONS(1), - [anon_sym_i8] = ACTIONS(1), - [anon_sym_u16] = ACTIONS(1), - [anon_sym_i16] = ACTIONS(1), - [anon_sym_u32] = ACTIONS(1), - [anon_sym_i32] = ACTIONS(1), - [anon_sym_u64] = ACTIONS(1), - [anon_sym_i64] = ACTIONS(1), - [anon_sym_u128] = ACTIONS(1), - [anon_sym_i128] = ACTIONS(1), - [anon_sym_isize] = ACTIONS(1), - [anon_sym_usize] = ACTIONS(1), - [anon_sym_f32] = ACTIONS(1), - [anon_sym_f64] = ACTIONS(1), - [anon_sym_bool] = ACTIONS(1), - [anon_sym_str] = ACTIONS(1), - [anon_sym_char] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), - [anon_sym_as] = ACTIONS(1), - [anon_sym_async] = ACTIONS(1), - [anon_sym_await] = ACTIONS(1), - [anon_sym_break] = ACTIONS(1), - [anon_sym_const] = ACTIONS(1), - [anon_sym_continue] = ACTIONS(1), - [anon_sym_default] = ACTIONS(1), - [anon_sym_enum] = ACTIONS(1), - [anon_sym_fn] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), - [anon_sym_impl] = ACTIONS(1), - [anon_sym_let] = ACTIONS(1), - [anon_sym_loop] = ACTIONS(1), - [anon_sym_match] = ACTIONS(1), - [anon_sym_mod] = ACTIONS(1), - [anon_sym_pub] = ACTIONS(1), - [anon_sym_return] = ACTIONS(1), - [anon_sym_static] = ACTIONS(1), - [anon_sym_struct] = ACTIONS(1), - [anon_sym_trait] = ACTIONS(1), - [anon_sym_type] = ACTIONS(1), - [anon_sym_union] = ACTIONS(1), - [anon_sym_unsafe] = ACTIONS(1), - [anon_sym_use] = ACTIONS(1), - [anon_sym_where] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_extern] = ACTIONS(1), - [anon_sym_ref] = ACTIONS(1), - [anon_sym_DASH_GT] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_COLON_COLON] = ACTIONS(1), - [anon_sym__] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), - [anon_sym_LT2] = ACTIONS(1), - [anon_sym_dyn] = ACTIONS(1), - [sym_mutable_specifier] = ACTIONS(1), - [anon_sym_DOT_DOT] = ACTIONS(1), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_STAR_EQ] = ACTIONS(1), - [anon_sym_SLASH_EQ] = ACTIONS(1), - [anon_sym_PERCENT_EQ] = ACTIONS(1), - [anon_sym_AMP_EQ] = ACTIONS(1), - [anon_sym_PIPE_EQ] = ACTIONS(1), - [anon_sym_CARET_EQ] = ACTIONS(1), - [anon_sym_LT_LT_EQ] = ACTIONS(1), - [anon_sym_GT_GT_EQ] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), - [anon_sym_move] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), - [sym_integer_literal] = ACTIONS(1), - [aux_sym_string_literal_token1] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [sym_char_literal] = ACTIONS(1), - [sym_escape_sequence] = ACTIONS(1), - [anon_sym_true] = ACTIONS(1), - [anon_sym_false] = ACTIONS(1), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1), - [sym_super] = ACTIONS(1), - [sym_crate] = ACTIONS(1), - [sym_metavariable] = ACTIONS(1), - [sym__string_content] = ACTIONS(1), - [sym_raw_string_literal] = ACTIONS(1), - [sym_float_literal] = ACTIONS(1), - [sym_block_comment] = ACTIONS(3), - }, - [1] = { - [sym_source_file] = STATE(2317), - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(5), - [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_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(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [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(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [2] = { - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1126), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [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(103), - [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(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [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(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [3] = { - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1119), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [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(105), - [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(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [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(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(107), - [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_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(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [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(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [5] = { - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1129), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [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(109), - [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(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [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(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [6] = { - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(111), - [sym_identifier] = ACTIONS(113), - [anon_sym_SEMI] = ACTIONS(116), - [anon_sym_macro_rules_BANG] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_u8] = ACTIONS(134), - [anon_sym_i8] = ACTIONS(134), - [anon_sym_u16] = ACTIONS(134), - [anon_sym_i16] = ACTIONS(134), - [anon_sym_u32] = ACTIONS(134), - [anon_sym_i32] = ACTIONS(134), - [anon_sym_u64] = ACTIONS(134), - [anon_sym_i64] = ACTIONS(134), - [anon_sym_u128] = ACTIONS(134), - [anon_sym_i128] = ACTIONS(134), - [anon_sym_isize] = ACTIONS(134), - [anon_sym_usize] = ACTIONS(134), - [anon_sym_f32] = ACTIONS(134), - [anon_sym_f64] = ACTIONS(134), - [anon_sym_bool] = ACTIONS(134), - [anon_sym_str] = ACTIONS(134), - [anon_sym_char] = ACTIONS(134), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_async] = ACTIONS(140), - [anon_sym_break] = ACTIONS(143), - [anon_sym_const] = ACTIONS(146), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_default] = ACTIONS(152), - [anon_sym_enum] = ACTIONS(155), - [anon_sym_fn] = ACTIONS(158), - [anon_sym_for] = ACTIONS(161), - [anon_sym_if] = ACTIONS(164), - [anon_sym_impl] = ACTIONS(167), - [anon_sym_let] = ACTIONS(170), - [anon_sym_loop] = ACTIONS(173), - [anon_sym_match] = ACTIONS(176), - [anon_sym_mod] = ACTIONS(179), - [anon_sym_pub] = ACTIONS(182), - [anon_sym_return] = ACTIONS(185), - [anon_sym_static] = ACTIONS(188), - [anon_sym_struct] = ACTIONS(191), - [anon_sym_trait] = ACTIONS(194), - [anon_sym_type] = ACTIONS(197), - [anon_sym_union] = ACTIONS(200), - [anon_sym_unsafe] = ACTIONS(203), - [anon_sym_use] = ACTIONS(206), - [anon_sym_while] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(212), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_COLON_COLON] = ACTIONS(221), - [anon_sym_AMP] = ACTIONS(224), - [anon_sym_DOT_DOT] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_move] = ACTIONS(233), - [sym_integer_literal] = ACTIONS(236), - [aux_sym_string_literal_token1] = ACTIONS(239), - [sym_char_literal] = ACTIONS(236), - [anon_sym_true] = ACTIONS(242), - [anon_sym_false] = ACTIONS(242), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(245), - [sym_super] = ACTIONS(248), - [sym_crate] = ACTIONS(251), - [sym_metavariable] = ACTIONS(254), - [sym_raw_string_literal] = ACTIONS(236), - [sym_float_literal] = ACTIONS(236), - [sym_block_comment] = ACTIONS(3), - }, - [7] = { - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1118), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [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(257), - [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(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [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(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [8] = { - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1150), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [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(259), - [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(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [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(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [9] = { - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1113), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [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), - [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(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [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(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [10] = { - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1139), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [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(263), - [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(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [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(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [11] = { - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1098), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [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(265), - [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(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [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(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [12] = { - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [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(267), - [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(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [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(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [13] = { - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1114), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [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(269), - [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(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [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(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [14] = { - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1133), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [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(271), - [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(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [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(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [15] = { - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1125), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [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), - [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(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [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(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [16] = { - [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(2316), - [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(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [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(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(113), - [anon_sym_SEMI] = ACTIONS(116), - [anon_sym_macro_rules_BANG] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(125), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_LBRACK] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_u8] = ACTIONS(134), - [anon_sym_i8] = ACTIONS(134), - [anon_sym_u16] = ACTIONS(134), - [anon_sym_i16] = ACTIONS(134), - [anon_sym_u32] = ACTIONS(134), - [anon_sym_i32] = ACTIONS(134), - [anon_sym_u64] = ACTIONS(134), - [anon_sym_i64] = ACTIONS(134), - [anon_sym_u128] = ACTIONS(134), - [anon_sym_i128] = ACTIONS(134), - [anon_sym_isize] = ACTIONS(134), - [anon_sym_usize] = ACTIONS(134), - [anon_sym_f32] = ACTIONS(134), - [anon_sym_f64] = ACTIONS(134), - [anon_sym_bool] = ACTIONS(134), - [anon_sym_str] = ACTIONS(134), - [anon_sym_char] = ACTIONS(134), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_async] = ACTIONS(140), - [anon_sym_break] = ACTIONS(143), - [anon_sym_const] = ACTIONS(146), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_default] = ACTIONS(152), - [anon_sym_enum] = ACTIONS(155), - [anon_sym_fn] = ACTIONS(158), - [anon_sym_for] = ACTIONS(161), - [anon_sym_if] = ACTIONS(164), - [anon_sym_impl] = ACTIONS(167), - [anon_sym_let] = ACTIONS(170), - [anon_sym_loop] = ACTIONS(173), - [anon_sym_match] = ACTIONS(176), - [anon_sym_mod] = ACTIONS(179), - [anon_sym_pub] = ACTIONS(182), - [anon_sym_return] = ACTIONS(185), - [anon_sym_static] = ACTIONS(188), - [anon_sym_struct] = ACTIONS(191), - [anon_sym_trait] = ACTIONS(194), - [anon_sym_type] = ACTIONS(197), - [anon_sym_union] = ACTIONS(200), - [anon_sym_unsafe] = ACTIONS(203), - [anon_sym_use] = ACTIONS(206), - [anon_sym_while] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(212), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_COLON_COLON] = ACTIONS(221), - [anon_sym_AMP] = ACTIONS(224), - [anon_sym_DOT_DOT] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_move] = ACTIONS(233), - [sym_integer_literal] = ACTIONS(236), - [aux_sym_string_literal_token1] = ACTIONS(239), - [sym_char_literal] = ACTIONS(236), - [anon_sym_true] = ACTIONS(242), - [anon_sym_false] = ACTIONS(242), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(245), - [sym_super] = ACTIONS(248), - [sym_crate] = ACTIONS(251), - [sym_metavariable] = ACTIONS(254), - [sym_raw_string_literal] = ACTIONS(236), - [sym_float_literal] = ACTIONS(236), - [sym_block_comment] = ACTIONS(3), - }, - [17] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(967), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_QMARK] = ACTIONS(277), - [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_as] = ACTIONS(283), - [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(303), - [anon_sym_EQ] = ACTIONS(283), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_GT] = ACTIONS(283), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(277), - [anon_sym_DOT_DOT] = ACTIONS(283), - [anon_sym_DOT_DOT_EQ] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_CARET] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(283), - [anon_sym_GT_GT] = ACTIONS(283), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_PLUS_EQ] = ACTIONS(277), - [anon_sym_DASH_EQ] = ACTIONS(277), - [anon_sym_STAR_EQ] = ACTIONS(277), - [anon_sym_SLASH_EQ] = ACTIONS(277), - [anon_sym_PERCENT_EQ] = ACTIONS(277), - [anon_sym_AMP_EQ] = ACTIONS(277), - [anon_sym_PIPE_EQ] = ACTIONS(277), - [anon_sym_CARET_EQ] = ACTIONS(277), - [anon_sym_LT_LT_EQ] = ACTIONS(277), - [anon_sym_GT_GT_EQ] = ACTIONS(277), - [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(283), - [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), - }, - [18] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1036), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_EQ_GT] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_RBRACK] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(307), - [anon_sym_QMARK] = ACTIONS(305), - [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(309), - [anon_sym_as] = ACTIONS(307), - [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(303), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_COMMA] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(305), - [anon_sym_DOT_DOT] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(305), - [anon_sym_PIPE_PIPE] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(307), - [anon_sym_CARET] = ACTIONS(307), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_SLASH] = ACTIONS(307), - [anon_sym_PERCENT] = ACTIONS(307), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_CARET_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), - [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(307), - [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), - }, - [19] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(998), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(311), - [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_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_as] = ACTIONS(313), - [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(303), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(313), - [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_move] = ACTIONS(87), - [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(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), - }, - [20] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(794), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(323), - [anon_sym_EQ_GT] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(323), - [anon_sym_PLUS] = ACTIONS(325), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(323), - [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_as] = ACTIONS(325), - [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(303), - [anon_sym_EQ] = ACTIONS(325), - [anon_sym_COMMA] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(325), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(323), - [anon_sym_DOT_DOT] = ACTIONS(319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(323), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE_PIPE] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(321), - [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_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(325), - [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), - }, - [21] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1057), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(327), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_RPAREN] = ACTIONS(327), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_EQ_GT] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_RBRACK] = ACTIONS(327), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_QMARK] = ACTIONS(327), - [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_as] = ACTIONS(329), - [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(303), - [anon_sym_EQ] = ACTIONS(329), - [anon_sym_COMMA] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(327), - [anon_sym_DOT_DOT] = ACTIONS(329), - [anon_sym_DOT_DOT_EQ] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [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(87), - [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(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), - }, - [22] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1180), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_QMARK] = ACTIONS(277), - [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(283), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_GT] = ACTIONS(283), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(277), - [anon_sym_DOT_DOT] = ACTIONS(283), - [anon_sym_DOT_DOT_EQ] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_CARET] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(283), - [anon_sym_GT_GT] = ACTIONS(283), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_PLUS_EQ] = ACTIONS(277), - [anon_sym_DASH_EQ] = ACTIONS(277), - [anon_sym_STAR_EQ] = ACTIONS(277), - [anon_sym_SLASH_EQ] = ACTIONS(277), - [anon_sym_PERCENT_EQ] = ACTIONS(277), - [anon_sym_AMP_EQ] = ACTIONS(277), - [anon_sym_PIPE_EQ] = ACTIONS(277), - [anon_sym_CARET_EQ] = ACTIONS(277), - [anon_sym_LT_LT_EQ] = ACTIONS(277), - [anon_sym_GT_GT_EQ] = ACTIONS(277), - [anon_sym_move] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(283), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [23] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1201), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(22), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(307), - [anon_sym_QMARK] = ACTIONS(305), - [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(309), - [anon_sym_as] = ACTIONS(307), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(305), - [anon_sym_DOT_DOT] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(305), - [anon_sym_PIPE_PIPE] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(307), - [anon_sym_CARET] = ACTIONS(307), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_SLASH] = ACTIONS(307), - [anon_sym_PERCENT] = ACTIONS(307), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_CARET_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), - [anon_sym_move] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(307), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [24] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1184), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(329), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(327), - [anon_sym_DOT_DOT] = ACTIONS(329), - [anon_sym_DOT_DOT_EQ] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [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(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [25] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1192), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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_STAR] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(311), - [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(313), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(311), - [anon_sym_DOT_DOT] = ACTIONS(353), - [anon_sym_DOT_DOT_EQ] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(339), - [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(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [26] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(794), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(325), - [anon_sym_STAR] = ACTIONS(339), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(325), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(323), - [anon_sym_DOT_DOT] = ACTIONS(353), - [anon_sym_DOT_DOT_EQ] = ACTIONS(323), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE_PIPE] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(321), - [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_move] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(325), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [27] = { - [sym_attribute_item] = STATE(29), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1075), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(29), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(355), - [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(357), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(359), - [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), - }, - [28] = { - [sym_attribute_item] = STATE(38), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1078), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(361), - [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(357), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(363), - [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), - }, - [29] = { - [sym_attribute_item] = STATE(538), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1074), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(365), - [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(357), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(367), - [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), - }, - [30] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1107), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(40), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(369), - [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(357), - [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), - }, - [31] = { - [sym_else_clause] = STATE(43), - [ts_builtin_sym_end] = ACTIONS(371), - [sym_identifier] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(371), - [anon_sym_macro_rules_BANG] = ACTIONS(371), - [anon_sym_LPAREN] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(371), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(371), - [anon_sym_u8] = ACTIONS(373), - [anon_sym_i8] = ACTIONS(373), - [anon_sym_u16] = ACTIONS(373), - [anon_sym_i16] = ACTIONS(373), - [anon_sym_u32] = ACTIONS(373), - [anon_sym_i32] = ACTIONS(373), - [anon_sym_u64] = ACTIONS(373), - [anon_sym_i64] = ACTIONS(373), - [anon_sym_u128] = ACTIONS(373), - [anon_sym_i128] = ACTIONS(373), - [anon_sym_isize] = ACTIONS(373), - [anon_sym_usize] = ACTIONS(373), - [anon_sym_f32] = ACTIONS(373), - [anon_sym_f64] = ACTIONS(373), - [anon_sym_bool] = ACTIONS(373), - [anon_sym_str] = ACTIONS(373), - [anon_sym_char] = ACTIONS(373), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_as] = ACTIONS(373), - [anon_sym_async] = ACTIONS(373), - [anon_sym_break] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_default] = ACTIONS(373), - [anon_sym_enum] = ACTIONS(373), - [anon_sym_fn] = ACTIONS(373), - [anon_sym_for] = ACTIONS(373), - [anon_sym_if] = ACTIONS(373), - [anon_sym_impl] = ACTIONS(373), - [anon_sym_let] = ACTIONS(373), - [anon_sym_loop] = ACTIONS(373), - [anon_sym_match] = ACTIONS(373), - [anon_sym_mod] = ACTIONS(373), - [anon_sym_pub] = ACTIONS(373), - [anon_sym_return] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_struct] = ACTIONS(373), - [anon_sym_trait] = ACTIONS(373), - [anon_sym_type] = ACTIONS(373), - [anon_sym_union] = ACTIONS(373), - [anon_sym_unsafe] = ACTIONS(373), - [anon_sym_use] = ACTIONS(373), - [anon_sym_while] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(373), - [anon_sym_EQ] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT_EQ] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(371), - [anon_sym_PIPE_PIPE] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(373), - [anon_sym_CARET] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(371), - [anon_sym_BANG_EQ] = ACTIONS(371), - [anon_sym_LT_EQ] = ACTIONS(371), - [anon_sym_GT_EQ] = ACTIONS(371), - [anon_sym_LT_LT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_SLASH] = ACTIONS(373), - [anon_sym_PERCENT] = ACTIONS(373), - [anon_sym_PLUS_EQ] = ACTIONS(371), - [anon_sym_DASH_EQ] = ACTIONS(371), - [anon_sym_STAR_EQ] = ACTIONS(371), - [anon_sym_SLASH_EQ] = ACTIONS(371), - [anon_sym_PERCENT_EQ] = ACTIONS(371), - [anon_sym_AMP_EQ] = ACTIONS(371), - [anon_sym_PIPE_EQ] = ACTIONS(371), - [anon_sym_CARET_EQ] = ACTIONS(371), - [anon_sym_LT_LT_EQ] = ACTIONS(371), - [anon_sym_GT_GT_EQ] = ACTIONS(371), - [anon_sym_else] = ACTIONS(375), - [anon_sym_move] = ACTIONS(373), - [anon_sym_DOT] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(371), - [aux_sym_string_literal_token1] = ACTIONS(371), - [sym_char_literal] = ACTIONS(371), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(373), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(371), - [sym_raw_string_literal] = ACTIONS(371), - [sym_float_literal] = ACTIONS(371), - [sym_block_comment] = ACTIONS(3), - }, - [32] = { - [sym_else_clause] = STATE(69), - [ts_builtin_sym_end] = ACTIONS(377), - [sym_identifier] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(377), - [anon_sym_macro_rules_BANG] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_RBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_u8] = ACTIONS(379), - [anon_sym_i8] = ACTIONS(379), - [anon_sym_u16] = ACTIONS(379), - [anon_sym_i16] = ACTIONS(379), - [anon_sym_u32] = ACTIONS(379), - [anon_sym_i32] = ACTIONS(379), - [anon_sym_u64] = ACTIONS(379), - [anon_sym_i64] = ACTIONS(379), - [anon_sym_u128] = ACTIONS(379), - [anon_sym_i128] = ACTIONS(379), - [anon_sym_isize] = ACTIONS(379), - [anon_sym_usize] = ACTIONS(379), - [anon_sym_f32] = ACTIONS(379), - [anon_sym_f64] = ACTIONS(379), - [anon_sym_bool] = ACTIONS(379), - [anon_sym_str] = ACTIONS(379), - [anon_sym_char] = ACTIONS(379), - [anon_sym_SQUOTE] = ACTIONS(379), - [anon_sym_as] = ACTIONS(379), - [anon_sym_async] = ACTIONS(379), - [anon_sym_break] = ACTIONS(379), - [anon_sym_const] = ACTIONS(379), - [anon_sym_continue] = ACTIONS(379), - [anon_sym_default] = ACTIONS(379), - [anon_sym_enum] = ACTIONS(379), - [anon_sym_fn] = ACTIONS(379), - [anon_sym_for] = ACTIONS(379), - [anon_sym_if] = ACTIONS(379), - [anon_sym_impl] = ACTIONS(379), - [anon_sym_let] = ACTIONS(379), - [anon_sym_loop] = ACTIONS(379), - [anon_sym_match] = ACTIONS(379), - [anon_sym_mod] = ACTIONS(379), - [anon_sym_pub] = ACTIONS(379), - [anon_sym_return] = ACTIONS(379), - [anon_sym_static] = ACTIONS(379), - [anon_sym_struct] = ACTIONS(379), - [anon_sym_trait] = ACTIONS(379), - [anon_sym_type] = ACTIONS(379), - [anon_sym_union] = ACTIONS(379), - [anon_sym_unsafe] = ACTIONS(379), - [anon_sym_use] = ACTIONS(379), - [anon_sym_while] = ACTIONS(379), - [anon_sym_POUND] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(379), - [anon_sym_extern] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(379), - [anon_sym_COLON_COLON] = ACTIONS(377), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(377), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_AMP_AMP] = ACTIONS(377), - [anon_sym_PIPE_PIPE] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(379), - [anon_sym_CARET] = ACTIONS(379), - [anon_sym_EQ_EQ] = ACTIONS(377), - [anon_sym_BANG_EQ] = ACTIONS(377), - [anon_sym_LT_EQ] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(377), - [anon_sym_LT_LT] = ACTIONS(379), - [anon_sym_GT_GT] = ACTIONS(379), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_PERCENT] = ACTIONS(379), - [anon_sym_PLUS_EQ] = ACTIONS(377), - [anon_sym_DASH_EQ] = ACTIONS(377), - [anon_sym_STAR_EQ] = ACTIONS(377), - [anon_sym_SLASH_EQ] = ACTIONS(377), - [anon_sym_PERCENT_EQ] = ACTIONS(377), - [anon_sym_AMP_EQ] = ACTIONS(377), - [anon_sym_PIPE_EQ] = ACTIONS(377), - [anon_sym_CARET_EQ] = ACTIONS(377), - [anon_sym_LT_LT_EQ] = ACTIONS(377), - [anon_sym_GT_GT_EQ] = ACTIONS(377), - [anon_sym_else] = ACTIONS(375), - [anon_sym_move] = ACTIONS(379), - [anon_sym_DOT] = ACTIONS(379), - [sym_integer_literal] = ACTIONS(377), - [aux_sym_string_literal_token1] = ACTIONS(377), - [sym_char_literal] = ACTIONS(377), - [anon_sym_true] = ACTIONS(379), - [anon_sym_false] = ACTIONS(379), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(379), - [sym_super] = ACTIONS(379), - [sym_crate] = ACTIONS(379), - [sym_metavariable] = ACTIONS(377), - [sym_raw_string_literal] = ACTIONS(377), - [sym_float_literal] = ACTIONS(377), - [sym_block_comment] = ACTIONS(3), - }, - [33] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1110), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(42), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(381), - [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(357), - [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), - }, - [34] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1107), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(40), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(383), - [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(357), - [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), - }, - [35] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1107), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(40), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(385), - [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(357), - [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), - }, - [36] = { - [ts_builtin_sym_end] = ACTIONS(387), - [sym_identifier] = ACTIONS(389), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_macro_rules_BANG] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(389), - [anon_sym_i8] = ACTIONS(389), - [anon_sym_u16] = ACTIONS(389), - [anon_sym_i16] = ACTIONS(389), - [anon_sym_u32] = ACTIONS(389), - [anon_sym_i32] = ACTIONS(389), - [anon_sym_u64] = ACTIONS(389), - [anon_sym_i64] = ACTIONS(389), - [anon_sym_u128] = ACTIONS(389), - [anon_sym_i128] = ACTIONS(389), - [anon_sym_isize] = ACTIONS(389), - [anon_sym_usize] = ACTIONS(389), - [anon_sym_f32] = ACTIONS(389), - [anon_sym_f64] = ACTIONS(389), - [anon_sym_bool] = ACTIONS(389), - [anon_sym_str] = ACTIONS(389), - [anon_sym_char] = ACTIONS(389), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_as] = ACTIONS(389), - [anon_sym_async] = ACTIONS(389), - [anon_sym_break] = ACTIONS(389), - [anon_sym_const] = ACTIONS(389), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_default] = ACTIONS(389), - [anon_sym_enum] = ACTIONS(389), - [anon_sym_fn] = ACTIONS(389), - [anon_sym_for] = ACTIONS(389), - [anon_sym_if] = ACTIONS(389), - [anon_sym_impl] = ACTIONS(389), - [anon_sym_let] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(389), - [anon_sym_match] = ACTIONS(389), - [anon_sym_mod] = ACTIONS(389), - [anon_sym_pub] = ACTIONS(389), - [anon_sym_return] = ACTIONS(389), - [anon_sym_static] = ACTIONS(389), - [anon_sym_struct] = ACTIONS(389), - [anon_sym_trait] = ACTIONS(389), - [anon_sym_type] = ACTIONS(389), - [anon_sym_union] = ACTIONS(389), - [anon_sym_unsafe] = ACTIONS(389), - [anon_sym_use] = ACTIONS(389), - [anon_sym_while] = ACTIONS(389), - [anon_sym_POUND] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_COLON_COLON] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_else] = ACTIONS(389), - [anon_sym_move] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(389), - [sym_integer_literal] = ACTIONS(387), - [aux_sym_string_literal_token1] = ACTIONS(387), - [sym_char_literal] = ACTIONS(387), - [anon_sym_true] = ACTIONS(389), - [anon_sym_false] = ACTIONS(389), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(389), - [sym_super] = ACTIONS(389), - [sym_crate] = ACTIONS(389), - [sym_metavariable] = ACTIONS(387), - [sym_raw_string_literal] = ACTIONS(387), - [sym_float_literal] = ACTIONS(387), - [sym_block_comment] = ACTIONS(3), - }, - [37] = { - [ts_builtin_sym_end] = ACTIONS(391), - [sym_identifier] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_macro_rules_BANG] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SQUOTE] = ACTIONS(393), - [anon_sym_as] = ACTIONS(393), - [anon_sym_async] = ACTIONS(393), - [anon_sym_break] = ACTIONS(393), - [anon_sym_const] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_default] = ACTIONS(393), - [anon_sym_enum] = ACTIONS(393), - [anon_sym_fn] = ACTIONS(393), - [anon_sym_for] = ACTIONS(393), - [anon_sym_if] = ACTIONS(393), - [anon_sym_impl] = ACTIONS(393), - [anon_sym_let] = ACTIONS(393), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_match] = ACTIONS(393), - [anon_sym_mod] = ACTIONS(393), - [anon_sym_pub] = ACTIONS(393), - [anon_sym_return] = ACTIONS(393), - [anon_sym_static] = ACTIONS(393), - [anon_sym_struct] = ACTIONS(393), - [anon_sym_trait] = ACTIONS(393), - [anon_sym_type] = ACTIONS(393), - [anon_sym_union] = ACTIONS(393), - [anon_sym_unsafe] = ACTIONS(393), - [anon_sym_use] = ACTIONS(393), - [anon_sym_while] = ACTIONS(393), - [anon_sym_POUND] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_extern] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_else] = ACTIONS(393), - [anon_sym_move] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [sym_integer_literal] = ACTIONS(391), - [aux_sym_string_literal_token1] = ACTIONS(391), - [sym_char_literal] = ACTIONS(391), - [anon_sym_true] = ACTIONS(393), - [anon_sym_false] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(393), - [sym_super] = ACTIONS(393), - [sym_crate] = ACTIONS(393), - [sym_metavariable] = ACTIONS(391), - [sym_raw_string_literal] = ACTIONS(391), - [sym_float_literal] = ACTIONS(391), - [sym_block_comment] = ACTIONS(3), - }, - [38] = { - [sym_attribute_item] = STATE(538), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1084), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [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(357), - [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), - }, - [39] = { - [ts_builtin_sym_end] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_macro_rules_BANG] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(397), - [anon_sym_i8] = ACTIONS(397), - [anon_sym_u16] = ACTIONS(397), - [anon_sym_i16] = ACTIONS(397), - [anon_sym_u32] = ACTIONS(397), - [anon_sym_i32] = ACTIONS(397), - [anon_sym_u64] = ACTIONS(397), - [anon_sym_i64] = ACTIONS(397), - [anon_sym_u128] = ACTIONS(397), - [anon_sym_i128] = ACTIONS(397), - [anon_sym_isize] = ACTIONS(397), - [anon_sym_usize] = ACTIONS(397), - [anon_sym_f32] = ACTIONS(397), - [anon_sym_f64] = ACTIONS(397), - [anon_sym_bool] = ACTIONS(397), - [anon_sym_str] = ACTIONS(397), - [anon_sym_char] = ACTIONS(397), - [anon_sym_SQUOTE] = ACTIONS(397), - [anon_sym_as] = ACTIONS(397), - [anon_sym_async] = ACTIONS(397), - [anon_sym_break] = ACTIONS(397), - [anon_sym_const] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(397), - [anon_sym_default] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(397), - [anon_sym_fn] = ACTIONS(397), - [anon_sym_for] = ACTIONS(397), - [anon_sym_if] = ACTIONS(397), - [anon_sym_impl] = ACTIONS(397), - [anon_sym_let] = ACTIONS(397), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_match] = ACTIONS(397), - [anon_sym_mod] = ACTIONS(397), - [anon_sym_pub] = ACTIONS(397), - [anon_sym_return] = ACTIONS(397), - [anon_sym_static] = ACTIONS(397), - [anon_sym_struct] = ACTIONS(397), - [anon_sym_trait] = ACTIONS(397), - [anon_sym_type] = ACTIONS(397), - [anon_sym_union] = ACTIONS(397), - [anon_sym_unsafe] = ACTIONS(397), - [anon_sym_use] = ACTIONS(397), - [anon_sym_while] = ACTIONS(397), - [anon_sym_POUND] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_extern] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_else] = ACTIONS(397), - [anon_sym_move] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(397), - [sym_integer_literal] = ACTIONS(395), - [aux_sym_string_literal_token1] = ACTIONS(395), - [sym_char_literal] = ACTIONS(395), - [anon_sym_true] = ACTIONS(397), - [anon_sym_false] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_crate] = ACTIONS(397), - [sym_metavariable] = ACTIONS(395), - [sym_raw_string_literal] = ACTIONS(395), - [sym_float_literal] = ACTIONS(395), - [sym_block_comment] = ACTIONS(3), - }, - [40] = { - [sym_attribute_item] = STATE(538), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1111), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [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(357), - [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), - }, - [41] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1107), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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(357), - [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), - }, - [42] = { - [sym_attribute_item] = STATE(538), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1193), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [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(357), - [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), - }, - [43] = { - [ts_builtin_sym_end] = ACTIONS(399), - [sym_identifier] = ACTIONS(401), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_macro_rules_BANG] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_u8] = ACTIONS(401), - [anon_sym_i8] = ACTIONS(401), - [anon_sym_u16] = ACTIONS(401), - [anon_sym_i16] = ACTIONS(401), - [anon_sym_u32] = ACTIONS(401), - [anon_sym_i32] = ACTIONS(401), - [anon_sym_u64] = ACTIONS(401), - [anon_sym_i64] = ACTIONS(401), - [anon_sym_u128] = ACTIONS(401), - [anon_sym_i128] = ACTIONS(401), - [anon_sym_isize] = ACTIONS(401), - [anon_sym_usize] = ACTIONS(401), - [anon_sym_f32] = ACTIONS(401), - [anon_sym_f64] = ACTIONS(401), - [anon_sym_bool] = ACTIONS(401), - [anon_sym_str] = ACTIONS(401), - [anon_sym_char] = ACTIONS(401), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_as] = ACTIONS(401), - [anon_sym_async] = ACTIONS(401), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(401), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_default] = ACTIONS(401), - [anon_sym_enum] = ACTIONS(401), - [anon_sym_fn] = ACTIONS(401), - [anon_sym_for] = ACTIONS(401), - [anon_sym_if] = ACTIONS(401), - [anon_sym_impl] = ACTIONS(401), - [anon_sym_let] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(401), - [anon_sym_match] = ACTIONS(401), - [anon_sym_mod] = ACTIONS(401), - [anon_sym_pub] = ACTIONS(401), - [anon_sym_return] = ACTIONS(401), - [anon_sym_static] = ACTIONS(401), - [anon_sym_struct] = ACTIONS(401), - [anon_sym_trait] = ACTIONS(401), - [anon_sym_type] = ACTIONS(401), - [anon_sym_union] = ACTIONS(401), - [anon_sym_unsafe] = ACTIONS(401), - [anon_sym_use] = ACTIONS(401), - [anon_sym_while] = ACTIONS(401), - [anon_sym_POUND] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(401), - [anon_sym_extern] = ACTIONS(401), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_EQ_EQ] = ACTIONS(399), - [anon_sym_BANG_EQ] = ACTIONS(399), - [anon_sym_LT_EQ] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(401), - [anon_sym_GT_GT] = ACTIONS(401), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_PLUS_EQ] = ACTIONS(399), - [anon_sym_DASH_EQ] = ACTIONS(399), - [anon_sym_STAR_EQ] = ACTIONS(399), - [anon_sym_SLASH_EQ] = ACTIONS(399), - [anon_sym_PERCENT_EQ] = ACTIONS(399), - [anon_sym_AMP_EQ] = ACTIONS(399), - [anon_sym_PIPE_EQ] = ACTIONS(399), - [anon_sym_CARET_EQ] = ACTIONS(399), - [anon_sym_LT_LT_EQ] = ACTIONS(399), - [anon_sym_GT_GT_EQ] = ACTIONS(399), - [anon_sym_move] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(399), - [aux_sym_string_literal_token1] = ACTIONS(399), - [sym_char_literal] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(401), - [sym_super] = ACTIONS(401), - [sym_crate] = ACTIONS(401), - [sym_metavariable] = ACTIONS(399), - [sym_raw_string_literal] = ACTIONS(399), - [sym_float_literal] = ACTIONS(399), - [sym_block_comment] = ACTIONS(3), - }, - [44] = { - [ts_builtin_sym_end] = ACTIONS(403), - [sym_identifier] = ACTIONS(405), - [anon_sym_SEMI] = ACTIONS(403), - [anon_sym_macro_rules_BANG] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_PLUS] = ACTIONS(405), - [anon_sym_STAR] = ACTIONS(405), - [anon_sym_QMARK] = ACTIONS(403), - [anon_sym_u8] = ACTIONS(405), - [anon_sym_i8] = ACTIONS(405), - [anon_sym_u16] = ACTIONS(405), - [anon_sym_i16] = ACTIONS(405), - [anon_sym_u32] = ACTIONS(405), - [anon_sym_i32] = ACTIONS(405), - [anon_sym_u64] = ACTIONS(405), - [anon_sym_i64] = ACTIONS(405), - [anon_sym_u128] = ACTIONS(405), - [anon_sym_i128] = ACTIONS(405), - [anon_sym_isize] = ACTIONS(405), - [anon_sym_usize] = ACTIONS(405), - [anon_sym_f32] = ACTIONS(405), - [anon_sym_f64] = ACTIONS(405), - [anon_sym_bool] = ACTIONS(405), - [anon_sym_str] = ACTIONS(405), - [anon_sym_char] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(405), - [anon_sym_as] = ACTIONS(405), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(405), - [anon_sym_const] = ACTIONS(405), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(405), - [anon_sym_enum] = ACTIONS(405), - [anon_sym_fn] = ACTIONS(405), - [anon_sym_for] = ACTIONS(405), - [anon_sym_if] = ACTIONS(405), - [anon_sym_impl] = ACTIONS(405), - [anon_sym_let] = ACTIONS(405), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_match] = ACTIONS(405), - [anon_sym_mod] = ACTIONS(405), - [anon_sym_pub] = ACTIONS(405), - [anon_sym_return] = ACTIONS(405), - [anon_sym_static] = ACTIONS(405), - [anon_sym_struct] = ACTIONS(405), - [anon_sym_trait] = ACTIONS(405), - [anon_sym_type] = ACTIONS(405), - [anon_sym_union] = ACTIONS(405), - [anon_sym_unsafe] = ACTIONS(405), - [anon_sym_use] = ACTIONS(405), - [anon_sym_while] = ACTIONS(405), - [anon_sym_POUND] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(405), - [anon_sym_EQ] = ACTIONS(405), - [anon_sym_extern] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_GT] = ACTIONS(405), - [anon_sym_COLON_COLON] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(403), - [anon_sym_DASH] = ACTIONS(405), - [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_PIPE_PIPE] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(405), - [anon_sym_CARET] = ACTIONS(405), - [anon_sym_EQ_EQ] = ACTIONS(403), - [anon_sym_BANG_EQ] = ACTIONS(403), - [anon_sym_LT_EQ] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(403), - [anon_sym_LT_LT] = ACTIONS(405), - [anon_sym_GT_GT] = ACTIONS(405), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_PERCENT] = ACTIONS(405), - [anon_sym_PLUS_EQ] = ACTIONS(403), - [anon_sym_DASH_EQ] = ACTIONS(403), - [anon_sym_STAR_EQ] = ACTIONS(403), - [anon_sym_SLASH_EQ] = ACTIONS(403), - [anon_sym_PERCENT_EQ] = ACTIONS(403), - [anon_sym_AMP_EQ] = ACTIONS(403), - [anon_sym_PIPE_EQ] = ACTIONS(403), - [anon_sym_CARET_EQ] = ACTIONS(403), - [anon_sym_LT_LT_EQ] = ACTIONS(403), - [anon_sym_GT_GT_EQ] = ACTIONS(403), - [anon_sym_move] = ACTIONS(405), - [anon_sym_DOT] = ACTIONS(405), - [sym_integer_literal] = ACTIONS(403), - [aux_sym_string_literal_token1] = ACTIONS(403), - [sym_char_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(405), - [sym_super] = ACTIONS(405), - [sym_crate] = ACTIONS(405), - [sym_metavariable] = ACTIONS(403), - [sym_raw_string_literal] = ACTIONS(403), - [sym_float_literal] = ACTIONS(403), - [sym_block_comment] = ACTIONS(3), - }, - [45] = { - [ts_builtin_sym_end] = ACTIONS(407), - [sym_identifier] = ACTIONS(409), - [anon_sym_SEMI] = ACTIONS(407), - [anon_sym_macro_rules_BANG] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(407), - [anon_sym_u8] = ACTIONS(409), - [anon_sym_i8] = ACTIONS(409), - [anon_sym_u16] = ACTIONS(409), - [anon_sym_i16] = ACTIONS(409), - [anon_sym_u32] = ACTIONS(409), - [anon_sym_i32] = ACTIONS(409), - [anon_sym_u64] = ACTIONS(409), - [anon_sym_i64] = ACTIONS(409), - [anon_sym_u128] = ACTIONS(409), - [anon_sym_i128] = ACTIONS(409), - [anon_sym_isize] = ACTIONS(409), - [anon_sym_usize] = ACTIONS(409), - [anon_sym_f32] = ACTIONS(409), - [anon_sym_f64] = ACTIONS(409), - [anon_sym_bool] = ACTIONS(409), - [anon_sym_str] = ACTIONS(409), - [anon_sym_char] = ACTIONS(409), - [anon_sym_SQUOTE] = ACTIONS(409), - [anon_sym_as] = ACTIONS(409), - [anon_sym_async] = ACTIONS(409), - [anon_sym_break] = ACTIONS(409), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(409), - [anon_sym_default] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(409), - [anon_sym_fn] = ACTIONS(409), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(409), - [anon_sym_impl] = ACTIONS(409), - [anon_sym_let] = ACTIONS(409), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_match] = ACTIONS(409), - [anon_sym_mod] = ACTIONS(409), - [anon_sym_pub] = ACTIONS(409), - [anon_sym_return] = ACTIONS(409), - [anon_sym_static] = ACTIONS(409), - [anon_sym_struct] = ACTIONS(409), - [anon_sym_trait] = ACTIONS(409), - [anon_sym_type] = ACTIONS(409), - [anon_sym_union] = ACTIONS(409), - [anon_sym_unsafe] = ACTIONS(409), - [anon_sym_use] = ACTIONS(409), - [anon_sym_while] = ACTIONS(409), - [anon_sym_POUND] = ACTIONS(407), - [anon_sym_BANG] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(409), - [anon_sym_extern] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_COLON_COLON] = ACTIONS(407), - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(407), - [anon_sym_DOT_DOT] = ACTIONS(409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(407), - [anon_sym_PIPE_PIPE] = ACTIONS(407), - [anon_sym_PIPE] = ACTIONS(409), - [anon_sym_CARET] = ACTIONS(409), - [anon_sym_EQ_EQ] = ACTIONS(407), - [anon_sym_BANG_EQ] = ACTIONS(407), - [anon_sym_LT_EQ] = ACTIONS(407), - [anon_sym_GT_EQ] = ACTIONS(407), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(409), - [anon_sym_PLUS_EQ] = ACTIONS(407), - [anon_sym_DASH_EQ] = ACTIONS(407), - [anon_sym_STAR_EQ] = ACTIONS(407), - [anon_sym_SLASH_EQ] = ACTIONS(407), - [anon_sym_PERCENT_EQ] = ACTIONS(407), - [anon_sym_AMP_EQ] = ACTIONS(407), - [anon_sym_PIPE_EQ] = ACTIONS(407), - [anon_sym_CARET_EQ] = ACTIONS(407), - [anon_sym_LT_LT_EQ] = ACTIONS(407), - [anon_sym_GT_GT_EQ] = ACTIONS(407), - [anon_sym_move] = ACTIONS(409), - [anon_sym_DOT] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(407), - [aux_sym_string_literal_token1] = ACTIONS(407), - [sym_char_literal] = ACTIONS(407), - [anon_sym_true] = ACTIONS(409), - [anon_sym_false] = ACTIONS(409), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(409), - [sym_super] = ACTIONS(409), - [sym_crate] = ACTIONS(409), - [sym_metavariable] = ACTIONS(407), - [sym_raw_string_literal] = ACTIONS(407), - [sym_float_literal] = ACTIONS(407), - [sym_block_comment] = ACTIONS(3), - }, - [46] = { - [ts_builtin_sym_end] = ACTIONS(411), - [sym_identifier] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_macro_rules_BANG] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(411), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_PLUS] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(411), - [anon_sym_u8] = ACTIONS(413), - [anon_sym_i8] = ACTIONS(413), - [anon_sym_u16] = ACTIONS(413), - [anon_sym_i16] = ACTIONS(413), - [anon_sym_u32] = ACTIONS(413), - [anon_sym_i32] = ACTIONS(413), - [anon_sym_u64] = ACTIONS(413), - [anon_sym_i64] = ACTIONS(413), - [anon_sym_u128] = ACTIONS(413), - [anon_sym_i128] = ACTIONS(413), - [anon_sym_isize] = ACTIONS(413), - [anon_sym_usize] = ACTIONS(413), - [anon_sym_f32] = ACTIONS(413), - [anon_sym_f64] = ACTIONS(413), - [anon_sym_bool] = ACTIONS(413), - [anon_sym_str] = ACTIONS(413), - [anon_sym_char] = ACTIONS(413), - [anon_sym_SQUOTE] = ACTIONS(413), - [anon_sym_as] = ACTIONS(413), - [anon_sym_async] = ACTIONS(413), - [anon_sym_break] = ACTIONS(413), - [anon_sym_const] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_default] = ACTIONS(413), - [anon_sym_enum] = ACTIONS(413), - [anon_sym_fn] = ACTIONS(413), - [anon_sym_for] = ACTIONS(413), - [anon_sym_if] = ACTIONS(413), - [anon_sym_impl] = ACTIONS(413), - [anon_sym_let] = ACTIONS(413), - [anon_sym_loop] = ACTIONS(413), - [anon_sym_match] = ACTIONS(413), - [anon_sym_mod] = ACTIONS(413), - [anon_sym_pub] = ACTIONS(413), - [anon_sym_return] = ACTIONS(413), - [anon_sym_static] = ACTIONS(413), - [anon_sym_struct] = ACTIONS(413), - [anon_sym_trait] = ACTIONS(413), - [anon_sym_type] = ACTIONS(413), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(413), - [anon_sym_use] = ACTIONS(413), - [anon_sym_while] = ACTIONS(413), - [anon_sym_POUND] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(413), - [anon_sym_extern] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_COLON_COLON] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(411), - [anon_sym_DOT_DOT] = ACTIONS(413), - [anon_sym_DOT_DOT_EQ] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_EQ_EQ] = ACTIONS(411), - [anon_sym_BANG_EQ] = ACTIONS(411), - [anon_sym_LT_EQ] = ACTIONS(411), - [anon_sym_GT_EQ] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(413), - [anon_sym_PERCENT] = ACTIONS(413), - [anon_sym_PLUS_EQ] = ACTIONS(411), - [anon_sym_DASH_EQ] = ACTIONS(411), - [anon_sym_STAR_EQ] = ACTIONS(411), - [anon_sym_SLASH_EQ] = ACTIONS(411), - [anon_sym_PERCENT_EQ] = ACTIONS(411), - [anon_sym_AMP_EQ] = ACTIONS(411), - [anon_sym_PIPE_EQ] = ACTIONS(411), - [anon_sym_CARET_EQ] = ACTIONS(411), - [anon_sym_LT_LT_EQ] = ACTIONS(411), - [anon_sym_GT_GT_EQ] = ACTIONS(411), - [anon_sym_move] = ACTIONS(413), - [anon_sym_DOT] = ACTIONS(413), - [sym_integer_literal] = ACTIONS(411), - [aux_sym_string_literal_token1] = ACTIONS(411), - [sym_char_literal] = ACTIONS(411), - [anon_sym_true] = ACTIONS(413), - [anon_sym_false] = ACTIONS(413), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_crate] = ACTIONS(413), - [sym_metavariable] = ACTIONS(411), - [sym_raw_string_literal] = ACTIONS(411), - [sym_float_literal] = ACTIONS(411), - [sym_block_comment] = ACTIONS(3), - }, - [47] = { - [ts_builtin_sym_end] = ACTIONS(415), - [sym_identifier] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [anon_sym_macro_rules_BANG] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(415), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_QMARK] = ACTIONS(415), - [anon_sym_u8] = ACTIONS(417), - [anon_sym_i8] = ACTIONS(417), - [anon_sym_u16] = ACTIONS(417), - [anon_sym_i16] = ACTIONS(417), - [anon_sym_u32] = ACTIONS(417), - [anon_sym_i32] = ACTIONS(417), - [anon_sym_u64] = ACTIONS(417), - [anon_sym_i64] = ACTIONS(417), - [anon_sym_u128] = ACTIONS(417), - [anon_sym_i128] = ACTIONS(417), - [anon_sym_isize] = ACTIONS(417), - [anon_sym_usize] = ACTIONS(417), - [anon_sym_f32] = ACTIONS(417), - [anon_sym_f64] = ACTIONS(417), - [anon_sym_bool] = ACTIONS(417), - [anon_sym_str] = ACTIONS(417), - [anon_sym_char] = ACTIONS(417), - [anon_sym_SQUOTE] = ACTIONS(417), - [anon_sym_as] = ACTIONS(417), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(417), - [anon_sym_const] = ACTIONS(417), - [anon_sym_continue] = ACTIONS(417), - [anon_sym_default] = ACTIONS(417), - [anon_sym_enum] = ACTIONS(417), - [anon_sym_fn] = ACTIONS(417), - [anon_sym_for] = ACTIONS(417), - [anon_sym_if] = ACTIONS(417), - [anon_sym_impl] = ACTIONS(417), - [anon_sym_let] = ACTIONS(417), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(417), - [anon_sym_mod] = ACTIONS(417), - [anon_sym_pub] = ACTIONS(417), - [anon_sym_return] = ACTIONS(417), - [anon_sym_static] = ACTIONS(417), - [anon_sym_struct] = ACTIONS(417), - [anon_sym_trait] = ACTIONS(417), - [anon_sym_type] = ACTIONS(417), - [anon_sym_union] = ACTIONS(417), - [anon_sym_unsafe] = ACTIONS(417), - [anon_sym_use] = ACTIONS(417), - [anon_sym_while] = ACTIONS(417), - [anon_sym_POUND] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_EQ] = ACTIONS(417), - [anon_sym_extern] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(415), - [anon_sym_DOT_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_EQ_EQ] = ACTIONS(415), - [anon_sym_BANG_EQ] = ACTIONS(415), - [anon_sym_LT_EQ] = ACTIONS(415), - [anon_sym_GT_EQ] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_EQ] = ACTIONS(415), - [anon_sym_DASH_EQ] = ACTIONS(415), - [anon_sym_STAR_EQ] = ACTIONS(415), - [anon_sym_SLASH_EQ] = ACTIONS(415), - [anon_sym_PERCENT_EQ] = ACTIONS(415), - [anon_sym_AMP_EQ] = ACTIONS(415), - [anon_sym_PIPE_EQ] = ACTIONS(415), - [anon_sym_CARET_EQ] = ACTIONS(415), - [anon_sym_LT_LT_EQ] = ACTIONS(415), - [anon_sym_GT_GT_EQ] = ACTIONS(415), - [anon_sym_move] = ACTIONS(417), - [anon_sym_DOT] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(415), - [aux_sym_string_literal_token1] = ACTIONS(415), - [sym_char_literal] = ACTIONS(415), - [anon_sym_true] = ACTIONS(417), - [anon_sym_false] = ACTIONS(417), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(417), - [sym_super] = ACTIONS(417), - [sym_crate] = ACTIONS(417), - [sym_metavariable] = ACTIONS(415), - [sym_raw_string_literal] = ACTIONS(415), - [sym_float_literal] = ACTIONS(415), - [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), - [anon_sym_SEMI] = ACTIONS(423), - [anon_sym_macro_rules_BANG] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(423), - [anon_sym_LBRACE] = 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_SQUOTE] = ACTIONS(425), - [anon_sym_as] = ACTIONS(425), - [anon_sym_async] = ACTIONS(425), - [anon_sym_break] = ACTIONS(425), - [anon_sym_const] = ACTIONS(425), - [anon_sym_continue] = ACTIONS(425), - [anon_sym_default] = ACTIONS(425), - [anon_sym_enum] = ACTIONS(425), - [anon_sym_fn] = ACTIONS(425), - [anon_sym_for] = ACTIONS(425), - [anon_sym_if] = ACTIONS(425), - [anon_sym_impl] = ACTIONS(425), - [anon_sym_let] = ACTIONS(425), - [anon_sym_loop] = ACTIONS(425), - [anon_sym_match] = ACTIONS(425), - [anon_sym_mod] = ACTIONS(425), - [anon_sym_pub] = ACTIONS(425), - [anon_sym_return] = ACTIONS(425), - [anon_sym_static] = ACTIONS(425), - [anon_sym_struct] = ACTIONS(425), - [anon_sym_trait] = ACTIONS(425), - [anon_sym_type] = ACTIONS(425), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_use] = ACTIONS(425), - [anon_sym_while] = ACTIONS(425), - [anon_sym_POUND] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym_extern] = ACTIONS(425), - [anon_sym_LT] = ACTIONS(425), - [anon_sym_GT] = ACTIONS(425), - [anon_sym_COLON_COLON] = ACTIONS(423), - [anon_sym_AMP] = ACTIONS(425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(423), - [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_move] = ACTIONS(425), - [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), - [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_block_comment] = ACTIONS(3), - }, - [50] = { - [ts_builtin_sym_end] = ACTIONS(427), - [sym_identifier] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(427), - [anon_sym_macro_rules_BANG] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = 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_SQUOTE] = ACTIONS(429), - [anon_sym_as] = ACTIONS(429), - [anon_sym_async] = 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_while] = ACTIONS(429), - [anon_sym_POUND] = ACTIONS(427), - [anon_sym_BANG] = ACTIONS(429), - [anon_sym_EQ] = ACTIONS(429), - [anon_sym_extern] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_COLON_COLON] = ACTIONS(427), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(427), - [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_move] = ACTIONS(429), - [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), - }, - [51] = { - [ts_builtin_sym_end] = ACTIONS(431), - [sym_identifier] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(431), - [anon_sym_macro_rules_BANG] = ACTIONS(431), - [anon_sym_LPAREN] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(431), - [anon_sym_u8] = ACTIONS(433), - [anon_sym_i8] = ACTIONS(433), - [anon_sym_u16] = ACTIONS(433), - [anon_sym_i16] = ACTIONS(433), - [anon_sym_u32] = ACTIONS(433), - [anon_sym_i32] = ACTIONS(433), - [anon_sym_u64] = ACTIONS(433), - [anon_sym_i64] = ACTIONS(433), - [anon_sym_u128] = ACTIONS(433), - [anon_sym_i128] = ACTIONS(433), - [anon_sym_isize] = ACTIONS(433), - [anon_sym_usize] = ACTIONS(433), - [anon_sym_f32] = ACTIONS(433), - [anon_sym_f64] = ACTIONS(433), - [anon_sym_bool] = ACTIONS(433), - [anon_sym_str] = ACTIONS(433), - [anon_sym_char] = ACTIONS(433), - [anon_sym_SQUOTE] = ACTIONS(433), - [anon_sym_as] = ACTIONS(433), - [anon_sym_async] = ACTIONS(433), - [anon_sym_break] = ACTIONS(433), - [anon_sym_const] = ACTIONS(433), - [anon_sym_continue] = ACTIONS(433), - [anon_sym_default] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(433), - [anon_sym_fn] = ACTIONS(433), - [anon_sym_for] = ACTIONS(433), - [anon_sym_if] = ACTIONS(433), - [anon_sym_impl] = ACTIONS(433), - [anon_sym_let] = ACTIONS(433), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(433), - [anon_sym_mod] = ACTIONS(433), - [anon_sym_pub] = ACTIONS(433), - [anon_sym_return] = ACTIONS(433), - [anon_sym_static] = ACTIONS(433), - [anon_sym_struct] = ACTIONS(433), - [anon_sym_trait] = ACTIONS(433), - [anon_sym_type] = ACTIONS(433), - [anon_sym_union] = ACTIONS(433), - [anon_sym_unsafe] = ACTIONS(433), - [anon_sym_use] = ACTIONS(433), - [anon_sym_while] = ACTIONS(433), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_EQ] = ACTIONS(433), - [anon_sym_extern] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_COLON_COLON] = ACTIONS(431), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [anon_sym_DOT_DOT] = ACTIONS(433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(431), - [anon_sym_PIPE_PIPE] = ACTIONS(431), - [anon_sym_PIPE] = ACTIONS(433), - [anon_sym_CARET] = ACTIONS(433), - [anon_sym_EQ_EQ] = ACTIONS(431), - [anon_sym_BANG_EQ] = ACTIONS(431), - [anon_sym_LT_EQ] = ACTIONS(431), - [anon_sym_GT_EQ] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(433), - [anon_sym_PLUS_EQ] = ACTIONS(431), - [anon_sym_DASH_EQ] = ACTIONS(431), - [anon_sym_STAR_EQ] = ACTIONS(431), - [anon_sym_SLASH_EQ] = ACTIONS(431), - [anon_sym_PERCENT_EQ] = ACTIONS(431), - [anon_sym_AMP_EQ] = ACTIONS(431), - [anon_sym_PIPE_EQ] = ACTIONS(431), - [anon_sym_CARET_EQ] = ACTIONS(431), - [anon_sym_LT_LT_EQ] = ACTIONS(431), - [anon_sym_GT_GT_EQ] = ACTIONS(431), - [anon_sym_move] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(431), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(431), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(433), - [sym_super] = ACTIONS(433), - [sym_crate] = ACTIONS(433), - [sym_metavariable] = ACTIONS(431), - [sym_raw_string_literal] = ACTIONS(431), - [sym_float_literal] = ACTIONS(431), - [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_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), - [sym_block_comment] = ACTIONS(3), - }, - [54] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1117), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_tuple_expression_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(443), - [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), - }, - [55] = { - [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] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1117), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_tuple_expression_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(443), - [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), - }, - [57] = { - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(453), - [anon_sym_macro_rules_BANG] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u128] = ACTIONS(451), - [anon_sym_i128] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_str] = ACTIONS(451), - [anon_sym_char] = ACTIONS(451), - [anon_sym_SQUOTE] = ACTIONS(451), - [anon_sym_as] = ACTIONS(455), - [anon_sym_async] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_const] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_default] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(451), - [anon_sym_fn] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_impl] = ACTIONS(451), - [anon_sym_let] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_mod] = ACTIONS(451), - [anon_sym_pub] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_static] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_trait] = ACTIONS(451), - [anon_sym_type] = ACTIONS(451), - [anon_sym_union] = ACTIONS(451), - [anon_sym_unsafe] = ACTIONS(451), - [anon_sym_use] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_POUND] = ACTIONS(449), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_extern] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_move] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(455), - [sym_integer_literal] = ACTIONS(449), - [aux_sym_string_literal_token1] = ACTIONS(449), - [sym_char_literal] = ACTIONS(449), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(451), - [sym_super] = ACTIONS(451), - [sym_crate] = ACTIONS(451), - [sym_metavariable] = ACTIONS(449), - [sym_raw_string_literal] = ACTIONS(449), - [sym_float_literal] = ACTIONS(449), - [sym_block_comment] = ACTIONS(3), - }, - [58] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_tuple_expression_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(457), - [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), - }, - [59] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_tuple_expression_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(462), - [anon_sym_RPAREN] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(473), - [anon_sym_u8] = ACTIONS(476), - [anon_sym_i8] = ACTIONS(476), - [anon_sym_u16] = ACTIONS(476), - [anon_sym_i16] = ACTIONS(476), - [anon_sym_u32] = ACTIONS(476), - [anon_sym_i32] = ACTIONS(476), - [anon_sym_u64] = ACTIONS(476), - [anon_sym_i64] = ACTIONS(476), - [anon_sym_u128] = ACTIONS(476), - [anon_sym_i128] = ACTIONS(476), - [anon_sym_isize] = ACTIONS(476), - [anon_sym_usize] = ACTIONS(476), - [anon_sym_f32] = ACTIONS(476), - [anon_sym_f64] = ACTIONS(476), - [anon_sym_bool] = ACTIONS(476), - [anon_sym_str] = ACTIONS(476), - [anon_sym_char] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(479), - [anon_sym_async] = ACTIONS(482), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(488), - [anon_sym_continue] = ACTIONS(491), - [anon_sym_default] = ACTIONS(494), - [anon_sym_for] = ACTIONS(497), - [anon_sym_if] = ACTIONS(500), - [anon_sym_loop] = ACTIONS(503), - [anon_sym_match] = ACTIONS(506), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(494), - [anon_sym_unsafe] = ACTIONS(512), - [anon_sym_while] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_COLON_COLON] = ACTIONS(521), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_PIPE] = ACTIONS(530), - [anon_sym_move] = ACTIONS(533), - [sym_integer_literal] = ACTIONS(536), - [aux_sym_string_literal_token1] = ACTIONS(539), - [sym_char_literal] = ACTIONS(536), - [anon_sym_true] = ACTIONS(542), - [anon_sym_false] = ACTIONS(542), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(545), - [sym_super] = ACTIONS(548), - [sym_crate] = ACTIONS(548), - [sym_metavariable] = ACTIONS(551), - [sym_raw_string_literal] = ACTIONS(536), - [sym_float_literal] = ACTIONS(536), - [sym_block_comment] = ACTIONS(3), - }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(554), - [sym_identifier] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_macro_rules_BANG] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_as] = ACTIONS(455), - [anon_sym_async] = ACTIONS(556), - [anon_sym_break] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_continue] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_enum] = ACTIONS(556), - [anon_sym_fn] = ACTIONS(556), - [anon_sym_for] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_impl] = ACTIONS(556), - [anon_sym_let] = ACTIONS(556), - [anon_sym_loop] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_mod] = ACTIONS(556), - [anon_sym_pub] = ACTIONS(556), - [anon_sym_return] = ACTIONS(556), - [anon_sym_static] = ACTIONS(556), - [anon_sym_struct] = ACTIONS(556), - [anon_sym_trait] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_unsafe] = ACTIONS(556), - [anon_sym_use] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_extern] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_move] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(455), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), - [sym_block_comment] = ACTIONS(3), - }, - [61] = { - [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(560), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(558), - [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(560), - [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(560), - [anon_sym_extern] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_COLON_COLON] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(558), - [anon_sym_DOT_DOT] = ACTIONS(560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_BANG_EQ] = ACTIONS(558), - [anon_sym_LT_EQ] = ACTIONS(558), - [anon_sym_GT_EQ] = ACTIONS(558), - [anon_sym_LT_LT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(560), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_PLUS_EQ] = ACTIONS(558), - [anon_sym_DASH_EQ] = ACTIONS(558), - [anon_sym_STAR_EQ] = ACTIONS(558), - [anon_sym_SLASH_EQ] = ACTIONS(558), - [anon_sym_PERCENT_EQ] = ACTIONS(558), - [anon_sym_AMP_EQ] = ACTIONS(558), - [anon_sym_PIPE_EQ] = ACTIONS(558), - [anon_sym_CARET_EQ] = ACTIONS(558), - [anon_sym_LT_LT_EQ] = ACTIONS(558), - [anon_sym_GT_GT_EQ] = ACTIONS(558), - [anon_sym_move] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(560), - [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), - }, - [62] = { - [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(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), - }, - [63] = { - [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), - }, - [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] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1093), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_tuple_expression_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(586), - [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), - }, - [69] = { - [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), - }, - [70] = { - [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), - }, - [71] = { - [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), - }, - [72] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1172), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1027), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_DASH_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [73] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(608), - [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), - }, - [74] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1108), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [75] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(612), - [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), - }, - [76] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(289), - [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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [77] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1031), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1021), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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_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_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), - }, - [78] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1134), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [79] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1145), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(289), - [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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [80] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1140), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(622), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [81] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1149), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(289), - [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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [82] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1054), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - [sym_mutable_specifier] = ACTIONS(626), - [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), - }, - [83] = { - [sym_identifier] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(453), - [anon_sym_macro_rules_BANG] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u128] = ACTIONS(451), - [anon_sym_i128] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_str] = ACTIONS(451), - [anon_sym_char] = ACTIONS(451), - [anon_sym_SQUOTE] = ACTIONS(451), - [anon_sym_as] = ACTIONS(455), - [anon_sym_async] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_const] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_default] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(451), - [anon_sym_fn] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_impl] = ACTIONS(451), - [anon_sym_let] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_mod] = ACTIONS(451), - [anon_sym_pub] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_static] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_trait] = ACTIONS(451), - [anon_sym_type] = ACTIONS(451), - [anon_sym_union] = ACTIONS(451), - [anon_sym_unsafe] = ACTIONS(451), - [anon_sym_use] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_POUND] = ACTIONS(449), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_extern] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_move] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(455), - [sym_integer_literal] = ACTIONS(449), - [aux_sym_string_literal_token1] = ACTIONS(449), - [sym_char_literal] = ACTIONS(449), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(451), - [sym_super] = ACTIONS(451), - [sym_crate] = ACTIONS(451), - [sym_metavariable] = ACTIONS(449), - [sym_raw_string_literal] = ACTIONS(449), - [sym_float_literal] = ACTIONS(449), - [sym_block_comment] = ACTIONS(3), - }, - [84] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1202), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1021), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_DASH_GT] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [85] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1141), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(628), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [86] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1025), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1027), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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_DASH_GT] = ACTIONS(602), - [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_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), - }, - [87] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1120), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(630), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [88] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(632), - [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), - }, - [89] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1186), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [sym_mutable_specifier] = ACTIONS(634), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [90] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1127), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(636), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [91] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [92] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [93] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1209), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [94] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1194), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [95] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1169), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [96] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1094), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [97] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1148), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [98] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [99] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1102), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(242), - [sym_if_let_expression] = STATE(242), - [sym_match_expression] = STATE(242), - [sym_while_expression] = STATE(242), - [sym_while_let_expression] = STATE(242), - [sym_loop_expression] = STATE(242), - [sym_for_expression] = STATE(242), - [sym_const_block] = STATE(242), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2390), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(242), - [sym_async_block] = STATE(242), - [sym_block] = STATE(242), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(638), - [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(640), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(644), - [anon_sym_if] = ACTIONS(646), - [anon_sym_loop] = ACTIONS(648), - [anon_sym_match] = ACTIONS(650), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_while] = ACTIONS(654), - [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), - }, - [100] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1173), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [101] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1116), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [102] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1210), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(242), - [sym_if_let_expression] = STATE(242), - [sym_match_expression] = STATE(242), - [sym_while_expression] = STATE(242), - [sym_while_let_expression] = STATE(242), - [sym_loop_expression] = STATE(242), - [sym_for_expression] = STATE(242), - [sym_const_block] = STATE(242), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2390), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(242), - [sym_async_block] = STATE(242), - [sym_block] = STATE(242), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(638), - [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(640), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(644), - [anon_sym_if] = ACTIONS(646), - [anon_sym_loop] = ACTIONS(648), - [anon_sym_match] = ACTIONS(650), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_while] = ACTIONS(654), - [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), - }, - [103] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1012), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [104] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1174), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [105] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1144), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [106] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [107] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1034), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [108] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1161), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [109] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1095), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [110] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1177), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [111] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1014), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [112] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1023), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [113] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1138), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [114] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [115] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1181), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [116] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1017), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [117] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1159), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [118] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1035), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [119] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(1755), - [sym_variadic_parameter] = STATE(1755), - [sym_parameter] = STATE(1755), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1629), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_RPAREN] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(716), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [120] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1167), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [121] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [122] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1024), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [123] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1121), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [124] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1044), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [125] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1165), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [126] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1199), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [127] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1160), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [128] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1143), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [129] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [130] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [131] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1214), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [132] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1060), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [133] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1123), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [134] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [135] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1162), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [136] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1106), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [137] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(1755), - [sym_variadic_parameter] = STATE(1755), - [sym_parameter] = STATE(1755), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1629), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(724), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(716), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [138] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [139] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(794), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [140] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [141] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1170), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [142] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1158), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [143] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1156), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [144] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1211), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [145] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1197), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [146] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1195), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [147] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1191), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [148] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1045), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [149] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1146), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [150] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1203), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [151] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(794), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1109), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [153] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1050), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [154] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1175), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [155] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1168), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [156] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1063), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [157] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1164), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [158] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(1755), - [sym_variadic_parameter] = STATE(1755), - [sym_parameter] = STATE(1755), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1629), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(716), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [159] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1178), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [160] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(1755), - [sym_variadic_parameter] = STATE(1755), - [sym_parameter] = STATE(1755), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(738), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [161] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1101), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [162] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1112), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [163] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1103), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [164] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1135), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [165] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1190), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [166] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1152), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [167] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1104), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [168] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1137), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [169] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1132), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [170] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1131), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [171] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1189), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(236), - [sym_if_let_expression] = STATE(236), - [sym_match_expression] = STATE(236), - [sym_while_expression] = STATE(236), - [sym_while_let_expression] = STATE(236), - [sym_loop_expression] = STATE(236), - [sym_for_expression] = STATE(236), - [sym_const_block] = STATE(236), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2390), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(236), - [sym_async_block] = STATE(236), - [sym_block] = STATE(236), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(638), - [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(640), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(644), - [anon_sym_if] = ACTIONS(646), - [anon_sym_loop] = ACTIONS(648), - [anon_sym_match] = ACTIONS(650), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_while] = ACTIONS(654), - [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), - }, - [172] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1016), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [173] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1090), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [174] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1130), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [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(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(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [175] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1128), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(236), - [sym_if_let_expression] = STATE(236), - [sym_match_expression] = STATE(236), - [sym_while_expression] = STATE(236), - [sym_while_let_expression] = STATE(236), - [sym_loop_expression] = STATE(236), - [sym_for_expression] = STATE(236), - [sym_const_block] = STATE(236), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2390), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(236), - [sym_async_block] = STATE(236), - [sym_block] = STATE(236), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(638), - [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(640), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(644), - [anon_sym_if] = ACTIONS(646), - [anon_sym_loop] = ACTIONS(648), - [anon_sym_match] = ACTIONS(650), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_while] = ACTIONS(654), - [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), - }, - [176] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [177] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1142), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [178] = { - [sym_attribute_item] = STATE(189), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(1950), - [sym_variadic_parameter] = STATE(1950), - [sym_parameter] = STATE(1950), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1674), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(754), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(756), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [179] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1157), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [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), - }, - [180] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2006), - [sym_variadic_parameter] = STATE(2006), - [sym_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [181] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2006), - [sym_variadic_parameter] = STATE(2006), - [sym_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [182] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2006), - [sym_variadic_parameter] = STATE(2006), - [sym_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [183] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2006), - [sym_variadic_parameter] = STATE(2006), - [sym_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [184] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2006), - [sym_variadic_parameter] = STATE(2006), - [sym_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [185] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2006), - [sym_variadic_parameter] = STATE(2006), - [sym_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [186] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2006), - [sym_variadic_parameter] = STATE(2006), - [sym_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [187] = { - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2011), - [sym_variadic_parameter] = STATE(2011), - [sym_parameter] = STATE(2011), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1986), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [188] = { - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(1844), - [sym_variadic_parameter] = STATE(1844), - [sym_parameter] = STATE(1844), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1657), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [189] = { - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(1967), - [sym_variadic_parameter] = STATE(1967), - [sym_parameter] = STATE(1967), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1661), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(776), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [190] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1744), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_RPAREN] = ACTIONS(778), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(780), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(784), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(718), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [191] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1744), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(780), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(784), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(718), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [192] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1797), - [sym_bracketed_type] = STATE(2351), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2352), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1685), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(792), - [anon_sym_LPAREN] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(798), - [anon_sym_i8] = ACTIONS(798), - [anon_sym_u16] = ACTIONS(798), - [anon_sym_i16] = ACTIONS(798), - [anon_sym_u32] = ACTIONS(798), - [anon_sym_i32] = ACTIONS(798), - [anon_sym_u64] = ACTIONS(798), - [anon_sym_i64] = ACTIONS(798), - [anon_sym_u128] = ACTIONS(798), - [anon_sym_i128] = ACTIONS(798), - [anon_sym_isize] = ACTIONS(798), - [anon_sym_usize] = ACTIONS(798), - [anon_sym_f32] = ACTIONS(798), - [anon_sym_f64] = ACTIONS(798), - [anon_sym_bool] = ACTIONS(798), - [anon_sym_str] = ACTIONS(798), - [anon_sym_char] = ACTIONS(798), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(802), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(806), - [sym_super] = ACTIONS(806), - [sym_crate] = ACTIONS(806), - [sym_metavariable] = ACTIONS(808), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [193] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1744), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_RPAREN] = ACTIONS(810), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(780), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(784), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(718), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [194] = { - [sym_identifier] = ACTIONS(812), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(814), - [anon_sym_RPAREN] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(814), - [anon_sym_RBRACK] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(812), - [anon_sym_PLUS] = ACTIONS(812), - [anon_sym_STAR] = ACTIONS(812), - [anon_sym_QMARK] = ACTIONS(814), - [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(812), - [anon_sym_as] = ACTIONS(812), - [anon_sym_async] = ACTIONS(812), - [anon_sym_break] = ACTIONS(812), - [anon_sym_const] = ACTIONS(812), - [anon_sym_continue] = ACTIONS(812), - [anon_sym_default] = ACTIONS(812), - [anon_sym_for] = ACTIONS(812), - [anon_sym_if] = ACTIONS(812), - [anon_sym_loop] = ACTIONS(812), - [anon_sym_match] = ACTIONS(812), - [anon_sym_return] = ACTIONS(812), - [anon_sym_union] = ACTIONS(812), - [anon_sym_unsafe] = ACTIONS(812), - [anon_sym_while] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(812), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_LT] = ACTIONS(812), - [anon_sym_GT] = ACTIONS(812), - [anon_sym_COLON_COLON] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(812), - [anon_sym_DOT_DOT_DOT] = ACTIONS(814), - [anon_sym_DOT_DOT] = ACTIONS(812), - [anon_sym_DOT_DOT_EQ] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(812), - [anon_sym_AMP_AMP] = ACTIONS(814), - [anon_sym_PIPE_PIPE] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(812), - [anon_sym_CARET] = ACTIONS(812), - [anon_sym_EQ_EQ] = ACTIONS(814), - [anon_sym_BANG_EQ] = ACTIONS(814), - [anon_sym_LT_EQ] = ACTIONS(814), - [anon_sym_GT_EQ] = ACTIONS(814), - [anon_sym_LT_LT] = ACTIONS(812), - [anon_sym_GT_GT] = ACTIONS(812), - [anon_sym_SLASH] = ACTIONS(812), - [anon_sym_PERCENT] = ACTIONS(812), - [anon_sym_PLUS_EQ] = ACTIONS(814), - [anon_sym_DASH_EQ] = ACTIONS(814), - [anon_sym_STAR_EQ] = ACTIONS(814), - [anon_sym_SLASH_EQ] = ACTIONS(814), - [anon_sym_PERCENT_EQ] = ACTIONS(814), - [anon_sym_AMP_EQ] = ACTIONS(814), - [anon_sym_PIPE_EQ] = ACTIONS(814), - [anon_sym_CARET_EQ] = ACTIONS(814), - [anon_sym_LT_LT_EQ] = ACTIONS(814), - [anon_sym_GT_GT_EQ] = ACTIONS(814), - [anon_sym_move] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(812), - [sym_integer_literal] = ACTIONS(814), - [aux_sym_string_literal_token1] = ACTIONS(814), - [sym_char_literal] = ACTIONS(814), - [anon_sym_true] = ACTIONS(812), - [anon_sym_false] = ACTIONS(812), - [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(814), - [sym_float_literal] = ACTIONS(814), - [sym_block_comment] = ACTIONS(3), - }, - [195] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1311), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(540), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1369), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(820), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(822), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [196] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1331), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1366), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(784), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(718), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [197] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1311), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(541), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1369), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(784), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(718), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [198] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1331), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1366), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(826), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [199] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1331), - [sym_bracketed_type] = STATE(2351), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2352), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1366), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(792), - [anon_sym_LPAREN] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(798), - [anon_sym_i8] = ACTIONS(798), - [anon_sym_u16] = ACTIONS(798), - [anon_sym_i16] = ACTIONS(798), - [anon_sym_u32] = ACTIONS(798), - [anon_sym_i32] = ACTIONS(798), - [anon_sym_u64] = ACTIONS(798), - [anon_sym_i64] = ACTIONS(798), - [anon_sym_u128] = ACTIONS(798), - [anon_sym_i128] = ACTIONS(798), - [anon_sym_isize] = ACTIONS(798), - [anon_sym_usize] = ACTIONS(798), - [anon_sym_f32] = ACTIONS(798), - [anon_sym_f64] = ACTIONS(798), - [anon_sym_bool] = ACTIONS(798), - [anon_sym_str] = ACTIONS(798), - [anon_sym_char] = ACTIONS(798), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(802), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(806), - [sym_super] = ACTIONS(806), - [sym_crate] = ACTIONS(806), - [sym_metavariable] = ACTIONS(808), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [200] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1331), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1366), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [201] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1331), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1366), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(784), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(828), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [202] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1311), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(541), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1369), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(830), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [203] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1311), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(540), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1369), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(784), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(834), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [204] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1311), - [sym_bracketed_type] = STATE(2351), - [sym_lifetime] = STATE(541), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2352), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1369), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(792), - [anon_sym_LPAREN] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(798), - [anon_sym_i8] = ACTIONS(798), - [anon_sym_u16] = ACTIONS(798), - [anon_sym_i16] = ACTIONS(798), - [anon_sym_u32] = ACTIONS(798), - [anon_sym_i32] = ACTIONS(798), - [anon_sym_u64] = ACTIONS(798), - [anon_sym_i64] = ACTIONS(798), - [anon_sym_u128] = ACTIONS(798), - [anon_sym_i128] = ACTIONS(798), - [anon_sym_isize] = ACTIONS(798), - [anon_sym_usize] = ACTIONS(798), - [anon_sym_f32] = ACTIONS(798), - [anon_sym_f64] = ACTIONS(798), - [anon_sym_bool] = ACTIONS(798), - [anon_sym_str] = ACTIONS(798), - [anon_sym_char] = ACTIONS(798), - [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(802), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(806), - [sym_super] = ACTIONS(806), - [sym_crate] = ACTIONS(806), - [sym_metavariable] = ACTIONS(808), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [205] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1364), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(838), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(840), - [anon_sym_u8] = ACTIONS(838), - [anon_sym_i8] = ACTIONS(838), - [anon_sym_u16] = ACTIONS(838), - [anon_sym_i16] = ACTIONS(838), - [anon_sym_u32] = ACTIONS(838), - [anon_sym_i32] = ACTIONS(838), - [anon_sym_u64] = ACTIONS(838), - [anon_sym_i64] = ACTIONS(838), - [anon_sym_u128] = ACTIONS(838), - [anon_sym_i128] = ACTIONS(838), - [anon_sym_isize] = ACTIONS(838), - [anon_sym_usize] = ACTIONS(838), - [anon_sym_f32] = ACTIONS(838), - [anon_sym_f64] = ACTIONS(838), - [anon_sym_bool] = ACTIONS(838), - [anon_sym_str] = ACTIONS(838), - [anon_sym_char] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(838), - [anon_sym_async] = ACTIONS(838), - [anon_sym_break] = ACTIONS(838), - [anon_sym_const] = ACTIONS(838), - [anon_sym_continue] = ACTIONS(838), - [anon_sym_default] = ACTIONS(838), - [anon_sym_for] = ACTIONS(838), - [anon_sym_if] = ACTIONS(838), - [anon_sym_loop] = ACTIONS(838), - [anon_sym_match] = ACTIONS(838), - [anon_sym_return] = ACTIONS(838), - [anon_sym_union] = ACTIONS(838), - [anon_sym_unsafe] = ACTIONS(838), - [anon_sym_while] = ACTIONS(838), - [anon_sym_BANG] = ACTIONS(840), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_DASH_GT] = ACTIONS(840), - [anon_sym_LT] = ACTIONS(840), - [anon_sym_COLON_COLON] = ACTIONS(840), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(840), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(840), - [anon_sym_DASH] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(840), - [anon_sym_move] = ACTIONS(838), - [sym_integer_literal] = ACTIONS(840), - [aux_sym_string_literal_token1] = ACTIONS(840), - [sym_char_literal] = ACTIONS(840), - [anon_sym_true] = ACTIONS(838), - [anon_sym_false] = ACTIONS(838), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(838), - [sym_super] = ACTIONS(838), - [sym_crate] = ACTIONS(838), - [sym_metavariable] = ACTIONS(840), - [sym_raw_string_literal] = ACTIONS(840), - [sym_float_literal] = ACTIONS(840), - [sym_block_comment] = ACTIONS(3), - }, - [206] = { - [sym_else_clause] = STATE(230), - [sym_identifier] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(371), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(371), - [anon_sym_u8] = ACTIONS(373), - [anon_sym_i8] = ACTIONS(373), - [anon_sym_u16] = ACTIONS(373), - [anon_sym_i16] = ACTIONS(373), - [anon_sym_u32] = ACTIONS(373), - [anon_sym_i32] = ACTIONS(373), - [anon_sym_u64] = ACTIONS(373), - [anon_sym_i64] = ACTIONS(373), - [anon_sym_u128] = ACTIONS(373), - [anon_sym_i128] = ACTIONS(373), - [anon_sym_isize] = ACTIONS(373), - [anon_sym_usize] = ACTIONS(373), - [anon_sym_f32] = ACTIONS(373), - [anon_sym_f64] = ACTIONS(373), - [anon_sym_bool] = ACTIONS(373), - [anon_sym_str] = ACTIONS(373), - [anon_sym_char] = ACTIONS(373), - [anon_sym_as] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(371), - [anon_sym_ref] = ACTIONS(373), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(371), - [anon_sym__] = ACTIONS(373), - [anon_sym_AMP] = ACTIONS(373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT_EQ] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(371), - [anon_sym_PIPE_PIPE] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(373), - [anon_sym_CARET] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(371), - [anon_sym_BANG_EQ] = ACTIONS(371), - [anon_sym_LT_EQ] = ACTIONS(371), - [anon_sym_GT_EQ] = ACTIONS(371), - [anon_sym_LT_LT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_SLASH] = ACTIONS(373), - [anon_sym_PERCENT] = ACTIONS(373), - [anon_sym_PLUS_EQ] = ACTIONS(371), - [anon_sym_DASH_EQ] = ACTIONS(371), - [anon_sym_STAR_EQ] = ACTIONS(371), - [anon_sym_SLASH_EQ] = ACTIONS(371), - [anon_sym_PERCENT_EQ] = ACTIONS(371), - [anon_sym_AMP_EQ] = ACTIONS(371), - [anon_sym_PIPE_EQ] = ACTIONS(371), - [anon_sym_CARET_EQ] = ACTIONS(371), - [anon_sym_LT_LT_EQ] = ACTIONS(371), - [anon_sym_GT_GT_EQ] = ACTIONS(371), - [anon_sym_else] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(371), - [aux_sym_string_literal_token1] = ACTIONS(371), - [sym_char_literal] = ACTIONS(371), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(373), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(371), - [sym_raw_string_literal] = ACTIONS(371), - [sym_float_literal] = ACTIONS(371), - [sym_block_comment] = ACTIONS(3), - }, - [207] = { - [sym_else_clause] = STATE(240), - [sym_identifier] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_RBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_u8] = ACTIONS(379), - [anon_sym_i8] = ACTIONS(379), - [anon_sym_u16] = ACTIONS(379), - [anon_sym_i16] = ACTIONS(379), - [anon_sym_u32] = ACTIONS(379), - [anon_sym_i32] = ACTIONS(379), - [anon_sym_u64] = ACTIONS(379), - [anon_sym_i64] = ACTIONS(379), - [anon_sym_u128] = ACTIONS(379), - [anon_sym_i128] = ACTIONS(379), - [anon_sym_isize] = ACTIONS(379), - [anon_sym_usize] = ACTIONS(379), - [anon_sym_f32] = ACTIONS(379), - [anon_sym_f64] = ACTIONS(379), - [anon_sym_bool] = ACTIONS(379), - [anon_sym_str] = ACTIONS(379), - [anon_sym_char] = ACTIONS(379), - [anon_sym_as] = ACTIONS(379), - [anon_sym_const] = ACTIONS(379), - [anon_sym_POUND] = ACTIONS(377), - [anon_sym_EQ] = ACTIONS(379), - [anon_sym_COMMA] = ACTIONS(377), - [anon_sym_ref] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(379), - [anon_sym_COLON_COLON] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(377), - [sym_mutable_specifier] = ACTIONS(379), - [anon_sym_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(377), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_AMP_AMP] = ACTIONS(377), - [anon_sym_PIPE_PIPE] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(379), - [anon_sym_CARET] = ACTIONS(379), - [anon_sym_EQ_EQ] = ACTIONS(377), - [anon_sym_BANG_EQ] = ACTIONS(377), - [anon_sym_LT_EQ] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(377), - [anon_sym_LT_LT] = ACTIONS(379), - [anon_sym_GT_GT] = ACTIONS(379), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_PERCENT] = ACTIONS(379), - [anon_sym_PLUS_EQ] = ACTIONS(377), - [anon_sym_DASH_EQ] = ACTIONS(377), - [anon_sym_STAR_EQ] = ACTIONS(377), - [anon_sym_SLASH_EQ] = ACTIONS(377), - [anon_sym_PERCENT_EQ] = ACTIONS(377), - [anon_sym_AMP_EQ] = ACTIONS(377), - [anon_sym_PIPE_EQ] = ACTIONS(377), - [anon_sym_CARET_EQ] = ACTIONS(377), - [anon_sym_LT_LT_EQ] = ACTIONS(377), - [anon_sym_GT_GT_EQ] = ACTIONS(377), - [anon_sym_else] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(379), - [sym_integer_literal] = ACTIONS(377), - [aux_sym_string_literal_token1] = ACTIONS(377), - [sym_char_literal] = ACTIONS(377), - [anon_sym_true] = ACTIONS(379), - [anon_sym_false] = ACTIONS(379), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(379), - [sym_super] = ACTIONS(379), - [sym_crate] = ACTIONS(379), - [sym_metavariable] = ACTIONS(377), - [sym_raw_string_literal] = ACTIONS(377), - [sym_float_literal] = ACTIONS(377), - [sym_block_comment] = ACTIONS(3), - }, - [208] = { - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_as] = ACTIONS(393), - [anon_sym_const] = ACTIONS(393), - [anon_sym_POUND] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_COMMA] = ACTIONS(391), - [anon_sym_ref] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(391), - [anon_sym__] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [sym_mutable_specifier] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_else] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [sym_integer_literal] = ACTIONS(391), - [aux_sym_string_literal_token1] = ACTIONS(391), - [sym_char_literal] = ACTIONS(391), - [anon_sym_true] = ACTIONS(393), - [anon_sym_false] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(393), - [sym_super] = ACTIONS(393), - [sym_crate] = ACTIONS(393), - [sym_metavariable] = ACTIONS(391), - [sym_raw_string_literal] = ACTIONS(391), - [sym_float_literal] = ACTIONS(391), - [sym_block_comment] = ACTIONS(3), - }, - [209] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1750), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1749), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_type_binding] = STATE(2125), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [sym_block] = STATE(2125), - [sym__literal] = STATE(2125), - [sym_string_literal] = STATE(2100), - [sym_boolean_literal] = STATE(2100), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(854), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [210] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1750), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1749), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_type_binding] = STATE(2125), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [sym_block] = STATE(2125), - [sym__literal] = STATE(2125), - [sym_string_literal] = STATE(2100), - [sym_boolean_literal] = STATE(2100), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [211] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1750), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1749), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_type_binding] = STATE(2125), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [sym_block] = STATE(2125), - [sym__literal] = STATE(2125), - [sym_string_literal] = STATE(2100), - [sym_boolean_literal] = STATE(2100), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(868), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [212] = { - [sym_identifier] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(389), - [anon_sym_i8] = ACTIONS(389), - [anon_sym_u16] = ACTIONS(389), - [anon_sym_i16] = ACTIONS(389), - [anon_sym_u32] = ACTIONS(389), - [anon_sym_i32] = ACTIONS(389), - [anon_sym_u64] = ACTIONS(389), - [anon_sym_i64] = ACTIONS(389), - [anon_sym_u128] = ACTIONS(389), - [anon_sym_i128] = ACTIONS(389), - [anon_sym_isize] = ACTIONS(389), - [anon_sym_usize] = ACTIONS(389), - [anon_sym_f32] = ACTIONS(389), - [anon_sym_f64] = ACTIONS(389), - [anon_sym_bool] = ACTIONS(389), - [anon_sym_str] = ACTIONS(389), - [anon_sym_char] = ACTIONS(389), - [anon_sym_as] = ACTIONS(389), - [anon_sym_const] = ACTIONS(389), - [anon_sym_POUND] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_COMMA] = ACTIONS(387), - [anon_sym_ref] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_COLON_COLON] = ACTIONS(387), - [anon_sym__] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym_mutable_specifier] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_else] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(389), - [sym_integer_literal] = ACTIONS(387), - [aux_sym_string_literal_token1] = ACTIONS(387), - [sym_char_literal] = ACTIONS(387), - [anon_sym_true] = ACTIONS(389), - [anon_sym_false] = ACTIONS(389), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(389), - [sym_super] = ACTIONS(389), - [sym_crate] = ACTIONS(389), - [sym_metavariable] = ACTIONS(387), - [sym_raw_string_literal] = ACTIONS(387), - [sym_float_literal] = ACTIONS(387), - [sym_block_comment] = ACTIONS(3), - }, - [213] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1750), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1749), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_type_binding] = STATE(2125), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [sym_block] = STATE(2125), - [sym__literal] = STATE(2125), - [sym_string_literal] = STATE(2100), - [sym_boolean_literal] = STATE(2100), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(870), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [214] = { - [sym_identifier] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(397), - [anon_sym_i8] = ACTIONS(397), - [anon_sym_u16] = ACTIONS(397), - [anon_sym_i16] = ACTIONS(397), - [anon_sym_u32] = ACTIONS(397), - [anon_sym_i32] = ACTIONS(397), - [anon_sym_u64] = ACTIONS(397), - [anon_sym_i64] = ACTIONS(397), - [anon_sym_u128] = ACTIONS(397), - [anon_sym_i128] = ACTIONS(397), - [anon_sym_isize] = ACTIONS(397), - [anon_sym_usize] = ACTIONS(397), - [anon_sym_f32] = ACTIONS(397), - [anon_sym_f64] = ACTIONS(397), - [anon_sym_bool] = ACTIONS(397), - [anon_sym_str] = ACTIONS(397), - [anon_sym_char] = ACTIONS(397), - [anon_sym_as] = ACTIONS(397), - [anon_sym_const] = ACTIONS(397), - [anon_sym_POUND] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(395), - [anon_sym_ref] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym__] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_mutable_specifier] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_else] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(397), - [sym_integer_literal] = ACTIONS(395), - [aux_sym_string_literal_token1] = ACTIONS(395), - [sym_char_literal] = ACTIONS(395), - [anon_sym_true] = ACTIONS(397), - [anon_sym_false] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_crate] = ACTIONS(397), - [sym_metavariable] = ACTIONS(395), - [sym_raw_string_literal] = ACTIONS(395), - [sym_float_literal] = ACTIONS(395), - [sym_block_comment] = ACTIONS(3), - }, - [215] = { - [sym_identifier] = ACTIONS(584), - [anon_sym_LPAREN] = 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_as] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_ref] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_COLON_COLON] = ACTIONS(582), - [anon_sym__] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(582), - [sym_mutable_specifier] = ACTIONS(584), - [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_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), - }, - [216] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(875), - [anon_sym_RPAREN] = ACTIONS(878), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_RBRACK] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(872), - [anon_sym_i8] = ACTIONS(872), - [anon_sym_u16] = ACTIONS(872), - [anon_sym_i16] = ACTIONS(872), - [anon_sym_u32] = ACTIONS(872), - [anon_sym_i32] = ACTIONS(872), - [anon_sym_u64] = ACTIONS(872), - [anon_sym_i64] = ACTIONS(872), - [anon_sym_u128] = ACTIONS(872), - [anon_sym_i128] = ACTIONS(872), - [anon_sym_isize] = ACTIONS(872), - [anon_sym_usize] = ACTIONS(872), - [anon_sym_f32] = ACTIONS(872), - [anon_sym_f64] = ACTIONS(872), - [anon_sym_bool] = ACTIONS(872), - [anon_sym_str] = ACTIONS(872), - [anon_sym_char] = ACTIONS(872), - [aux_sym__non_special_token_token1] = ACTIONS(872), - [anon_sym_SQUOTE] = ACTIONS(872), - [anon_sym_as] = ACTIONS(872), - [anon_sym_async] = ACTIONS(872), - [anon_sym_await] = ACTIONS(872), - [anon_sym_break] = ACTIONS(872), - [anon_sym_const] = ACTIONS(872), - [anon_sym_continue] = ACTIONS(872), - [anon_sym_default] = ACTIONS(872), - [anon_sym_enum] = ACTIONS(872), - [anon_sym_fn] = ACTIONS(872), - [anon_sym_for] = ACTIONS(872), - [anon_sym_if] = ACTIONS(872), - [anon_sym_impl] = ACTIONS(872), - [anon_sym_let] = ACTIONS(872), - [anon_sym_loop] = ACTIONS(872), - [anon_sym_match] = ACTIONS(872), - [anon_sym_mod] = ACTIONS(872), - [anon_sym_pub] = ACTIONS(872), - [anon_sym_return] = ACTIONS(872), - [anon_sym_static] = ACTIONS(872), - [anon_sym_struct] = ACTIONS(872), - [anon_sym_trait] = ACTIONS(872), - [anon_sym_type] = ACTIONS(872), - [anon_sym_union] = ACTIONS(872), - [anon_sym_unsafe] = ACTIONS(872), - [anon_sym_use] = ACTIONS(872), - [anon_sym_where] = ACTIONS(872), - [anon_sym_while] = ACTIONS(872), - [sym_mutable_specifier] = ACTIONS(872), - [sym_integer_literal] = ACTIONS(889), - [aux_sym_string_literal_token1] = ACTIONS(892), - [sym_char_literal] = ACTIONS(889), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(900), - [sym_raw_string_literal] = ACTIONS(889), - [sym_float_literal] = ACTIONS(889), - [sym_block_comment] = ACTIONS(3), - }, - [217] = { - [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_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), - }, - [218] = { - [sym_empty_statement] = STATE(226), - [sym_macro_definition] = STATE(226), - [sym_attribute_item] = STATE(226), - [sym_inner_attribute_item] = STATE(226), - [sym_mod_item] = STATE(226), - [sym_foreign_mod_item] = STATE(226), - [sym_struct_item] = STATE(226), - [sym_union_item] = STATE(226), - [sym_enum_item] = STATE(226), - [sym_extern_crate_declaration] = STATE(226), - [sym_const_item] = STATE(226), - [sym_static_item] = STATE(226), - [sym_type_item] = STATE(226), - [sym_function_item] = STATE(226), - [sym_function_signature_item] = STATE(226), - [sym_function_modifiers] = STATE(2399), - [sym_impl_item] = STATE(226), - [sym_trait_item] = STATE(226), - [sym_associated_type] = STATE(226), - [sym_let_declaration] = STATE(226), - [sym_use_declaration] = STATE(226), - [sym_extern_modifier] = STATE(1436), - [sym_visibility_modifier] = STATE(1261), - [sym_bracketed_type] = STATE(2237), - [sym_generic_type_with_turbofish] = STATE(2403), - [sym_macro_invocation] = STATE(226), - [sym_scoped_identifier] = STATE(2024), - [aux_sym_declaration_list_repeat1] = STATE(226), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_macro_rules_BANG] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(911), - [anon_sym_i8] = ACTIONS(911), - [anon_sym_u16] = ACTIONS(911), - [anon_sym_i16] = ACTIONS(911), - [anon_sym_u32] = ACTIONS(911), - [anon_sym_i32] = ACTIONS(911), - [anon_sym_u64] = ACTIONS(911), - [anon_sym_i64] = ACTIONS(911), - [anon_sym_u128] = ACTIONS(911), - [anon_sym_i128] = ACTIONS(911), - [anon_sym_isize] = ACTIONS(911), - [anon_sym_usize] = ACTIONS(911), - [anon_sym_f32] = ACTIONS(911), - [anon_sym_f64] = ACTIONS(911), - [anon_sym_bool] = ACTIONS(911), - [anon_sym_str] = ACTIONS(911), - [anon_sym_char] = ACTIONS(911), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(913), - [anon_sym_default] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(917), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(921), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_trait] = ACTIONS(929), - [anon_sym_type] = ACTIONS(931), - [anon_sym_union] = ACTIONS(933), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(943), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(945), - [sym_super] = ACTIONS(945), - [sym_crate] = ACTIONS(947), - [sym_metavariable] = ACTIONS(949), - [sym_block_comment] = ACTIONS(3), - }, - [219] = { - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_PLUS] = ACTIONS(405), - [anon_sym_STAR] = ACTIONS(405), - [anon_sym_QMARK] = ACTIONS(403), - [anon_sym_u8] = ACTIONS(405), - [anon_sym_i8] = ACTIONS(405), - [anon_sym_u16] = ACTIONS(405), - [anon_sym_i16] = ACTIONS(405), - [anon_sym_u32] = ACTIONS(405), - [anon_sym_i32] = ACTIONS(405), - [anon_sym_u64] = ACTIONS(405), - [anon_sym_i64] = ACTIONS(405), - [anon_sym_u128] = ACTIONS(405), - [anon_sym_i128] = ACTIONS(405), - [anon_sym_isize] = ACTIONS(405), - [anon_sym_usize] = ACTIONS(405), - [anon_sym_f32] = ACTIONS(405), - [anon_sym_f64] = ACTIONS(405), - [anon_sym_bool] = ACTIONS(405), - [anon_sym_str] = ACTIONS(405), - [anon_sym_char] = ACTIONS(405), - [anon_sym_as] = ACTIONS(405), - [anon_sym_const] = ACTIONS(405), - [anon_sym_POUND] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_ref] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_GT] = ACTIONS(405), - [anon_sym_COLON_COLON] = ACTIONS(403), - [anon_sym__] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(403), - [sym_mutable_specifier] = ACTIONS(405), - [anon_sym_DOT_DOT] = ACTIONS(405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(403), - [anon_sym_DASH] = ACTIONS(405), - [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_PIPE_PIPE] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(405), - [anon_sym_CARET] = ACTIONS(405), - [anon_sym_EQ_EQ] = ACTIONS(403), - [anon_sym_BANG_EQ] = ACTIONS(403), - [anon_sym_LT_EQ] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(403), - [anon_sym_LT_LT] = ACTIONS(405), - [anon_sym_GT_GT] = ACTIONS(405), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_PERCENT] = ACTIONS(405), - [anon_sym_PLUS_EQ] = ACTIONS(403), - [anon_sym_DASH_EQ] = ACTIONS(403), - [anon_sym_STAR_EQ] = ACTIONS(403), - [anon_sym_SLASH_EQ] = ACTIONS(403), - [anon_sym_PERCENT_EQ] = ACTIONS(403), - [anon_sym_AMP_EQ] = ACTIONS(403), - [anon_sym_PIPE_EQ] = ACTIONS(403), - [anon_sym_CARET_EQ] = ACTIONS(403), - [anon_sym_LT_LT_EQ] = ACTIONS(403), - [anon_sym_GT_GT_EQ] = ACTIONS(403), - [anon_sym_DOT] = ACTIONS(405), - [sym_integer_literal] = ACTIONS(403), - [aux_sym_string_literal_token1] = ACTIONS(403), - [sym_char_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(405), - [sym_super] = ACTIONS(405), - [sym_crate] = ACTIONS(405), - [sym_metavariable] = ACTIONS(403), - [sym_raw_string_literal] = ACTIONS(403), - [sym_float_literal] = ACTIONS(403), - [sym_block_comment] = ACTIONS(3), - }, - [220] = { - [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_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), - }, - [221] = { - [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_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), - }, - [222] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1726), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1722), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_type_binding] = STATE(1843), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [sym_block] = STATE(1843), - [sym__literal] = STATE(1843), - [sym_string_literal] = STATE(2100), - [sym_boolean_literal] = STATE(2100), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [223] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1750), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1749), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_type_binding] = STATE(2125), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [sym_block] = STATE(2125), - [sym__literal] = STATE(2125), - [sym_string_literal] = STATE(2100), - [sym_boolean_literal] = STATE(2100), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [224] = { - [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_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), - }, - [225] = { - [sym_identifier] = ACTIONS(598), - [anon_sym_LPAREN] = 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_as] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_POUND] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(598), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_ref] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_COLON_COLON] = ACTIONS(596), - [anon_sym__] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(596), - [sym_mutable_specifier] = ACTIONS(598), - [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_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), - }, - [226] = { - [sym_empty_statement] = STATE(226), - [sym_macro_definition] = STATE(226), - [sym_attribute_item] = STATE(226), - [sym_inner_attribute_item] = STATE(226), - [sym_mod_item] = STATE(226), - [sym_foreign_mod_item] = STATE(226), - [sym_struct_item] = STATE(226), - [sym_union_item] = STATE(226), - [sym_enum_item] = STATE(226), - [sym_extern_crate_declaration] = STATE(226), - [sym_const_item] = STATE(226), - [sym_static_item] = STATE(226), - [sym_type_item] = STATE(226), - [sym_function_item] = STATE(226), - [sym_function_signature_item] = STATE(226), - [sym_function_modifiers] = STATE(2399), - [sym_impl_item] = STATE(226), - [sym_trait_item] = STATE(226), - [sym_associated_type] = STATE(226), - [sym_let_declaration] = STATE(226), - [sym_use_declaration] = STATE(226), - [sym_extern_modifier] = STATE(1436), - [sym_visibility_modifier] = STATE(1261), - [sym_bracketed_type] = STATE(2237), - [sym_generic_type_with_turbofish] = STATE(2403), - [sym_macro_invocation] = STATE(226), - [sym_scoped_identifier] = STATE(2024), - [aux_sym_declaration_list_repeat1] = STATE(226), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_macro_rules_BANG] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_u8] = ACTIONS(962), - [anon_sym_i8] = ACTIONS(962), - [anon_sym_u16] = ACTIONS(962), - [anon_sym_i16] = ACTIONS(962), - [anon_sym_u32] = ACTIONS(962), - [anon_sym_i32] = ACTIONS(962), - [anon_sym_u64] = ACTIONS(962), - [anon_sym_i64] = ACTIONS(962), - [anon_sym_u128] = ACTIONS(962), - [anon_sym_i128] = ACTIONS(962), - [anon_sym_isize] = ACTIONS(962), - [anon_sym_usize] = ACTIONS(962), - [anon_sym_f32] = ACTIONS(962), - [anon_sym_f64] = ACTIONS(962), - [anon_sym_bool] = ACTIONS(962), - [anon_sym_str] = ACTIONS(962), - [anon_sym_char] = ACTIONS(962), - [anon_sym_async] = ACTIONS(965), - [anon_sym_const] = ACTIONS(968), - [anon_sym_default] = ACTIONS(965), - [anon_sym_enum] = ACTIONS(971), - [anon_sym_fn] = ACTIONS(974), - [anon_sym_impl] = ACTIONS(977), - [anon_sym_let] = ACTIONS(980), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_pub] = ACTIONS(986), - [anon_sym_static] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_trait] = ACTIONS(995), - [anon_sym_type] = ACTIONS(998), - [anon_sym_union] = ACTIONS(1001), - [anon_sym_unsafe] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1007), - [anon_sym_POUND] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1013), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_COLON_COLON] = ACTIONS(1019), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1022), - [sym_super] = ACTIONS(1022), - [sym_crate] = ACTIONS(1025), - [sym_metavariable] = ACTIONS(1028), - [sym_block_comment] = ACTIONS(3), - }, - [227] = { - [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_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), - }, - [228] = { - [sym_empty_statement] = STATE(218), - [sym_macro_definition] = STATE(218), - [sym_attribute_item] = STATE(218), - [sym_inner_attribute_item] = STATE(218), - [sym_mod_item] = STATE(218), - [sym_foreign_mod_item] = STATE(218), - [sym_struct_item] = STATE(218), - [sym_union_item] = STATE(218), - [sym_enum_item] = STATE(218), - [sym_extern_crate_declaration] = STATE(218), - [sym_const_item] = STATE(218), - [sym_static_item] = STATE(218), - [sym_type_item] = STATE(218), - [sym_function_item] = STATE(218), - [sym_function_signature_item] = STATE(218), - [sym_function_modifiers] = STATE(2399), - [sym_impl_item] = STATE(218), - [sym_trait_item] = STATE(218), - [sym_associated_type] = STATE(218), - [sym_let_declaration] = STATE(218), - [sym_use_declaration] = STATE(218), - [sym_extern_modifier] = STATE(1436), - [sym_visibility_modifier] = STATE(1261), - [sym_bracketed_type] = STATE(2237), - [sym_generic_type_with_turbofish] = STATE(2403), - [sym_macro_invocation] = STATE(218), - [sym_scoped_identifier] = STATE(2024), - [aux_sym_declaration_list_repeat1] = STATE(218), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_macro_rules_BANG] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(1031), - [anon_sym_u8] = ACTIONS(911), - [anon_sym_i8] = ACTIONS(911), - [anon_sym_u16] = ACTIONS(911), - [anon_sym_i16] = ACTIONS(911), - [anon_sym_u32] = ACTIONS(911), - [anon_sym_i32] = ACTIONS(911), - [anon_sym_u64] = ACTIONS(911), - [anon_sym_i64] = ACTIONS(911), - [anon_sym_u128] = ACTIONS(911), - [anon_sym_i128] = ACTIONS(911), - [anon_sym_isize] = ACTIONS(911), - [anon_sym_usize] = ACTIONS(911), - [anon_sym_f32] = ACTIONS(911), - [anon_sym_f64] = ACTIONS(911), - [anon_sym_bool] = ACTIONS(911), - [anon_sym_str] = ACTIONS(911), - [anon_sym_char] = ACTIONS(911), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(913), - [anon_sym_default] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(917), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(921), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_trait] = ACTIONS(929), - [anon_sym_type] = ACTIONS(931), - [anon_sym_union] = ACTIONS(933), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(943), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(945), - [sym_super] = ACTIONS(945), - [sym_crate] = ACTIONS(947), - [sym_metavariable] = ACTIONS(949), - [sym_block_comment] = ACTIONS(3), - }, - [229] = { - [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_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), - }, - [230] = { - [sym_identifier] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_u8] = ACTIONS(401), - [anon_sym_i8] = ACTIONS(401), - [anon_sym_u16] = ACTIONS(401), - [anon_sym_i16] = ACTIONS(401), - [anon_sym_u32] = ACTIONS(401), - [anon_sym_i32] = ACTIONS(401), - [anon_sym_u64] = ACTIONS(401), - [anon_sym_i64] = ACTIONS(401), - [anon_sym_u128] = ACTIONS(401), - [anon_sym_i128] = ACTIONS(401), - [anon_sym_isize] = ACTIONS(401), - [anon_sym_usize] = ACTIONS(401), - [anon_sym_f32] = ACTIONS(401), - [anon_sym_f64] = ACTIONS(401), - [anon_sym_bool] = ACTIONS(401), - [anon_sym_str] = ACTIONS(401), - [anon_sym_char] = ACTIONS(401), - [anon_sym_as] = ACTIONS(401), - [anon_sym_const] = ACTIONS(401), - [anon_sym_POUND] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(401), - [anon_sym_COMMA] = ACTIONS(399), - [anon_sym_ref] = ACTIONS(401), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(399), - [anon_sym__] = ACTIONS(401), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(399), - [sym_mutable_specifier] = ACTIONS(401), - [anon_sym_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_EQ_EQ] = ACTIONS(399), - [anon_sym_BANG_EQ] = ACTIONS(399), - [anon_sym_LT_EQ] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(401), - [anon_sym_GT_GT] = ACTIONS(401), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_PLUS_EQ] = ACTIONS(399), - [anon_sym_DASH_EQ] = ACTIONS(399), - [anon_sym_STAR_EQ] = ACTIONS(399), - [anon_sym_SLASH_EQ] = ACTIONS(399), - [anon_sym_PERCENT_EQ] = ACTIONS(399), - [anon_sym_AMP_EQ] = ACTIONS(399), - [anon_sym_PIPE_EQ] = ACTIONS(399), - [anon_sym_CARET_EQ] = ACTIONS(399), - [anon_sym_LT_LT_EQ] = ACTIONS(399), - [anon_sym_GT_GT_EQ] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(399), - [aux_sym_string_literal_token1] = ACTIONS(399), - [sym_char_literal] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(401), - [sym_super] = ACTIONS(401), - [sym_crate] = ACTIONS(401), - [sym_metavariable] = ACTIONS(399), - [sym_raw_string_literal] = ACTIONS(399), - [sym_float_literal] = ACTIONS(399), - [sym_block_comment] = ACTIONS(3), - }, - [231] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1670), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1668), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_type_binding] = STATE(1957), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [sym_block] = STATE(1957), - [sym__literal] = STATE(1957), - [sym_string_literal] = STATE(2100), - [sym_boolean_literal] = STATE(2100), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [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_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), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(431), - [anon_sym_u8] = ACTIONS(433), - [anon_sym_i8] = ACTIONS(433), - [anon_sym_u16] = ACTIONS(433), - [anon_sym_i16] = ACTIONS(433), - [anon_sym_u32] = ACTIONS(433), - [anon_sym_i32] = ACTIONS(433), - [anon_sym_u64] = ACTIONS(433), - [anon_sym_i64] = ACTIONS(433), - [anon_sym_u128] = ACTIONS(433), - [anon_sym_i128] = ACTIONS(433), - [anon_sym_isize] = ACTIONS(433), - [anon_sym_usize] = ACTIONS(433), - [anon_sym_f32] = ACTIONS(433), - [anon_sym_f64] = ACTIONS(433), - [anon_sym_bool] = ACTIONS(433), - [anon_sym_str] = ACTIONS(433), - [anon_sym_char] = ACTIONS(433), - [anon_sym_as] = ACTIONS(433), - [anon_sym_const] = ACTIONS(433), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_EQ] = ACTIONS(433), - [anon_sym_COMMA] = ACTIONS(431), - [anon_sym_ref] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_COLON_COLON] = ACTIONS(431), - [anon_sym__] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_mutable_specifier] = ACTIONS(433), - [anon_sym_DOT_DOT] = ACTIONS(433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(431), - [anon_sym_PIPE_PIPE] = ACTIONS(431), - [anon_sym_PIPE] = ACTIONS(433), - [anon_sym_CARET] = ACTIONS(433), - [anon_sym_EQ_EQ] = ACTIONS(431), - [anon_sym_BANG_EQ] = ACTIONS(431), - [anon_sym_LT_EQ] = ACTIONS(431), - [anon_sym_GT_EQ] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(433), - [anon_sym_PLUS_EQ] = ACTIONS(431), - [anon_sym_DASH_EQ] = ACTIONS(431), - [anon_sym_STAR_EQ] = ACTIONS(431), - [anon_sym_SLASH_EQ] = ACTIONS(431), - [anon_sym_PERCENT_EQ] = ACTIONS(431), - [anon_sym_AMP_EQ] = ACTIONS(431), - [anon_sym_PIPE_EQ] = ACTIONS(431), - [anon_sym_CARET_EQ] = ACTIONS(431), - [anon_sym_LT_LT_EQ] = ACTIONS(431), - [anon_sym_GT_GT_EQ] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(431), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(431), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(433), - [sym_super] = ACTIONS(433), - [sym_crate] = ACTIONS(433), - [sym_metavariable] = ACTIONS(431), - [sym_raw_string_literal] = ACTIONS(431), - [sym_float_literal] = ACTIONS(431), - [sym_block_comment] = ACTIONS(3), - }, - [234] = { - [sym_identifier] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_PLUS] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(411), - [anon_sym_u8] = ACTIONS(413), - [anon_sym_i8] = ACTIONS(413), - [anon_sym_u16] = ACTIONS(413), - [anon_sym_i16] = ACTIONS(413), - [anon_sym_u32] = ACTIONS(413), - [anon_sym_i32] = ACTIONS(413), - [anon_sym_u64] = ACTIONS(413), - [anon_sym_i64] = ACTIONS(413), - [anon_sym_u128] = ACTIONS(413), - [anon_sym_i128] = ACTIONS(413), - [anon_sym_isize] = ACTIONS(413), - [anon_sym_usize] = ACTIONS(413), - [anon_sym_f32] = ACTIONS(413), - [anon_sym_f64] = ACTIONS(413), - [anon_sym_bool] = ACTIONS(413), - [anon_sym_str] = ACTIONS(413), - [anon_sym_char] = ACTIONS(413), - [anon_sym_as] = ACTIONS(413), - [anon_sym_const] = ACTIONS(413), - [anon_sym_POUND] = ACTIONS(411), - [anon_sym_EQ] = ACTIONS(413), - [anon_sym_COMMA] = ACTIONS(411), - [anon_sym_ref] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_COLON_COLON] = ACTIONS(411), - [anon_sym__] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(411), - [sym_mutable_specifier] = ACTIONS(413), - [anon_sym_DOT_DOT] = ACTIONS(413), - [anon_sym_DOT_DOT_EQ] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_EQ_EQ] = ACTIONS(411), - [anon_sym_BANG_EQ] = ACTIONS(411), - [anon_sym_LT_EQ] = ACTIONS(411), - [anon_sym_GT_EQ] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(413), - [anon_sym_PERCENT] = ACTIONS(413), - [anon_sym_PLUS_EQ] = ACTIONS(411), - [anon_sym_DASH_EQ] = ACTIONS(411), - [anon_sym_STAR_EQ] = ACTIONS(411), - [anon_sym_SLASH_EQ] = ACTIONS(411), - [anon_sym_PERCENT_EQ] = ACTIONS(411), - [anon_sym_AMP_EQ] = ACTIONS(411), - [anon_sym_PIPE_EQ] = ACTIONS(411), - [anon_sym_CARET_EQ] = ACTIONS(411), - [anon_sym_LT_LT_EQ] = ACTIONS(411), - [anon_sym_GT_GT_EQ] = ACTIONS(411), - [anon_sym_DOT] = ACTIONS(413), - [sym_integer_literal] = ACTIONS(411), - [aux_sym_string_literal_token1] = ACTIONS(411), - [sym_char_literal] = ACTIONS(411), - [anon_sym_true] = ACTIONS(413), - [anon_sym_false] = ACTIONS(413), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_crate] = ACTIONS(413), - [sym_metavariable] = ACTIONS(411), - [sym_raw_string_literal] = ACTIONS(411), - [sym_float_literal] = ACTIONS(411), - [sym_block_comment] = ACTIONS(3), - }, - [235] = { - [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_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), - }, - [236] = { - [sym_identifier] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_u8] = ACTIONS(1033), - [anon_sym_i8] = ACTIONS(1033), - [anon_sym_u16] = ACTIONS(1033), - [anon_sym_i16] = ACTIONS(1033), - [anon_sym_u32] = ACTIONS(1033), - [anon_sym_i32] = ACTIONS(1033), - [anon_sym_u64] = ACTIONS(1033), - [anon_sym_i64] = ACTIONS(1033), - [anon_sym_u128] = ACTIONS(1033), - [anon_sym_i128] = ACTIONS(1033), - [anon_sym_isize] = ACTIONS(1033), - [anon_sym_usize] = ACTIONS(1033), - [anon_sym_f32] = ACTIONS(1033), - [anon_sym_f64] = ACTIONS(1033), - [anon_sym_bool] = ACTIONS(1033), - [anon_sym_str] = ACTIONS(1033), - [anon_sym_char] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(455), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(1035), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_COMMA] = ACTIONS(453), - [anon_sym_ref] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(1035), - [anon_sym__] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [sym_mutable_specifier] = ACTIONS(1033), - [anon_sym_DOT_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_DOT] = ACTIONS(455), - [sym_integer_literal] = ACTIONS(1035), - [aux_sym_string_literal_token1] = ACTIONS(1035), - [sym_char_literal] = ACTIONS(1035), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1033), - [sym_super] = ACTIONS(1033), - [sym_crate] = ACTIONS(1033), - [sym_metavariable] = ACTIONS(1035), - [sym_raw_string_literal] = ACTIONS(1035), - [sym_float_literal] = ACTIONS(1035), - [sym_block_comment] = ACTIONS(3), - }, - [237] = { - [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_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), - }, - [238] = { - [sym_identifier] = ACTIONS(417), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(415), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_QMARK] = ACTIONS(415), - [anon_sym_u8] = ACTIONS(417), - [anon_sym_i8] = ACTIONS(417), - [anon_sym_u16] = ACTIONS(417), - [anon_sym_i16] = ACTIONS(417), - [anon_sym_u32] = ACTIONS(417), - [anon_sym_i32] = ACTIONS(417), - [anon_sym_u64] = ACTIONS(417), - [anon_sym_i64] = ACTIONS(417), - [anon_sym_u128] = ACTIONS(417), - [anon_sym_i128] = ACTIONS(417), - [anon_sym_isize] = ACTIONS(417), - [anon_sym_usize] = ACTIONS(417), - [anon_sym_f32] = ACTIONS(417), - [anon_sym_f64] = ACTIONS(417), - [anon_sym_bool] = ACTIONS(417), - [anon_sym_str] = ACTIONS(417), - [anon_sym_char] = ACTIONS(417), - [anon_sym_as] = ACTIONS(417), - [anon_sym_const] = ACTIONS(417), - [anon_sym_POUND] = ACTIONS(415), - [anon_sym_EQ] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(415), - [anon_sym_ref] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym__] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(415), - [sym_mutable_specifier] = ACTIONS(417), - [anon_sym_DOT_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_EQ_EQ] = ACTIONS(415), - [anon_sym_BANG_EQ] = ACTIONS(415), - [anon_sym_LT_EQ] = ACTIONS(415), - [anon_sym_GT_EQ] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_EQ] = ACTIONS(415), - [anon_sym_DASH_EQ] = ACTIONS(415), - [anon_sym_STAR_EQ] = ACTIONS(415), - [anon_sym_SLASH_EQ] = ACTIONS(415), - [anon_sym_PERCENT_EQ] = ACTIONS(415), - [anon_sym_AMP_EQ] = ACTIONS(415), - [anon_sym_PIPE_EQ] = ACTIONS(415), - [anon_sym_CARET_EQ] = ACTIONS(415), - [anon_sym_LT_LT_EQ] = ACTIONS(415), - [anon_sym_GT_GT_EQ] = ACTIONS(415), - [anon_sym_DOT] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(415), - [aux_sym_string_literal_token1] = ACTIONS(415), - [sym_char_literal] = ACTIONS(415), - [anon_sym_true] = ACTIONS(417), - [anon_sym_false] = ACTIONS(417), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(417), - [sym_super] = ACTIONS(417), - [sym_crate] = ACTIONS(417), - [sym_metavariable] = ACTIONS(415), - [sym_raw_string_literal] = ACTIONS(415), - [sym_float_literal] = ACTIONS(415), - [sym_block_comment] = ACTIONS(3), - }, - [239] = { - [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_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), - [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_block_comment] = ACTIONS(3), - }, - [240] = { - [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_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), - }, - [241] = { - [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(2399), - [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(1436), - [sym_visibility_modifier] = STATE(1261), - [sym_bracketed_type] = STATE(2237), - [sym_generic_type_with_turbofish] = STATE(2403), - [sym_macro_invocation] = STATE(244), - [sym_scoped_identifier] = STATE(2024), - [aux_sym_declaration_list_repeat1] = STATE(244), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_macro_rules_BANG] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(1037), - [anon_sym_u8] = ACTIONS(911), - [anon_sym_i8] = ACTIONS(911), - [anon_sym_u16] = ACTIONS(911), - [anon_sym_i16] = ACTIONS(911), - [anon_sym_u32] = ACTIONS(911), - [anon_sym_i32] = ACTIONS(911), - [anon_sym_u64] = ACTIONS(911), - [anon_sym_i64] = ACTIONS(911), - [anon_sym_u128] = ACTIONS(911), - [anon_sym_i128] = ACTIONS(911), - [anon_sym_isize] = ACTIONS(911), - [anon_sym_usize] = ACTIONS(911), - [anon_sym_f32] = ACTIONS(911), - [anon_sym_f64] = ACTIONS(911), - [anon_sym_bool] = ACTIONS(911), - [anon_sym_str] = ACTIONS(911), - [anon_sym_char] = ACTIONS(911), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(913), - [anon_sym_default] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(917), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(921), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_trait] = ACTIONS(929), - [anon_sym_type] = ACTIONS(931), - [anon_sym_union] = ACTIONS(933), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(943), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(945), - [sym_super] = ACTIONS(945), - [sym_crate] = ACTIONS(947), - [sym_metavariable] = ACTIONS(949), - [sym_block_comment] = ACTIONS(3), - }, - [242] = { - [sym_identifier] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1041), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(453), - [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), - [anon_sym_as] = ACTIONS(455), - [anon_sym_const] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1041), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_COMMA] = ACTIONS(453), - [anon_sym_ref] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [sym_mutable_specifier] = ACTIONS(1039), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_DOT] = ACTIONS(455), - [sym_integer_literal] = ACTIONS(1041), - [aux_sym_string_literal_token1] = ACTIONS(1041), - [sym_char_literal] = ACTIONS(1041), - [anon_sym_true] = ACTIONS(1039), - [anon_sym_false] = ACTIONS(1039), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1039), - [sym_super] = ACTIONS(1039), - [sym_crate] = ACTIONS(1039), - [sym_metavariable] = ACTIONS(1041), - [sym_raw_string_literal] = ACTIONS(1041), - [sym_float_literal] = ACTIONS(1041), - [sym_block_comment] = ACTIONS(3), - }, - [243] = { - [sym_identifier] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(558), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(558), - [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_as] = ACTIONS(560), - [anon_sym_const] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(558), - [anon_sym_EQ] = ACTIONS(560), - [anon_sym_COMMA] = ACTIONS(558), - [anon_sym_ref] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_COLON_COLON] = ACTIONS(558), - [anon_sym__] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(558), - [sym_mutable_specifier] = ACTIONS(560), - [anon_sym_DOT_DOT] = ACTIONS(560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_BANG_EQ] = ACTIONS(558), - [anon_sym_LT_EQ] = ACTIONS(558), - [anon_sym_GT_EQ] = ACTIONS(558), - [anon_sym_LT_LT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(560), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_PLUS_EQ] = ACTIONS(558), - [anon_sym_DASH_EQ] = ACTIONS(558), - [anon_sym_STAR_EQ] = ACTIONS(558), - [anon_sym_SLASH_EQ] = ACTIONS(558), - [anon_sym_PERCENT_EQ] = ACTIONS(558), - [anon_sym_AMP_EQ] = ACTIONS(558), - [anon_sym_PIPE_EQ] = ACTIONS(558), - [anon_sym_CARET_EQ] = ACTIONS(558), - [anon_sym_LT_LT_EQ] = ACTIONS(558), - [anon_sym_GT_GT_EQ] = ACTIONS(558), - [anon_sym_DOT] = ACTIONS(560), - [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), - }, - [244] = { - [sym_empty_statement] = STATE(226), - [sym_macro_definition] = STATE(226), - [sym_attribute_item] = STATE(226), - [sym_inner_attribute_item] = STATE(226), - [sym_mod_item] = STATE(226), - [sym_foreign_mod_item] = STATE(226), - [sym_struct_item] = STATE(226), - [sym_union_item] = STATE(226), - [sym_enum_item] = STATE(226), - [sym_extern_crate_declaration] = STATE(226), - [sym_const_item] = STATE(226), - [sym_static_item] = STATE(226), - [sym_type_item] = STATE(226), - [sym_function_item] = STATE(226), - [sym_function_signature_item] = STATE(226), - [sym_function_modifiers] = STATE(2399), - [sym_impl_item] = STATE(226), - [sym_trait_item] = STATE(226), - [sym_associated_type] = STATE(226), - [sym_let_declaration] = STATE(226), - [sym_use_declaration] = STATE(226), - [sym_extern_modifier] = STATE(1436), - [sym_visibility_modifier] = STATE(1261), - [sym_bracketed_type] = STATE(2237), - [sym_generic_type_with_turbofish] = STATE(2403), - [sym_macro_invocation] = STATE(226), - [sym_scoped_identifier] = STATE(2024), - [aux_sym_declaration_list_repeat1] = STATE(226), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_macro_rules_BANG] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(911), - [anon_sym_i8] = ACTIONS(911), - [anon_sym_u16] = ACTIONS(911), - [anon_sym_i16] = ACTIONS(911), - [anon_sym_u32] = ACTIONS(911), - [anon_sym_i32] = ACTIONS(911), - [anon_sym_u64] = ACTIONS(911), - [anon_sym_i64] = ACTIONS(911), - [anon_sym_u128] = ACTIONS(911), - [anon_sym_i128] = ACTIONS(911), - [anon_sym_isize] = ACTIONS(911), - [anon_sym_usize] = ACTIONS(911), - [anon_sym_f32] = ACTIONS(911), - [anon_sym_f64] = ACTIONS(911), - [anon_sym_bool] = ACTIONS(911), - [anon_sym_str] = ACTIONS(911), - [anon_sym_char] = ACTIONS(911), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(913), - [anon_sym_default] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(917), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(921), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_trait] = ACTIONS(929), - [anon_sym_type] = ACTIONS(931), - [anon_sym_union] = ACTIONS(933), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(943), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(945), - [sym_super] = ACTIONS(945), - [sym_crate] = ACTIONS(947), - [sym_metavariable] = ACTIONS(949), - [sym_block_comment] = ACTIONS(3), - }, - [245] = { - [ts_builtin_sym_end] = ACTIONS(1045), - [sym_identifier] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1045), - [anon_sym_macro_rules_BANG] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1045), - [anon_sym_RBRACE] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_u8] = ACTIONS(1047), - [anon_sym_i8] = ACTIONS(1047), - [anon_sym_u16] = ACTIONS(1047), - [anon_sym_i16] = ACTIONS(1047), - [anon_sym_u32] = ACTIONS(1047), - [anon_sym_i32] = ACTIONS(1047), - [anon_sym_u64] = ACTIONS(1047), - [anon_sym_i64] = ACTIONS(1047), - [anon_sym_u128] = ACTIONS(1047), - [anon_sym_i128] = ACTIONS(1047), - [anon_sym_isize] = ACTIONS(1047), - [anon_sym_usize] = ACTIONS(1047), - [anon_sym_f32] = ACTIONS(1047), - [anon_sym_f64] = ACTIONS(1047), - [anon_sym_bool] = ACTIONS(1047), - [anon_sym_str] = ACTIONS(1047), - [anon_sym_char] = ACTIONS(1047), - [anon_sym_SQUOTE] = ACTIONS(1047), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_break] = ACTIONS(1047), - [anon_sym_const] = ACTIONS(1047), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_default] = ACTIONS(1047), - [anon_sym_enum] = ACTIONS(1047), - [anon_sym_fn] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1047), - [anon_sym_impl] = ACTIONS(1047), - [anon_sym_let] = ACTIONS(1047), - [anon_sym_loop] = ACTIONS(1047), - [anon_sym_match] = ACTIONS(1047), - [anon_sym_mod] = ACTIONS(1047), - [anon_sym_pub] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1047), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_struct] = ACTIONS(1047), - [anon_sym_trait] = ACTIONS(1047), - [anon_sym_type] = ACTIONS(1047), - [anon_sym_union] = ACTIONS(1047), - [anon_sym_unsafe] = ACTIONS(1047), - [anon_sym_use] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_extern] = ACTIONS(1047), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_COLON_COLON] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_PIPE] = ACTIONS(1045), - [anon_sym_move] = ACTIONS(1047), - [sym_integer_literal] = ACTIONS(1045), - [aux_sym_string_literal_token1] = ACTIONS(1045), - [sym_char_literal] = ACTIONS(1045), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1047), - [sym_super] = ACTIONS(1047), - [sym_crate] = ACTIONS(1047), - [sym_metavariable] = ACTIONS(1045), - [sym_raw_string_literal] = ACTIONS(1045), - [sym_float_literal] = ACTIONS(1045), - [sym_block_comment] = ACTIONS(3), - }, - [246] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u128] = ACTIONS(1049), - [anon_sym_i128] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_str] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [aux_sym__non_special_token_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_const] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_fn] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_impl] = ACTIONS(1049), - [anon_sym_let] = ACTIONS(1049), - [anon_sym_loop] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_mod] = ACTIONS(1049), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1049), - [anon_sym_type] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1049), - [anon_sym_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(1069), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1069), - [anon_sym_macro_rules_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1069), - [anon_sym_RBRACE] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1069), - [anon_sym_u8] = ACTIONS(1071), - [anon_sym_i8] = ACTIONS(1071), - [anon_sym_u16] = ACTIONS(1071), - [anon_sym_i16] = ACTIONS(1071), - [anon_sym_u32] = ACTIONS(1071), - [anon_sym_i32] = ACTIONS(1071), - [anon_sym_u64] = ACTIONS(1071), - [anon_sym_i64] = ACTIONS(1071), - [anon_sym_u128] = ACTIONS(1071), - [anon_sym_i128] = ACTIONS(1071), - [anon_sym_isize] = ACTIONS(1071), - [anon_sym_usize] = ACTIONS(1071), - [anon_sym_f32] = ACTIONS(1071), - [anon_sym_f64] = ACTIONS(1071), - [anon_sym_bool] = ACTIONS(1071), - [anon_sym_str] = ACTIONS(1071), - [anon_sym_char] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1071), - [anon_sym_async] = ACTIONS(1071), - [anon_sym_break] = ACTIONS(1071), - [anon_sym_const] = ACTIONS(1071), - [anon_sym_continue] = ACTIONS(1071), - [anon_sym_default] = ACTIONS(1071), - [anon_sym_enum] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_if] = ACTIONS(1071), - [anon_sym_impl] = ACTIONS(1071), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_loop] = ACTIONS(1071), - [anon_sym_match] = ACTIONS(1071), - [anon_sym_mod] = ACTIONS(1071), - [anon_sym_pub] = ACTIONS(1071), - [anon_sym_return] = ACTIONS(1071), - [anon_sym_static] = ACTIONS(1071), - [anon_sym_struct] = ACTIONS(1071), - [anon_sym_trait] = ACTIONS(1071), - [anon_sym_type] = ACTIONS(1071), - [anon_sym_union] = ACTIONS(1071), - [anon_sym_unsafe] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1071), - [anon_sym_POUND] = ACTIONS(1069), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_extern] = ACTIONS(1071), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(1069), - [anon_sym_move] = ACTIONS(1071), - [sym_integer_literal] = ACTIONS(1069), - [aux_sym_string_literal_token1] = ACTIONS(1069), - [sym_char_literal] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(1071), - [anon_sym_false] = ACTIONS(1071), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1071), - [sym_super] = ACTIONS(1071), - [sym_crate] = ACTIONS(1071), - [sym_metavariable] = ACTIONS(1069), - [sym_raw_string_literal] = ACTIONS(1069), - [sym_float_literal] = ACTIONS(1069), - [sym_block_comment] = ACTIONS(3), - }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(1073), - [sym_identifier] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_macro_rules_BANG] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_RBRACE] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(1073), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(1075), - [anon_sym_i8] = ACTIONS(1075), - [anon_sym_u16] = ACTIONS(1075), - [anon_sym_i16] = ACTIONS(1075), - [anon_sym_u32] = ACTIONS(1075), - [anon_sym_i32] = ACTIONS(1075), - [anon_sym_u64] = ACTIONS(1075), - [anon_sym_i64] = ACTIONS(1075), - [anon_sym_u128] = ACTIONS(1075), - [anon_sym_i128] = ACTIONS(1075), - [anon_sym_isize] = ACTIONS(1075), - [anon_sym_usize] = ACTIONS(1075), - [anon_sym_f32] = ACTIONS(1075), - [anon_sym_f64] = ACTIONS(1075), - [anon_sym_bool] = ACTIONS(1075), - [anon_sym_str] = ACTIONS(1075), - [anon_sym_char] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1075), - [anon_sym_async] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1075), - [anon_sym_const] = ACTIONS(1075), - [anon_sym_continue] = ACTIONS(1075), - [anon_sym_default] = ACTIONS(1075), - [anon_sym_enum] = ACTIONS(1075), - [anon_sym_fn] = ACTIONS(1075), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_impl] = ACTIONS(1075), - [anon_sym_let] = ACTIONS(1075), - [anon_sym_loop] = ACTIONS(1075), - [anon_sym_match] = ACTIONS(1075), - [anon_sym_mod] = ACTIONS(1075), - [anon_sym_pub] = ACTIONS(1075), - [anon_sym_return] = ACTIONS(1075), - [anon_sym_static] = ACTIONS(1075), - [anon_sym_struct] = ACTIONS(1075), - [anon_sym_trait] = ACTIONS(1075), - [anon_sym_type] = ACTIONS(1075), - [anon_sym_union] = ACTIONS(1075), - [anon_sym_unsafe] = ACTIONS(1075), - [anon_sym_use] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1075), - [anon_sym_POUND] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_extern] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_move] = ACTIONS(1075), - [sym_integer_literal] = ACTIONS(1073), - [aux_sym_string_literal_token1] = ACTIONS(1073), - [sym_char_literal] = ACTIONS(1073), - [anon_sym_true] = ACTIONS(1075), - [anon_sym_false] = ACTIONS(1075), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1075), - [sym_super] = ACTIONS(1075), - [sym_crate] = ACTIONS(1075), - [sym_metavariable] = ACTIONS(1073), - [sym_raw_string_literal] = ACTIONS(1073), - [sym_float_literal] = ACTIONS(1073), - [sym_block_comment] = ACTIONS(3), - }, - [249] = { - [ts_builtin_sym_end] = ACTIONS(1077), - [sym_identifier] = ACTIONS(1079), - [anon_sym_SEMI] = ACTIONS(1077), - [anon_sym_macro_rules_BANG] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1077), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_u8] = ACTIONS(1079), - [anon_sym_i8] = ACTIONS(1079), - [anon_sym_u16] = ACTIONS(1079), - [anon_sym_i16] = ACTIONS(1079), - [anon_sym_u32] = ACTIONS(1079), - [anon_sym_i32] = ACTIONS(1079), - [anon_sym_u64] = ACTIONS(1079), - [anon_sym_i64] = ACTIONS(1079), - [anon_sym_u128] = ACTIONS(1079), - [anon_sym_i128] = ACTIONS(1079), - [anon_sym_isize] = ACTIONS(1079), - [anon_sym_usize] = ACTIONS(1079), - [anon_sym_f32] = ACTIONS(1079), - [anon_sym_f64] = ACTIONS(1079), - [anon_sym_bool] = ACTIONS(1079), - [anon_sym_str] = ACTIONS(1079), - [anon_sym_char] = ACTIONS(1079), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_async] = ACTIONS(1079), - [anon_sym_break] = ACTIONS(1079), - [anon_sym_const] = ACTIONS(1079), - [anon_sym_continue] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1079), - [anon_sym_enum] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1079), - [anon_sym_for] = ACTIONS(1079), - [anon_sym_if] = ACTIONS(1079), - [anon_sym_impl] = ACTIONS(1079), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_loop] = ACTIONS(1079), - [anon_sym_match] = ACTIONS(1079), - [anon_sym_mod] = ACTIONS(1079), - [anon_sym_pub] = ACTIONS(1079), - [anon_sym_return] = ACTIONS(1079), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_struct] = ACTIONS(1079), - [anon_sym_trait] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_union] = ACTIONS(1079), - [anon_sym_unsafe] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1079), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_POUND] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_extern] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(1077), - [anon_sym_AMP] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_move] = ACTIONS(1079), - [sym_integer_literal] = ACTIONS(1077), - [aux_sym_string_literal_token1] = ACTIONS(1077), - [sym_char_literal] = ACTIONS(1077), - [anon_sym_true] = ACTIONS(1079), - [anon_sym_false] = ACTIONS(1079), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1079), - [sym_super] = ACTIONS(1079), - [sym_crate] = ACTIONS(1079), - [sym_metavariable] = ACTIONS(1077), - [sym_raw_string_literal] = ACTIONS(1077), - [sym_float_literal] = ACTIONS(1077), - [sym_block_comment] = ACTIONS(3), - }, - [250] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_macro_rules_BANG] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1081), - [anon_sym_u8] = ACTIONS(1083), - [anon_sym_i8] = ACTIONS(1083), - [anon_sym_u16] = ACTIONS(1083), - [anon_sym_i16] = ACTIONS(1083), - [anon_sym_u32] = ACTIONS(1083), - [anon_sym_i32] = ACTIONS(1083), - [anon_sym_u64] = ACTIONS(1083), - [anon_sym_i64] = ACTIONS(1083), - [anon_sym_u128] = ACTIONS(1083), - [anon_sym_i128] = ACTIONS(1083), - [anon_sym_isize] = ACTIONS(1083), - [anon_sym_usize] = ACTIONS(1083), - [anon_sym_f32] = ACTIONS(1083), - [anon_sym_f64] = ACTIONS(1083), - [anon_sym_bool] = ACTIONS(1083), - [anon_sym_str] = ACTIONS(1083), - [anon_sym_char] = ACTIONS(1083), - [anon_sym_SQUOTE] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_const] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_impl] = ACTIONS(1083), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_loop] = ACTIONS(1083), - [anon_sym_match] = ACTIONS(1083), - [anon_sym_mod] = ACTIONS(1083), - [anon_sym_pub] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_struct] = ACTIONS(1083), - [anon_sym_trait] = ACTIONS(1083), - [anon_sym_type] = ACTIONS(1083), - [anon_sym_union] = ACTIONS(1083), - [anon_sym_unsafe] = ACTIONS(1083), - [anon_sym_use] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_extern] = ACTIONS(1083), - [anon_sym_LT] = ACTIONS(1081), - [anon_sym_COLON_COLON] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1081), - [anon_sym_move] = ACTIONS(1083), - [sym_integer_literal] = ACTIONS(1081), - [aux_sym_string_literal_token1] = ACTIONS(1081), - [sym_char_literal] = ACTIONS(1081), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1083), - [sym_super] = ACTIONS(1083), - [sym_crate] = ACTIONS(1083), - [sym_metavariable] = ACTIONS(1081), - [sym_raw_string_literal] = ACTIONS(1081), - [sym_float_literal] = ACTIONS(1081), - [sym_block_comment] = ACTIONS(3), - }, - [251] = { - [ts_builtin_sym_end] = ACTIONS(1085), - [sym_identifier] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_macro_rules_BANG] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_u8] = ACTIONS(1087), - [anon_sym_i8] = ACTIONS(1087), - [anon_sym_u16] = ACTIONS(1087), - [anon_sym_i16] = ACTIONS(1087), - [anon_sym_u32] = ACTIONS(1087), - [anon_sym_i32] = ACTIONS(1087), - [anon_sym_u64] = ACTIONS(1087), - [anon_sym_i64] = ACTIONS(1087), - [anon_sym_u128] = ACTIONS(1087), - [anon_sym_i128] = ACTIONS(1087), - [anon_sym_isize] = ACTIONS(1087), - [anon_sym_usize] = ACTIONS(1087), - [anon_sym_f32] = ACTIONS(1087), - [anon_sym_f64] = ACTIONS(1087), - [anon_sym_bool] = ACTIONS(1087), - [anon_sym_str] = ACTIONS(1087), - [anon_sym_char] = ACTIONS(1087), - [anon_sym_SQUOTE] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1087), - [anon_sym_break] = ACTIONS(1087), - [anon_sym_const] = ACTIONS(1087), - [anon_sym_continue] = ACTIONS(1087), - [anon_sym_default] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1087), - [anon_sym_if] = ACTIONS(1087), - [anon_sym_impl] = ACTIONS(1087), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_loop] = ACTIONS(1087), - [anon_sym_match] = ACTIONS(1087), - [anon_sym_mod] = ACTIONS(1087), - [anon_sym_pub] = ACTIONS(1087), - [anon_sym_return] = ACTIONS(1087), - [anon_sym_static] = ACTIONS(1087), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_trait] = ACTIONS(1087), - [anon_sym_type] = ACTIONS(1087), - [anon_sym_union] = ACTIONS(1087), - [anon_sym_unsafe] = ACTIONS(1087), - [anon_sym_use] = ACTIONS(1087), - [anon_sym_while] = ACTIONS(1087), - [anon_sym_POUND] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_extern] = ACTIONS(1087), - [anon_sym_LT] = ACTIONS(1085), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1085), - [anon_sym_move] = ACTIONS(1087), - [sym_integer_literal] = ACTIONS(1085), - [aux_sym_string_literal_token1] = ACTIONS(1085), - [sym_char_literal] = ACTIONS(1085), - [anon_sym_true] = ACTIONS(1087), - [anon_sym_false] = ACTIONS(1087), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1087), - [sym_super] = ACTIONS(1087), - [sym_crate] = ACTIONS(1087), - [sym_metavariable] = ACTIONS(1085), - [sym_raw_string_literal] = ACTIONS(1085), - [sym_float_literal] = ACTIONS(1085), - [sym_block_comment] = ACTIONS(3), - }, - [252] = { - [ts_builtin_sym_end] = ACTIONS(1089), - [sym_identifier] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(1089), - [anon_sym_macro_rules_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_u8] = ACTIONS(1091), - [anon_sym_i8] = ACTIONS(1091), - [anon_sym_u16] = ACTIONS(1091), - [anon_sym_i16] = ACTIONS(1091), - [anon_sym_u32] = ACTIONS(1091), - [anon_sym_i32] = ACTIONS(1091), - [anon_sym_u64] = ACTIONS(1091), - [anon_sym_i64] = ACTIONS(1091), - [anon_sym_u128] = ACTIONS(1091), - [anon_sym_i128] = ACTIONS(1091), - [anon_sym_isize] = ACTIONS(1091), - [anon_sym_usize] = ACTIONS(1091), - [anon_sym_f32] = ACTIONS(1091), - [anon_sym_f64] = ACTIONS(1091), - [anon_sym_bool] = ACTIONS(1091), - [anon_sym_str] = ACTIONS(1091), - [anon_sym_char] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1091), - [anon_sym_async] = ACTIONS(1091), - [anon_sym_break] = ACTIONS(1091), - [anon_sym_const] = ACTIONS(1091), - [anon_sym_continue] = ACTIONS(1091), - [anon_sym_default] = ACTIONS(1091), - [anon_sym_enum] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1091), - [anon_sym_for] = ACTIONS(1091), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_impl] = ACTIONS(1091), - [anon_sym_let] = ACTIONS(1091), - [anon_sym_loop] = ACTIONS(1091), - [anon_sym_match] = ACTIONS(1091), - [anon_sym_mod] = ACTIONS(1091), - [anon_sym_pub] = ACTIONS(1091), - [anon_sym_return] = ACTIONS(1091), - [anon_sym_static] = ACTIONS(1091), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_trait] = ACTIONS(1091), - [anon_sym_type] = ACTIONS(1091), - [anon_sym_union] = ACTIONS(1091), - [anon_sym_unsafe] = ACTIONS(1091), - [anon_sym_use] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_POUND] = ACTIONS(1089), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_extern] = ACTIONS(1091), - [anon_sym_LT] = ACTIONS(1089), - [anon_sym_COLON_COLON] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_DOT_DOT] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1089), - [anon_sym_move] = ACTIONS(1091), - [sym_integer_literal] = ACTIONS(1089), - [aux_sym_string_literal_token1] = ACTIONS(1089), - [sym_char_literal] = ACTIONS(1089), - [anon_sym_true] = ACTIONS(1091), - [anon_sym_false] = ACTIONS(1091), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1091), - [sym_super] = ACTIONS(1091), - [sym_crate] = ACTIONS(1091), - [sym_metavariable] = ACTIONS(1089), - [sym_raw_string_literal] = ACTIONS(1089), - [sym_float_literal] = ACTIONS(1089), - [sym_block_comment] = ACTIONS(3), - }, - [253] = { - [ts_builtin_sym_end] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_macro_rules_BANG] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(397), - [anon_sym_i8] = ACTIONS(397), - [anon_sym_u16] = ACTIONS(397), - [anon_sym_i16] = ACTIONS(397), - [anon_sym_u32] = ACTIONS(397), - [anon_sym_i32] = ACTIONS(397), - [anon_sym_u64] = ACTIONS(397), - [anon_sym_i64] = ACTIONS(397), - [anon_sym_u128] = ACTIONS(397), - [anon_sym_i128] = ACTIONS(397), - [anon_sym_isize] = ACTIONS(397), - [anon_sym_usize] = ACTIONS(397), - [anon_sym_f32] = ACTIONS(397), - [anon_sym_f64] = ACTIONS(397), - [anon_sym_bool] = ACTIONS(397), - [anon_sym_str] = ACTIONS(397), - [anon_sym_char] = ACTIONS(397), - [anon_sym_SQUOTE] = ACTIONS(397), - [anon_sym_async] = ACTIONS(397), - [anon_sym_break] = ACTIONS(397), - [anon_sym_const] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(397), - [anon_sym_default] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(397), - [anon_sym_fn] = ACTIONS(397), - [anon_sym_for] = ACTIONS(397), - [anon_sym_if] = ACTIONS(397), - [anon_sym_impl] = ACTIONS(397), - [anon_sym_let] = ACTIONS(397), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_match] = ACTIONS(397), - [anon_sym_mod] = ACTIONS(397), - [anon_sym_pub] = ACTIONS(397), - [anon_sym_return] = ACTIONS(397), - [anon_sym_static] = ACTIONS(397), - [anon_sym_struct] = ACTIONS(397), - [anon_sym_trait] = ACTIONS(397), - [anon_sym_type] = ACTIONS(397), - [anon_sym_union] = ACTIONS(397), - [anon_sym_unsafe] = ACTIONS(397), - [anon_sym_use] = ACTIONS(397), - [anon_sym_while] = ACTIONS(397), - [anon_sym_POUND] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(395), - [anon_sym_extern] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_move] = ACTIONS(397), - [sym_integer_literal] = ACTIONS(395), - [aux_sym_string_literal_token1] = ACTIONS(395), - [sym_char_literal] = ACTIONS(395), - [anon_sym_true] = ACTIONS(397), - [anon_sym_false] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_crate] = ACTIONS(397), - [sym_metavariable] = ACTIONS(395), - [sym_raw_string_literal] = ACTIONS(395), - [sym_float_literal] = ACTIONS(395), - [sym_block_comment] = ACTIONS(3), - }, - [254] = { - [ts_builtin_sym_end] = ACTIONS(387), - [sym_identifier] = ACTIONS(389), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_macro_rules_BANG] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(389), - [anon_sym_i8] = ACTIONS(389), - [anon_sym_u16] = ACTIONS(389), - [anon_sym_i16] = ACTIONS(389), - [anon_sym_u32] = ACTIONS(389), - [anon_sym_i32] = ACTIONS(389), - [anon_sym_u64] = ACTIONS(389), - [anon_sym_i64] = ACTIONS(389), - [anon_sym_u128] = ACTIONS(389), - [anon_sym_i128] = ACTIONS(389), - [anon_sym_isize] = ACTIONS(389), - [anon_sym_usize] = ACTIONS(389), - [anon_sym_f32] = ACTIONS(389), - [anon_sym_f64] = ACTIONS(389), - [anon_sym_bool] = ACTIONS(389), - [anon_sym_str] = ACTIONS(389), - [anon_sym_char] = ACTIONS(389), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_async] = ACTIONS(389), - [anon_sym_break] = ACTIONS(389), - [anon_sym_const] = ACTIONS(389), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_default] = ACTIONS(389), - [anon_sym_enum] = ACTIONS(389), - [anon_sym_fn] = ACTIONS(389), - [anon_sym_for] = ACTIONS(389), - [anon_sym_if] = ACTIONS(389), - [anon_sym_impl] = ACTIONS(389), - [anon_sym_let] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(389), - [anon_sym_match] = ACTIONS(389), - [anon_sym_mod] = ACTIONS(389), - [anon_sym_pub] = ACTIONS(389), - [anon_sym_return] = ACTIONS(389), - [anon_sym_static] = ACTIONS(389), - [anon_sym_struct] = ACTIONS(389), - [anon_sym_trait] = ACTIONS(389), - [anon_sym_type] = ACTIONS(389), - [anon_sym_union] = ACTIONS(389), - [anon_sym_unsafe] = ACTIONS(389), - [anon_sym_use] = ACTIONS(389), - [anon_sym_while] = ACTIONS(389), - [anon_sym_POUND] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_move] = ACTIONS(389), - [sym_integer_literal] = ACTIONS(387), - [aux_sym_string_literal_token1] = ACTIONS(387), - [sym_char_literal] = ACTIONS(387), - [anon_sym_true] = ACTIONS(389), - [anon_sym_false] = ACTIONS(389), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(389), - [sym_super] = ACTIONS(389), - [sym_crate] = ACTIONS(389), - [sym_metavariable] = ACTIONS(387), - [sym_raw_string_literal] = ACTIONS(387), - [sym_float_literal] = ACTIONS(387), - [sym_block_comment] = ACTIONS(3), - }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(391), - [sym_identifier] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_macro_rules_BANG] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SQUOTE] = ACTIONS(393), - [anon_sym_async] = ACTIONS(393), - [anon_sym_break] = ACTIONS(393), - [anon_sym_const] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_default] = ACTIONS(393), - [anon_sym_enum] = ACTIONS(393), - [anon_sym_fn] = ACTIONS(393), - [anon_sym_for] = ACTIONS(393), - [anon_sym_if] = ACTIONS(393), - [anon_sym_impl] = ACTIONS(393), - [anon_sym_let] = ACTIONS(393), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_match] = ACTIONS(393), - [anon_sym_mod] = ACTIONS(393), - [anon_sym_pub] = ACTIONS(393), - [anon_sym_return] = ACTIONS(393), - [anon_sym_static] = ACTIONS(393), - [anon_sym_struct] = ACTIONS(393), - [anon_sym_trait] = ACTIONS(393), - [anon_sym_type] = ACTIONS(393), - [anon_sym_union] = ACTIONS(393), - [anon_sym_unsafe] = ACTIONS(393), - [anon_sym_use] = ACTIONS(393), - [anon_sym_while] = ACTIONS(393), - [anon_sym_POUND] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(391), - [anon_sym_extern] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_move] = ACTIONS(393), - [sym_integer_literal] = ACTIONS(391), - [aux_sym_string_literal_token1] = ACTIONS(391), - [sym_char_literal] = ACTIONS(391), - [anon_sym_true] = ACTIONS(393), - [anon_sym_false] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(393), - [sym_super] = ACTIONS(393), - [sym_crate] = ACTIONS(393), - [sym_metavariable] = ACTIONS(391), - [sym_raw_string_literal] = ACTIONS(391), - [sym_float_literal] = ACTIONS(391), - [sym_block_comment] = ACTIONS(3), - }, - [256] = { - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_macro_rules_BANG] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1093), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_u8] = ACTIONS(1095), - [anon_sym_i8] = ACTIONS(1095), - [anon_sym_u16] = ACTIONS(1095), - [anon_sym_i16] = ACTIONS(1095), - [anon_sym_u32] = ACTIONS(1095), - [anon_sym_i32] = ACTIONS(1095), - [anon_sym_u64] = ACTIONS(1095), - [anon_sym_i64] = ACTIONS(1095), - [anon_sym_u128] = ACTIONS(1095), - [anon_sym_i128] = ACTIONS(1095), - [anon_sym_isize] = ACTIONS(1095), - [anon_sym_usize] = ACTIONS(1095), - [anon_sym_f32] = ACTIONS(1095), - [anon_sym_f64] = ACTIONS(1095), - [anon_sym_bool] = ACTIONS(1095), - [anon_sym_str] = ACTIONS(1095), - [anon_sym_char] = ACTIONS(1095), - [anon_sym_SQUOTE] = ACTIONS(1095), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_default] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1095), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_impl] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_loop] = ACTIONS(1095), - [anon_sym_match] = ACTIONS(1095), - [anon_sym_mod] = ACTIONS(1095), - [anon_sym_pub] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_struct] = ACTIONS(1095), - [anon_sym_trait] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_union] = ACTIONS(1095), - [anon_sym_unsafe] = ACTIONS(1095), - [anon_sym_use] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_POUND] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_extern] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_COLON_COLON] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_DOT_DOT] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_move] = ACTIONS(1095), - [sym_integer_literal] = ACTIONS(1093), - [aux_sym_string_literal_token1] = ACTIONS(1093), - [sym_char_literal] = ACTIONS(1093), - [anon_sym_true] = ACTIONS(1095), - [anon_sym_false] = ACTIONS(1095), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1093), - [sym_raw_string_literal] = ACTIONS(1093), - [sym_float_literal] = ACTIONS(1093), - [sym_block_comment] = ACTIONS(3), - }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_identifier] = ACTIONS(1099), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_macro_rules_BANG] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_u8] = ACTIONS(1099), - [anon_sym_i8] = ACTIONS(1099), - [anon_sym_u16] = ACTIONS(1099), - [anon_sym_i16] = ACTIONS(1099), - [anon_sym_u32] = ACTIONS(1099), - [anon_sym_i32] = ACTIONS(1099), - [anon_sym_u64] = ACTIONS(1099), - [anon_sym_i64] = ACTIONS(1099), - [anon_sym_u128] = ACTIONS(1099), - [anon_sym_i128] = ACTIONS(1099), - [anon_sym_isize] = ACTIONS(1099), - [anon_sym_usize] = ACTIONS(1099), - [anon_sym_f32] = ACTIONS(1099), - [anon_sym_f64] = ACTIONS(1099), - [anon_sym_bool] = ACTIONS(1099), - [anon_sym_str] = ACTIONS(1099), - [anon_sym_char] = ACTIONS(1099), - [anon_sym_SQUOTE] = ACTIONS(1099), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_break] = ACTIONS(1099), - [anon_sym_const] = ACTIONS(1099), - [anon_sym_continue] = ACTIONS(1099), - [anon_sym_default] = ACTIONS(1099), - [anon_sym_enum] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_impl] = ACTIONS(1099), - [anon_sym_let] = ACTIONS(1099), - [anon_sym_loop] = ACTIONS(1099), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_mod] = ACTIONS(1099), - [anon_sym_pub] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(1099), - [anon_sym_static] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1099), - [anon_sym_trait] = ACTIONS(1099), - [anon_sym_type] = ACTIONS(1099), - [anon_sym_union] = ACTIONS(1099), - [anon_sym_unsafe] = ACTIONS(1099), - [anon_sym_use] = ACTIONS(1099), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_POUND] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_extern] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1097), - [anon_sym_COLON_COLON] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1097), - [anon_sym_DOT_DOT] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_move] = ACTIONS(1099), - [sym_integer_literal] = ACTIONS(1097), - [aux_sym_string_literal_token1] = ACTIONS(1097), - [sym_char_literal] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1099), - [anon_sym_false] = ACTIONS(1099), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1099), - [sym_super] = ACTIONS(1099), - [sym_crate] = ACTIONS(1099), - [sym_metavariable] = ACTIONS(1097), - [sym_raw_string_literal] = ACTIONS(1097), - [sym_float_literal] = ACTIONS(1097), - [sym_block_comment] = ACTIONS(3), - }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(1101), - [sym_identifier] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1101), - [anon_sym_macro_rules_BANG] = ACTIONS(1101), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(1101), - [anon_sym_LBRACK] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1101), - [anon_sym_u8] = ACTIONS(1103), - [anon_sym_i8] = ACTIONS(1103), - [anon_sym_u16] = ACTIONS(1103), - [anon_sym_i16] = ACTIONS(1103), - [anon_sym_u32] = ACTIONS(1103), - [anon_sym_i32] = ACTIONS(1103), - [anon_sym_u64] = ACTIONS(1103), - [anon_sym_i64] = ACTIONS(1103), - [anon_sym_u128] = ACTIONS(1103), - [anon_sym_i128] = ACTIONS(1103), - [anon_sym_isize] = ACTIONS(1103), - [anon_sym_usize] = ACTIONS(1103), - [anon_sym_f32] = ACTIONS(1103), - [anon_sym_f64] = ACTIONS(1103), - [anon_sym_bool] = ACTIONS(1103), - [anon_sym_str] = ACTIONS(1103), - [anon_sym_char] = ACTIONS(1103), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_async] = ACTIONS(1103), - [anon_sym_break] = ACTIONS(1103), - [anon_sym_const] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1103), - [anon_sym_for] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1103), - [anon_sym_impl] = ACTIONS(1103), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_loop] = ACTIONS(1103), - [anon_sym_match] = ACTIONS(1103), - [anon_sym_mod] = ACTIONS(1103), - [anon_sym_pub] = ACTIONS(1103), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_static] = ACTIONS(1103), - [anon_sym_struct] = ACTIONS(1103), - [anon_sym_trait] = ACTIONS(1103), - [anon_sym_type] = ACTIONS(1103), - [anon_sym_union] = ACTIONS(1103), - [anon_sym_unsafe] = ACTIONS(1103), - [anon_sym_use] = ACTIONS(1103), - [anon_sym_while] = ACTIONS(1103), - [anon_sym_POUND] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_extern] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1101), - [anon_sym_COLON_COLON] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1101), - [anon_sym_DOT_DOT] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1101), - [anon_sym_move] = ACTIONS(1103), - [sym_integer_literal] = ACTIONS(1101), - [aux_sym_string_literal_token1] = ACTIONS(1101), - [sym_char_literal] = ACTIONS(1101), - [anon_sym_true] = ACTIONS(1103), - [anon_sym_false] = ACTIONS(1103), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1103), - [sym_super] = ACTIONS(1103), - [sym_crate] = ACTIONS(1103), - [sym_metavariable] = ACTIONS(1101), - [sym_raw_string_literal] = ACTIONS(1101), - [sym_float_literal] = ACTIONS(1101), - [sym_block_comment] = ACTIONS(3), - }, - [259] = { - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_macro_rules_BANG] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_u8] = ACTIONS(1107), - [anon_sym_i8] = ACTIONS(1107), - [anon_sym_u16] = ACTIONS(1107), - [anon_sym_i16] = ACTIONS(1107), - [anon_sym_u32] = ACTIONS(1107), - [anon_sym_i32] = ACTIONS(1107), - [anon_sym_u64] = ACTIONS(1107), - [anon_sym_i64] = ACTIONS(1107), - [anon_sym_u128] = ACTIONS(1107), - [anon_sym_i128] = ACTIONS(1107), - [anon_sym_isize] = ACTIONS(1107), - [anon_sym_usize] = ACTIONS(1107), - [anon_sym_f32] = ACTIONS(1107), - [anon_sym_f64] = ACTIONS(1107), - [anon_sym_bool] = ACTIONS(1107), - [anon_sym_str] = ACTIONS(1107), - [anon_sym_char] = ACTIONS(1107), - [anon_sym_SQUOTE] = ACTIONS(1107), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_break] = ACTIONS(1107), - [anon_sym_const] = ACTIONS(1107), - [anon_sym_continue] = ACTIONS(1107), - [anon_sym_default] = ACTIONS(1107), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_fn] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_impl] = ACTIONS(1107), - [anon_sym_let] = ACTIONS(1107), - [anon_sym_loop] = ACTIONS(1107), - [anon_sym_match] = ACTIONS(1107), - [anon_sym_mod] = ACTIONS(1107), - [anon_sym_pub] = ACTIONS(1107), - [anon_sym_return] = ACTIONS(1107), - [anon_sym_static] = ACTIONS(1107), - [anon_sym_struct] = ACTIONS(1107), - [anon_sym_trait] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1107), - [anon_sym_union] = ACTIONS(1107), - [anon_sym_unsafe] = ACTIONS(1107), - [anon_sym_use] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_POUND] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_extern] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1105), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1105), - [anon_sym_move] = ACTIONS(1107), - [sym_integer_literal] = ACTIONS(1105), - [aux_sym_string_literal_token1] = ACTIONS(1105), - [sym_char_literal] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1107), - [sym_super] = ACTIONS(1107), - [sym_crate] = ACTIONS(1107), - [sym_metavariable] = ACTIONS(1105), - [sym_raw_string_literal] = ACTIONS(1105), - [sym_float_literal] = ACTIONS(1105), - [sym_block_comment] = ACTIONS(3), - }, - [260] = { - [ts_builtin_sym_end] = ACTIONS(1109), - [sym_identifier] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_macro_rules_BANG] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_u8] = ACTIONS(1111), - [anon_sym_i8] = ACTIONS(1111), - [anon_sym_u16] = ACTIONS(1111), - [anon_sym_i16] = ACTIONS(1111), - [anon_sym_u32] = ACTIONS(1111), - [anon_sym_i32] = ACTIONS(1111), - [anon_sym_u64] = ACTIONS(1111), - [anon_sym_i64] = ACTIONS(1111), - [anon_sym_u128] = ACTIONS(1111), - [anon_sym_i128] = ACTIONS(1111), - [anon_sym_isize] = ACTIONS(1111), - [anon_sym_usize] = ACTIONS(1111), - [anon_sym_f32] = ACTIONS(1111), - [anon_sym_f64] = ACTIONS(1111), - [anon_sym_bool] = ACTIONS(1111), - [anon_sym_str] = ACTIONS(1111), - [anon_sym_char] = ACTIONS(1111), - [anon_sym_SQUOTE] = ACTIONS(1111), - [anon_sym_async] = ACTIONS(1111), - [anon_sym_break] = ACTIONS(1111), - [anon_sym_const] = ACTIONS(1111), - [anon_sym_continue] = ACTIONS(1111), - [anon_sym_default] = ACTIONS(1111), - [anon_sym_enum] = ACTIONS(1111), - [anon_sym_fn] = ACTIONS(1111), - [anon_sym_for] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1111), - [anon_sym_impl] = ACTIONS(1111), - [anon_sym_let] = ACTIONS(1111), - [anon_sym_loop] = ACTIONS(1111), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_mod] = ACTIONS(1111), - [anon_sym_pub] = ACTIONS(1111), - [anon_sym_return] = ACTIONS(1111), - [anon_sym_static] = ACTIONS(1111), - [anon_sym_struct] = ACTIONS(1111), - [anon_sym_trait] = ACTIONS(1111), - [anon_sym_type] = ACTIONS(1111), - [anon_sym_union] = ACTIONS(1111), - [anon_sym_unsafe] = ACTIONS(1111), - [anon_sym_use] = ACTIONS(1111), - [anon_sym_while] = ACTIONS(1111), - [anon_sym_POUND] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1109), - [anon_sym_COLON_COLON] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_move] = ACTIONS(1111), - [sym_integer_literal] = ACTIONS(1109), - [aux_sym_string_literal_token1] = ACTIONS(1109), - [sym_char_literal] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1111), - [anon_sym_false] = ACTIONS(1111), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1111), - [sym_super] = ACTIONS(1111), - [sym_crate] = ACTIONS(1111), - [sym_metavariable] = ACTIONS(1109), - [sym_raw_string_literal] = ACTIONS(1109), - [sym_float_literal] = ACTIONS(1109), - [sym_block_comment] = ACTIONS(3), - }, - [261] = { - [ts_builtin_sym_end] = ACTIONS(1113), - [sym_identifier] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_macro_rules_BANG] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_SQUOTE] = ACTIONS(1115), - [anon_sym_async] = ACTIONS(1115), - [anon_sym_break] = ACTIONS(1115), - [anon_sym_const] = ACTIONS(1115), - [anon_sym_continue] = ACTIONS(1115), - [anon_sym_default] = ACTIONS(1115), - [anon_sym_enum] = ACTIONS(1115), - [anon_sym_fn] = ACTIONS(1115), - [anon_sym_for] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1115), - [anon_sym_impl] = ACTIONS(1115), - [anon_sym_let] = ACTIONS(1115), - [anon_sym_loop] = ACTIONS(1115), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_mod] = ACTIONS(1115), - [anon_sym_pub] = ACTIONS(1115), - [anon_sym_return] = ACTIONS(1115), - [anon_sym_static] = ACTIONS(1115), - [anon_sym_struct] = ACTIONS(1115), - [anon_sym_trait] = ACTIONS(1115), - [anon_sym_type] = ACTIONS(1115), - [anon_sym_union] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1115), - [anon_sym_use] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1115), - [anon_sym_POUND] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1113), - [anon_sym_COLON_COLON] = ACTIONS(1113), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_move] = ACTIONS(1115), - [sym_integer_literal] = ACTIONS(1113), - [aux_sym_string_literal_token1] = ACTIONS(1113), - [sym_char_literal] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1115), - [anon_sym_false] = ACTIONS(1115), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1115), - [sym_super] = ACTIONS(1115), - [sym_crate] = ACTIONS(1115), - [sym_metavariable] = ACTIONS(1113), - [sym_raw_string_literal] = ACTIONS(1113), - [sym_float_literal] = ACTIONS(1113), - [sym_block_comment] = ACTIONS(3), - }, - [262] = { - [ts_builtin_sym_end] = ACTIONS(1117), - [sym_identifier] = ACTIONS(1119), - [anon_sym_SEMI] = ACTIONS(1117), - [anon_sym_macro_rules_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_u8] = ACTIONS(1119), - [anon_sym_i8] = ACTIONS(1119), - [anon_sym_u16] = ACTIONS(1119), - [anon_sym_i16] = ACTIONS(1119), - [anon_sym_u32] = ACTIONS(1119), - [anon_sym_i32] = ACTIONS(1119), - [anon_sym_u64] = ACTIONS(1119), - [anon_sym_i64] = ACTIONS(1119), - [anon_sym_u128] = ACTIONS(1119), - [anon_sym_i128] = ACTIONS(1119), - [anon_sym_isize] = ACTIONS(1119), - [anon_sym_usize] = ACTIONS(1119), - [anon_sym_f32] = ACTIONS(1119), - [anon_sym_f64] = ACTIONS(1119), - [anon_sym_bool] = ACTIONS(1119), - [anon_sym_str] = ACTIONS(1119), - [anon_sym_char] = ACTIONS(1119), - [anon_sym_SQUOTE] = ACTIONS(1119), - [anon_sym_async] = ACTIONS(1119), - [anon_sym_break] = ACTIONS(1119), - [anon_sym_const] = ACTIONS(1119), - [anon_sym_continue] = ACTIONS(1119), - [anon_sym_default] = ACTIONS(1119), - [anon_sym_enum] = ACTIONS(1119), - [anon_sym_fn] = ACTIONS(1119), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_impl] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_loop] = ACTIONS(1119), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_mod] = ACTIONS(1119), - [anon_sym_pub] = ACTIONS(1119), - [anon_sym_return] = ACTIONS(1119), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_struct] = ACTIONS(1119), - [anon_sym_trait] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_union] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1119), - [anon_sym_use] = ACTIONS(1119), - [anon_sym_while] = ACTIONS(1119), - [anon_sym_POUND] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1117), - [anon_sym_COLON_COLON] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_move] = ACTIONS(1119), - [sym_integer_literal] = ACTIONS(1117), - [aux_sym_string_literal_token1] = ACTIONS(1117), - [sym_char_literal] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1119), - [anon_sym_false] = ACTIONS(1119), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1119), - [sym_super] = ACTIONS(1119), - [sym_crate] = ACTIONS(1119), - [sym_metavariable] = ACTIONS(1117), - [sym_raw_string_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1117), - [sym_block_comment] = ACTIONS(3), - }, - [263] = { - [ts_builtin_sym_end] = ACTIONS(1121), - [sym_identifier] = ACTIONS(1123), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_macro_rules_BANG] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_u8] = ACTIONS(1123), - [anon_sym_i8] = ACTIONS(1123), - [anon_sym_u16] = ACTIONS(1123), - [anon_sym_i16] = ACTIONS(1123), - [anon_sym_u32] = ACTIONS(1123), - [anon_sym_i32] = ACTIONS(1123), - [anon_sym_u64] = ACTIONS(1123), - [anon_sym_i64] = ACTIONS(1123), - [anon_sym_u128] = ACTIONS(1123), - [anon_sym_i128] = ACTIONS(1123), - [anon_sym_isize] = ACTIONS(1123), - [anon_sym_usize] = ACTIONS(1123), - [anon_sym_f32] = ACTIONS(1123), - [anon_sym_f64] = ACTIONS(1123), - [anon_sym_bool] = ACTIONS(1123), - [anon_sym_str] = ACTIONS(1123), - [anon_sym_char] = ACTIONS(1123), - [anon_sym_SQUOTE] = ACTIONS(1123), - [anon_sym_async] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_fn] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_impl] = ACTIONS(1123), - [anon_sym_let] = ACTIONS(1123), - [anon_sym_loop] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_mod] = ACTIONS(1123), - [anon_sym_pub] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_trait] = ACTIONS(1123), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1123), - [anon_sym_use] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_POUND] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_COLON_COLON] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_move] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [aux_sym_string_literal_token1] = ACTIONS(1121), - [sym_char_literal] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(1123), - [anon_sym_false] = ACTIONS(1123), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1123), - [sym_super] = ACTIONS(1123), - [sym_crate] = ACTIONS(1123), - [sym_metavariable] = ACTIONS(1121), - [sym_raw_string_literal] = ACTIONS(1121), - [sym_float_literal] = ACTIONS(1121), - [sym_block_comment] = ACTIONS(3), - }, - [264] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1127), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_macro_rules_BANG] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_u8] = ACTIONS(1127), - [anon_sym_i8] = ACTIONS(1127), - [anon_sym_u16] = ACTIONS(1127), - [anon_sym_i16] = ACTIONS(1127), - [anon_sym_u32] = ACTIONS(1127), - [anon_sym_i32] = ACTIONS(1127), - [anon_sym_u64] = ACTIONS(1127), - [anon_sym_i64] = ACTIONS(1127), - [anon_sym_u128] = ACTIONS(1127), - [anon_sym_i128] = ACTIONS(1127), - [anon_sym_isize] = ACTIONS(1127), - [anon_sym_usize] = ACTIONS(1127), - [anon_sym_f32] = ACTIONS(1127), - [anon_sym_f64] = ACTIONS(1127), - [anon_sym_bool] = ACTIONS(1127), - [anon_sym_str] = ACTIONS(1127), - [anon_sym_char] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [anon_sym_default] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [anon_sym_fn] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_impl] = ACTIONS(1127), - [anon_sym_let] = ACTIONS(1127), - [anon_sym_loop] = ACTIONS(1127), - [anon_sym_match] = ACTIONS(1127), - [anon_sym_mod] = ACTIONS(1127), - [anon_sym_pub] = ACTIONS(1127), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_struct] = ACTIONS(1127), - [anon_sym_trait] = ACTIONS(1127), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_union] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1127), - [anon_sym_use] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_POUND] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_extern] = ACTIONS(1127), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_move] = ACTIONS(1127), - [sym_integer_literal] = ACTIONS(1125), - [aux_sym_string_literal_token1] = ACTIONS(1125), - [sym_char_literal] = ACTIONS(1125), - [anon_sym_true] = ACTIONS(1127), - [anon_sym_false] = ACTIONS(1127), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1127), - [sym_super] = ACTIONS(1127), - [sym_crate] = ACTIONS(1127), - [sym_metavariable] = ACTIONS(1125), - [sym_raw_string_literal] = ACTIONS(1125), - [sym_float_literal] = ACTIONS(1125), - [sym_block_comment] = ACTIONS(3), - }, - [265] = { - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_macro_rules_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_u8] = ACTIONS(1131), - [anon_sym_i8] = ACTIONS(1131), - [anon_sym_u16] = ACTIONS(1131), - [anon_sym_i16] = ACTIONS(1131), - [anon_sym_u32] = ACTIONS(1131), - [anon_sym_i32] = ACTIONS(1131), - [anon_sym_u64] = ACTIONS(1131), - [anon_sym_i64] = ACTIONS(1131), - [anon_sym_u128] = ACTIONS(1131), - [anon_sym_i128] = ACTIONS(1131), - [anon_sym_isize] = ACTIONS(1131), - [anon_sym_usize] = ACTIONS(1131), - [anon_sym_f32] = ACTIONS(1131), - [anon_sym_f64] = ACTIONS(1131), - [anon_sym_bool] = ACTIONS(1131), - [anon_sym_str] = ACTIONS(1131), - [anon_sym_char] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1131), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_break] = ACTIONS(1131), - [anon_sym_const] = ACTIONS(1131), - [anon_sym_continue] = ACTIONS(1131), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_fn] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_impl] = ACTIONS(1131), - [anon_sym_let] = ACTIONS(1131), - [anon_sym_loop] = ACTIONS(1131), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_mod] = ACTIONS(1131), - [anon_sym_pub] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1131), - [anon_sym_static] = ACTIONS(1131), - [anon_sym_struct] = ACTIONS(1131), - [anon_sym_trait] = ACTIONS(1131), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_union] = ACTIONS(1131), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_use] = ACTIONS(1131), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_extern] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1129), - [anon_sym_DOT_DOT] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_move] = ACTIONS(1131), - [sym_integer_literal] = ACTIONS(1129), - [aux_sym_string_literal_token1] = ACTIONS(1129), - [sym_char_literal] = ACTIONS(1129), - [anon_sym_true] = ACTIONS(1131), - [anon_sym_false] = ACTIONS(1131), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1131), - [sym_super] = ACTIONS(1131), - [sym_crate] = ACTIONS(1131), - [sym_metavariable] = ACTIONS(1129), - [sym_raw_string_literal] = ACTIONS(1129), - [sym_float_literal] = ACTIONS(1129), - [sym_block_comment] = ACTIONS(3), - }, - [266] = { - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_macro_rules_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_u8] = ACTIONS(1135), - [anon_sym_i8] = ACTIONS(1135), - [anon_sym_u16] = ACTIONS(1135), - [anon_sym_i16] = ACTIONS(1135), - [anon_sym_u32] = ACTIONS(1135), - [anon_sym_i32] = ACTIONS(1135), - [anon_sym_u64] = ACTIONS(1135), - [anon_sym_i64] = ACTIONS(1135), - [anon_sym_u128] = ACTIONS(1135), - [anon_sym_i128] = ACTIONS(1135), - [anon_sym_isize] = ACTIONS(1135), - [anon_sym_usize] = ACTIONS(1135), - [anon_sym_f32] = ACTIONS(1135), - [anon_sym_f64] = ACTIONS(1135), - [anon_sym_bool] = ACTIONS(1135), - [anon_sym_str] = ACTIONS(1135), - [anon_sym_char] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_async] = ACTIONS(1135), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_const] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1135), - [anon_sym_default] = ACTIONS(1135), - [anon_sym_enum] = ACTIONS(1135), - [anon_sym_fn] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_impl] = ACTIONS(1135), - [anon_sym_let] = ACTIONS(1135), - [anon_sym_loop] = ACTIONS(1135), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_mod] = ACTIONS(1135), - [anon_sym_pub] = ACTIONS(1135), - [anon_sym_return] = ACTIONS(1135), - [anon_sym_static] = ACTIONS(1135), - [anon_sym_struct] = ACTIONS(1135), - [anon_sym_trait] = ACTIONS(1135), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_union] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1135), - [anon_sym_use] = ACTIONS(1135), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_extern] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_COLON_COLON] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_DOT_DOT] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_move] = ACTIONS(1135), - [sym_integer_literal] = ACTIONS(1133), - [aux_sym_string_literal_token1] = ACTIONS(1133), - [sym_char_literal] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1135), - [sym_super] = ACTIONS(1135), - [sym_crate] = ACTIONS(1135), - [sym_metavariable] = ACTIONS(1133), - [sym_raw_string_literal] = ACTIONS(1133), - [sym_float_literal] = ACTIONS(1133), - [sym_block_comment] = ACTIONS(3), - }, - [267] = { - [ts_builtin_sym_end] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1139), - [anon_sym_SEMI] = ACTIONS(1137), - [anon_sym_macro_rules_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1137), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_u8] = ACTIONS(1139), - [anon_sym_i8] = ACTIONS(1139), - [anon_sym_u16] = ACTIONS(1139), - [anon_sym_i16] = ACTIONS(1139), - [anon_sym_u32] = ACTIONS(1139), - [anon_sym_i32] = ACTIONS(1139), - [anon_sym_u64] = ACTIONS(1139), - [anon_sym_i64] = ACTIONS(1139), - [anon_sym_u128] = ACTIONS(1139), - [anon_sym_i128] = ACTIONS(1139), - [anon_sym_isize] = ACTIONS(1139), - [anon_sym_usize] = ACTIONS(1139), - [anon_sym_f32] = ACTIONS(1139), - [anon_sym_f64] = ACTIONS(1139), - [anon_sym_bool] = ACTIONS(1139), - [anon_sym_str] = ACTIONS(1139), - [anon_sym_char] = ACTIONS(1139), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_impl] = ACTIONS(1139), - [anon_sym_let] = ACTIONS(1139), - [anon_sym_loop] = ACTIONS(1139), - [anon_sym_match] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_pub] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_trait] = ACTIONS(1139), - [anon_sym_type] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1139), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1137), - [anon_sym_COLON_COLON] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1137), - [anon_sym_move] = ACTIONS(1139), - [sym_integer_literal] = ACTIONS(1137), - [aux_sym_string_literal_token1] = ACTIONS(1137), - [sym_char_literal] = ACTIONS(1137), - [anon_sym_true] = ACTIONS(1139), - [anon_sym_false] = ACTIONS(1139), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1139), - [sym_super] = ACTIONS(1139), - [sym_crate] = ACTIONS(1139), - [sym_metavariable] = ACTIONS(1137), - [sym_raw_string_literal] = ACTIONS(1137), - [sym_float_literal] = ACTIONS(1137), - [sym_block_comment] = ACTIONS(3), - }, - [268] = { - [ts_builtin_sym_end] = ACTIONS(1141), - [sym_identifier] = ACTIONS(1143), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_macro_rules_BANG] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_u8] = ACTIONS(1143), - [anon_sym_i8] = ACTIONS(1143), - [anon_sym_u16] = ACTIONS(1143), - [anon_sym_i16] = ACTIONS(1143), - [anon_sym_u32] = ACTIONS(1143), - [anon_sym_i32] = ACTIONS(1143), - [anon_sym_u64] = ACTIONS(1143), - [anon_sym_i64] = ACTIONS(1143), - [anon_sym_u128] = ACTIONS(1143), - [anon_sym_i128] = ACTIONS(1143), - [anon_sym_isize] = ACTIONS(1143), - [anon_sym_usize] = ACTIONS(1143), - [anon_sym_f32] = ACTIONS(1143), - [anon_sym_f64] = ACTIONS(1143), - [anon_sym_bool] = ACTIONS(1143), - [anon_sym_str] = ACTIONS(1143), - [anon_sym_char] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1143), - [anon_sym_async] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_fn] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_impl] = ACTIONS(1143), - [anon_sym_let] = ACTIONS(1143), - [anon_sym_loop] = ACTIONS(1143), - [anon_sym_match] = ACTIONS(1143), - [anon_sym_mod] = ACTIONS(1143), - [anon_sym_pub] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_trait] = ACTIONS(1143), - [anon_sym_type] = ACTIONS(1143), - [anon_sym_union] = ACTIONS(1143), - [anon_sym_unsafe] = ACTIONS(1143), - [anon_sym_use] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_extern] = ACTIONS(1143), - [anon_sym_LT] = ACTIONS(1141), - [anon_sym_COLON_COLON] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_DOT_DOT] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1141), - [anon_sym_move] = ACTIONS(1143), - [sym_integer_literal] = ACTIONS(1141), - [aux_sym_string_literal_token1] = ACTIONS(1141), - [sym_char_literal] = ACTIONS(1141), - [anon_sym_true] = ACTIONS(1143), - [anon_sym_false] = ACTIONS(1143), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1143), - [sym_super] = ACTIONS(1143), - [sym_crate] = ACTIONS(1143), - [sym_metavariable] = ACTIONS(1141), - [sym_raw_string_literal] = ACTIONS(1141), - [sym_float_literal] = ACTIONS(1141), - [sym_block_comment] = ACTIONS(3), - }, - [269] = { - [ts_builtin_sym_end] = ACTIONS(1145), - [sym_identifier] = ACTIONS(1147), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym_macro_rules_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_u8] = ACTIONS(1147), - [anon_sym_i8] = ACTIONS(1147), - [anon_sym_u16] = ACTIONS(1147), - [anon_sym_i16] = ACTIONS(1147), - [anon_sym_u32] = ACTIONS(1147), - [anon_sym_i32] = ACTIONS(1147), - [anon_sym_u64] = ACTIONS(1147), - [anon_sym_i64] = ACTIONS(1147), - [anon_sym_u128] = ACTIONS(1147), - [anon_sym_i128] = ACTIONS(1147), - [anon_sym_isize] = ACTIONS(1147), - [anon_sym_usize] = ACTIONS(1147), - [anon_sym_f32] = ACTIONS(1147), - [anon_sym_f64] = ACTIONS(1147), - [anon_sym_bool] = ACTIONS(1147), - [anon_sym_str] = ACTIONS(1147), - [anon_sym_char] = ACTIONS(1147), - [anon_sym_SQUOTE] = ACTIONS(1147), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_impl] = ACTIONS(1147), - [anon_sym_let] = ACTIONS(1147), - [anon_sym_loop] = ACTIONS(1147), - [anon_sym_match] = ACTIONS(1147), - [anon_sym_mod] = ACTIONS(1147), - [anon_sym_pub] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_trait] = ACTIONS(1147), - [anon_sym_type] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_unsafe] = ACTIONS(1147), - [anon_sym_use] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_POUND] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1145), - [anon_sym_COLON_COLON] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1145), - [anon_sym_DOT_DOT] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_move] = ACTIONS(1147), - [sym_integer_literal] = ACTIONS(1145), - [aux_sym_string_literal_token1] = ACTIONS(1145), - [sym_char_literal] = ACTIONS(1145), - [anon_sym_true] = ACTIONS(1147), - [anon_sym_false] = ACTIONS(1147), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1147), - [sym_super] = ACTIONS(1147), - [sym_crate] = ACTIONS(1147), - [sym_metavariable] = ACTIONS(1145), - [sym_raw_string_literal] = ACTIONS(1145), - [sym_float_literal] = ACTIONS(1145), - [sym_block_comment] = ACTIONS(3), - }, - [270] = { - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_identifier] = ACTIONS(1151), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym_macro_rules_BANG] = ACTIONS(1149), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_RBRACE] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1149), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_u8] = ACTIONS(1151), - [anon_sym_i8] = ACTIONS(1151), - [anon_sym_u16] = ACTIONS(1151), - [anon_sym_i16] = ACTIONS(1151), - [anon_sym_u32] = ACTIONS(1151), - [anon_sym_i32] = ACTIONS(1151), - [anon_sym_u64] = ACTIONS(1151), - [anon_sym_i64] = ACTIONS(1151), - [anon_sym_u128] = ACTIONS(1151), - [anon_sym_i128] = ACTIONS(1151), - [anon_sym_isize] = ACTIONS(1151), - [anon_sym_usize] = ACTIONS(1151), - [anon_sym_f32] = ACTIONS(1151), - [anon_sym_f64] = ACTIONS(1151), - [anon_sym_bool] = ACTIONS(1151), - [anon_sym_str] = ACTIONS(1151), - [anon_sym_char] = ACTIONS(1151), - [anon_sym_SQUOTE] = ACTIONS(1151), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_const] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1151), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_fn] = ACTIONS(1151), - [anon_sym_for] = ACTIONS(1151), - [anon_sym_if] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1151), - [anon_sym_let] = ACTIONS(1151), - [anon_sym_loop] = ACTIONS(1151), - [anon_sym_match] = ACTIONS(1151), - [anon_sym_mod] = ACTIONS(1151), - [anon_sym_pub] = ACTIONS(1151), - [anon_sym_return] = ACTIONS(1151), - [anon_sym_static] = ACTIONS(1151), - [anon_sym_struct] = ACTIONS(1151), - [anon_sym_trait] = ACTIONS(1151), - [anon_sym_type] = ACTIONS(1151), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1151), - [anon_sym_use] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_extern] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_COLON_COLON] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_DOT_DOT] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1149), - [anon_sym_move] = ACTIONS(1151), - [sym_integer_literal] = ACTIONS(1149), - [aux_sym_string_literal_token1] = ACTIONS(1149), - [sym_char_literal] = ACTIONS(1149), - [anon_sym_true] = ACTIONS(1151), - [anon_sym_false] = ACTIONS(1151), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1151), - [sym_super] = ACTIONS(1151), - [sym_crate] = ACTIONS(1151), - [sym_metavariable] = ACTIONS(1149), - [sym_raw_string_literal] = ACTIONS(1149), - [sym_float_literal] = ACTIONS(1149), - [sym_block_comment] = ACTIONS(3), - }, - [271] = { - [ts_builtin_sym_end] = ACTIONS(1153), - [sym_identifier] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_macro_rules_BANG] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_RBRACE] = ACTIONS(1153), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_u8] = ACTIONS(1155), - [anon_sym_i8] = ACTIONS(1155), - [anon_sym_u16] = ACTIONS(1155), - [anon_sym_i16] = ACTIONS(1155), - [anon_sym_u32] = ACTIONS(1155), - [anon_sym_i32] = ACTIONS(1155), - [anon_sym_u64] = ACTIONS(1155), - [anon_sym_i64] = ACTIONS(1155), - [anon_sym_u128] = ACTIONS(1155), - [anon_sym_i128] = ACTIONS(1155), - [anon_sym_isize] = ACTIONS(1155), - [anon_sym_usize] = ACTIONS(1155), - [anon_sym_f32] = ACTIONS(1155), - [anon_sym_f64] = ACTIONS(1155), - [anon_sym_bool] = ACTIONS(1155), - [anon_sym_str] = ACTIONS(1155), - [anon_sym_char] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_break] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1155), - [anon_sym_continue] = ACTIONS(1155), - [anon_sym_default] = ACTIONS(1155), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_fn] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1155), - [anon_sym_impl] = ACTIONS(1155), - [anon_sym_let] = ACTIONS(1155), - [anon_sym_loop] = ACTIONS(1155), - [anon_sym_match] = ACTIONS(1155), - [anon_sym_mod] = ACTIONS(1155), - [anon_sym_pub] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_trait] = ACTIONS(1155), - [anon_sym_type] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1155), - [anon_sym_unsafe] = ACTIONS(1155), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1155), - [anon_sym_POUND] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_extern] = ACTIONS(1155), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_COLON_COLON] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_move] = ACTIONS(1155), - [sym_integer_literal] = ACTIONS(1153), - [aux_sym_string_literal_token1] = ACTIONS(1153), - [sym_char_literal] = ACTIONS(1153), - [anon_sym_true] = ACTIONS(1155), - [anon_sym_false] = ACTIONS(1155), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1155), - [sym_super] = ACTIONS(1155), - [sym_crate] = ACTIONS(1155), - [sym_metavariable] = ACTIONS(1153), - [sym_raw_string_literal] = ACTIONS(1153), - [sym_float_literal] = ACTIONS(1153), - [sym_block_comment] = ACTIONS(3), - }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_macro_rules_BANG] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1157), - [anon_sym_u8] = ACTIONS(1159), - [anon_sym_i8] = ACTIONS(1159), - [anon_sym_u16] = ACTIONS(1159), - [anon_sym_i16] = ACTIONS(1159), - [anon_sym_u32] = ACTIONS(1159), - [anon_sym_i32] = ACTIONS(1159), - [anon_sym_u64] = ACTIONS(1159), - [anon_sym_i64] = ACTIONS(1159), - [anon_sym_u128] = ACTIONS(1159), - [anon_sym_i128] = ACTIONS(1159), - [anon_sym_isize] = ACTIONS(1159), - [anon_sym_usize] = ACTIONS(1159), - [anon_sym_f32] = ACTIONS(1159), - [anon_sym_f64] = ACTIONS(1159), - [anon_sym_bool] = ACTIONS(1159), - [anon_sym_str] = ACTIONS(1159), - [anon_sym_char] = ACTIONS(1159), - [anon_sym_SQUOTE] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1159), - [anon_sym_const] = ACTIONS(1159), - [anon_sym_continue] = ACTIONS(1159), - [anon_sym_default] = ACTIONS(1159), - [anon_sym_enum] = ACTIONS(1159), - [anon_sym_fn] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_impl] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_loop] = ACTIONS(1159), - [anon_sym_match] = ACTIONS(1159), - [anon_sym_mod] = ACTIONS(1159), - [anon_sym_pub] = ACTIONS(1159), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_struct] = ACTIONS(1159), - [anon_sym_trait] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_union] = ACTIONS(1159), - [anon_sym_unsafe] = ACTIONS(1159), - [anon_sym_use] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_POUND] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1157), - [anon_sym_extern] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1157), - [anon_sym_COLON_COLON] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1157), - [anon_sym_DOT_DOT] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_PIPE] = ACTIONS(1157), - [anon_sym_move] = ACTIONS(1159), - [sym_integer_literal] = ACTIONS(1157), - [aux_sym_string_literal_token1] = ACTIONS(1157), - [sym_char_literal] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(1159), - [anon_sym_false] = ACTIONS(1159), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1159), - [sym_super] = ACTIONS(1159), - [sym_crate] = ACTIONS(1159), - [sym_metavariable] = ACTIONS(1157), - [sym_raw_string_literal] = ACTIONS(1157), - [sym_float_literal] = ACTIONS(1157), - [sym_block_comment] = ACTIONS(3), - }, - [273] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_macro_rules_BANG] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_u8] = ACTIONS(1163), - [anon_sym_i8] = ACTIONS(1163), - [anon_sym_u16] = ACTIONS(1163), - [anon_sym_i16] = ACTIONS(1163), - [anon_sym_u32] = ACTIONS(1163), - [anon_sym_i32] = ACTIONS(1163), - [anon_sym_u64] = ACTIONS(1163), - [anon_sym_i64] = ACTIONS(1163), - [anon_sym_u128] = ACTIONS(1163), - [anon_sym_i128] = ACTIONS(1163), - [anon_sym_isize] = ACTIONS(1163), - [anon_sym_usize] = ACTIONS(1163), - [anon_sym_f32] = ACTIONS(1163), - [anon_sym_f64] = ACTIONS(1163), - [anon_sym_bool] = ACTIONS(1163), - [anon_sym_str] = ACTIONS(1163), - [anon_sym_char] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_async] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [anon_sym_fn] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_impl] = ACTIONS(1163), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_loop] = ACTIONS(1163), - [anon_sym_match] = ACTIONS(1163), - [anon_sym_mod] = ACTIONS(1163), - [anon_sym_pub] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_struct] = ACTIONS(1163), - [anon_sym_trait] = ACTIONS(1163), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_union] = ACTIONS(1163), - [anon_sym_unsafe] = ACTIONS(1163), - [anon_sym_use] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1161), - [anon_sym_COLON_COLON] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_DOT_DOT] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PIPE] = ACTIONS(1161), - [anon_sym_move] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1161), - [aux_sym_string_literal_token1] = ACTIONS(1161), - [sym_char_literal] = ACTIONS(1161), - [anon_sym_true] = ACTIONS(1163), - [anon_sym_false] = ACTIONS(1163), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1163), - [sym_super] = ACTIONS(1163), - [sym_crate] = ACTIONS(1163), - [sym_metavariable] = ACTIONS(1161), - [sym_raw_string_literal] = ACTIONS(1161), - [sym_float_literal] = ACTIONS(1161), - [sym_block_comment] = ACTIONS(3), - }, - [274] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_RBRACK] = ACTIONS(1171), - [anon_sym_DOLLAR] = ACTIONS(1179), - [anon_sym_u8] = ACTIONS(1165), - [anon_sym_i8] = ACTIONS(1165), - [anon_sym_u16] = ACTIONS(1165), - [anon_sym_i16] = ACTIONS(1165), - [anon_sym_u32] = ACTIONS(1165), - [anon_sym_i32] = ACTIONS(1165), - [anon_sym_u64] = ACTIONS(1165), - [anon_sym_i64] = ACTIONS(1165), - [anon_sym_u128] = ACTIONS(1165), - [anon_sym_i128] = ACTIONS(1165), - [anon_sym_isize] = ACTIONS(1165), - [anon_sym_usize] = ACTIONS(1165), - [anon_sym_f32] = ACTIONS(1165), - [anon_sym_f64] = ACTIONS(1165), - [anon_sym_bool] = ACTIONS(1165), - [anon_sym_str] = ACTIONS(1165), - [anon_sym_char] = ACTIONS(1165), - [aux_sym__non_special_token_token1] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [anon_sym_as] = ACTIONS(1165), - [anon_sym_async] = ACTIONS(1165), - [anon_sym_await] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_fn] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_impl] = ACTIONS(1165), - [anon_sym_let] = ACTIONS(1165), - [anon_sym_loop] = ACTIONS(1165), - [anon_sym_match] = ACTIONS(1165), - [anon_sym_mod] = ACTIONS(1165), - [anon_sym_pub] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_trait] = ACTIONS(1165), - [anon_sym_type] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_unsafe] = ACTIONS(1165), - [anon_sym_use] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [sym_mutable_specifier] = ACTIONS(1165), - [sym_integer_literal] = ACTIONS(1182), - [aux_sym_string_literal_token1] = ACTIONS(1185), - [sym_char_literal] = ACTIONS(1182), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1165), - [sym_super] = ACTIONS(1165), - [sym_crate] = ACTIONS(1165), - [sym_metavariable] = ACTIONS(1191), - [sym_raw_string_literal] = ACTIONS(1182), - [sym_float_literal] = ACTIONS(1182), - [sym_block_comment] = ACTIONS(3), - }, - [275] = { - [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), - }, - [276] = { - [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_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), - }, - [277] = { - [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(1202), - [sym_char_literal] = ACTIONS(1202), - [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), - }, - [278] = { - [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), - }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_macro_rules_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_RBRACE] = ACTIONS(1210), - [anon_sym_LBRACK] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_u8] = ACTIONS(1212), - [anon_sym_i8] = ACTIONS(1212), - [anon_sym_u16] = ACTIONS(1212), - [anon_sym_i16] = ACTIONS(1212), - [anon_sym_u32] = ACTIONS(1212), - [anon_sym_i32] = ACTIONS(1212), - [anon_sym_u64] = ACTIONS(1212), - [anon_sym_i64] = ACTIONS(1212), - [anon_sym_u128] = ACTIONS(1212), - [anon_sym_i128] = ACTIONS(1212), - [anon_sym_isize] = ACTIONS(1212), - [anon_sym_usize] = ACTIONS(1212), - [anon_sym_f32] = ACTIONS(1212), - [anon_sym_f64] = ACTIONS(1212), - [anon_sym_bool] = ACTIONS(1212), - [anon_sym_str] = ACTIONS(1212), - [anon_sym_char] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_fn] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_impl] = ACTIONS(1212), - [anon_sym_let] = ACTIONS(1212), - [anon_sym_loop] = ACTIONS(1212), - [anon_sym_match] = ACTIONS(1212), - [anon_sym_mod] = ACTIONS(1212), - [anon_sym_pub] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_trait] = ACTIONS(1212), - [anon_sym_type] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_unsafe] = ACTIONS(1212), - [anon_sym_use] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_POUND] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_COLON_COLON] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_DOT_DOT] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_PIPE] = ACTIONS(1210), - [anon_sym_move] = ACTIONS(1212), - [sym_integer_literal] = ACTIONS(1210), - [aux_sym_string_literal_token1] = ACTIONS(1210), - [sym_char_literal] = ACTIONS(1210), - [anon_sym_true] = ACTIONS(1212), - [anon_sym_false] = ACTIONS(1212), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1212), - [sym_super] = ACTIONS(1212), - [sym_crate] = ACTIONS(1212), - [sym_metavariable] = ACTIONS(1210), - [sym_raw_string_literal] = ACTIONS(1210), - [sym_float_literal] = ACTIONS(1210), - [sym_block_comment] = ACTIONS(3), - }, - [280] = { - [ts_builtin_sym_end] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_macro_rules_BANG] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_u8] = ACTIONS(1216), - [anon_sym_i8] = ACTIONS(1216), - [anon_sym_u16] = ACTIONS(1216), - [anon_sym_i16] = ACTIONS(1216), - [anon_sym_u32] = ACTIONS(1216), - [anon_sym_i32] = ACTIONS(1216), - [anon_sym_u64] = ACTIONS(1216), - [anon_sym_i64] = ACTIONS(1216), - [anon_sym_u128] = ACTIONS(1216), - [anon_sym_i128] = ACTIONS(1216), - [anon_sym_isize] = ACTIONS(1216), - [anon_sym_usize] = ACTIONS(1216), - [anon_sym_f32] = ACTIONS(1216), - [anon_sym_f64] = ACTIONS(1216), - [anon_sym_bool] = ACTIONS(1216), - [anon_sym_str] = ACTIONS(1216), - [anon_sym_char] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(1216), - [anon_sym_async] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_fn] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_impl] = ACTIONS(1216), - [anon_sym_let] = ACTIONS(1216), - [anon_sym_loop] = ACTIONS(1216), - [anon_sym_match] = ACTIONS(1216), - [anon_sym_mod] = ACTIONS(1216), - [anon_sym_pub] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_trait] = ACTIONS(1216), - [anon_sym_type] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_unsafe] = ACTIONS(1216), - [anon_sym_use] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_POUND] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1214), - [anon_sym_COLON_COLON] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_DOT_DOT] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1214), - [anon_sym_move] = ACTIONS(1216), - [sym_integer_literal] = ACTIONS(1214), - [aux_sym_string_literal_token1] = ACTIONS(1214), - [sym_char_literal] = ACTIONS(1214), - [anon_sym_true] = ACTIONS(1216), - [anon_sym_false] = ACTIONS(1216), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1214), - [sym_raw_string_literal] = ACTIONS(1214), - [sym_float_literal] = ACTIONS(1214), - [sym_block_comment] = ACTIONS(3), - }, - [281] = { - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_macro_rules_BANG] = ACTIONS(1218), - [anon_sym_LPAREN] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_u8] = ACTIONS(1220), - [anon_sym_i8] = ACTIONS(1220), - [anon_sym_u16] = ACTIONS(1220), - [anon_sym_i16] = ACTIONS(1220), - [anon_sym_u32] = ACTIONS(1220), - [anon_sym_i32] = ACTIONS(1220), - [anon_sym_u64] = ACTIONS(1220), - [anon_sym_i64] = ACTIONS(1220), - [anon_sym_u128] = ACTIONS(1220), - [anon_sym_i128] = ACTIONS(1220), - [anon_sym_isize] = ACTIONS(1220), - [anon_sym_usize] = ACTIONS(1220), - [anon_sym_f32] = ACTIONS(1220), - [anon_sym_f64] = ACTIONS(1220), - [anon_sym_bool] = ACTIONS(1220), - [anon_sym_str] = ACTIONS(1220), - [anon_sym_char] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_async] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_fn] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_impl] = ACTIONS(1220), - [anon_sym_let] = ACTIONS(1220), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1220), - [anon_sym_mod] = ACTIONS(1220), - [anon_sym_pub] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_trait] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_unsafe] = ACTIONS(1220), - [anon_sym_use] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_DOT_DOT] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_move] = ACTIONS(1220), - [sym_integer_literal] = ACTIONS(1218), - [aux_sym_string_literal_token1] = ACTIONS(1218), - [sym_char_literal] = ACTIONS(1218), - [anon_sym_true] = ACTIONS(1220), - [anon_sym_false] = ACTIONS(1220), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1220), - [sym_super] = ACTIONS(1220), - [sym_crate] = ACTIONS(1220), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(1218), - [sym_float_literal] = ACTIONS(1218), - [sym_block_comment] = ACTIONS(3), - }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_macro_rules_BANG] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_u8] = ACTIONS(1224), - [anon_sym_i8] = ACTIONS(1224), - [anon_sym_u16] = ACTIONS(1224), - [anon_sym_i16] = ACTIONS(1224), - [anon_sym_u32] = ACTIONS(1224), - [anon_sym_i32] = ACTIONS(1224), - [anon_sym_u64] = ACTIONS(1224), - [anon_sym_i64] = ACTIONS(1224), - [anon_sym_u128] = ACTIONS(1224), - [anon_sym_i128] = ACTIONS(1224), - [anon_sym_isize] = ACTIONS(1224), - [anon_sym_usize] = ACTIONS(1224), - [anon_sym_f32] = ACTIONS(1224), - [anon_sym_f64] = ACTIONS(1224), - [anon_sym_bool] = ACTIONS(1224), - [anon_sym_str] = ACTIONS(1224), - [anon_sym_char] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_fn] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_impl] = ACTIONS(1224), - [anon_sym_let] = ACTIONS(1224), - [anon_sym_loop] = ACTIONS(1224), - [anon_sym_match] = ACTIONS(1224), - [anon_sym_mod] = ACTIONS(1224), - [anon_sym_pub] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_trait] = ACTIONS(1224), - [anon_sym_type] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_use] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_POUND] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_COLON_COLON] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_DOT_DOT] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_move] = ACTIONS(1224), - [sym_integer_literal] = ACTIONS(1222), - [aux_sym_string_literal_token1] = ACTIONS(1222), - [sym_char_literal] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1224), - [anon_sym_false] = ACTIONS(1224), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1224), - [sym_super] = ACTIONS(1224), - [sym_crate] = ACTIONS(1224), - [sym_metavariable] = ACTIONS(1222), - [sym_raw_string_literal] = ACTIONS(1222), - [sym_float_literal] = ACTIONS(1222), - [sym_block_comment] = ACTIONS(3), - }, - [283] = { - [ts_builtin_sym_end] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_macro_rules_BANG] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_u8] = ACTIONS(1228), - [anon_sym_i8] = ACTIONS(1228), - [anon_sym_u16] = ACTIONS(1228), - [anon_sym_i16] = ACTIONS(1228), - [anon_sym_u32] = ACTIONS(1228), - [anon_sym_i32] = ACTIONS(1228), - [anon_sym_u64] = ACTIONS(1228), - [anon_sym_i64] = ACTIONS(1228), - [anon_sym_u128] = ACTIONS(1228), - [anon_sym_i128] = ACTIONS(1228), - [anon_sym_isize] = ACTIONS(1228), - [anon_sym_usize] = ACTIONS(1228), - [anon_sym_f32] = ACTIONS(1228), - [anon_sym_f64] = ACTIONS(1228), - [anon_sym_bool] = ACTIONS(1228), - [anon_sym_str] = ACTIONS(1228), - [anon_sym_char] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_async] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_fn] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_impl] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_loop] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_pub] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_trait] = ACTIONS(1228), - [anon_sym_type] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_unsafe] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_POUND] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1226), - [anon_sym_COLON_COLON] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_DOT_DOT] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1226), - [anon_sym_move] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(1226), - [aux_sym_string_literal_token1] = ACTIONS(1226), - [sym_char_literal] = ACTIONS(1226), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1228), - [sym_super] = ACTIONS(1228), - [sym_crate] = ACTIONS(1228), - [sym_metavariable] = ACTIONS(1226), - [sym_raw_string_literal] = ACTIONS(1226), - [sym_float_literal] = ACTIONS(1226), - [sym_block_comment] = ACTIONS(3), - }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(1230), - [sym_identifier] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_macro_rules_BANG] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_u8] = ACTIONS(1232), - [anon_sym_i8] = ACTIONS(1232), - [anon_sym_u16] = ACTIONS(1232), - [anon_sym_i16] = ACTIONS(1232), - [anon_sym_u32] = ACTIONS(1232), - [anon_sym_i32] = ACTIONS(1232), - [anon_sym_u64] = ACTIONS(1232), - [anon_sym_i64] = ACTIONS(1232), - [anon_sym_u128] = ACTIONS(1232), - [anon_sym_i128] = ACTIONS(1232), - [anon_sym_isize] = ACTIONS(1232), - [anon_sym_usize] = ACTIONS(1232), - [anon_sym_f32] = ACTIONS(1232), - [anon_sym_f64] = ACTIONS(1232), - [anon_sym_bool] = ACTIONS(1232), - [anon_sym_str] = ACTIONS(1232), - [anon_sym_char] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_fn] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_impl] = ACTIONS(1232), - [anon_sym_let] = ACTIONS(1232), - [anon_sym_loop] = ACTIONS(1232), - [anon_sym_match] = ACTIONS(1232), - [anon_sym_mod] = ACTIONS(1232), - [anon_sym_pub] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_trait] = ACTIONS(1232), - [anon_sym_type] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_unsafe] = ACTIONS(1232), - [anon_sym_use] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PIPE] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1232), - [sym_integer_literal] = ACTIONS(1230), - [aux_sym_string_literal_token1] = ACTIONS(1230), - [sym_char_literal] = ACTIONS(1230), - [anon_sym_true] = ACTIONS(1232), - [anon_sym_false] = ACTIONS(1232), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1232), - [sym_super] = ACTIONS(1232), - [sym_crate] = ACTIONS(1232), - [sym_metavariable] = ACTIONS(1230), - [sym_raw_string_literal] = ACTIONS(1230), - [sym_float_literal] = ACTIONS(1230), - [sym_block_comment] = ACTIONS(3), - }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_macro_rules_BANG] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_u8] = ACTIONS(1236), - [anon_sym_i8] = ACTIONS(1236), - [anon_sym_u16] = ACTIONS(1236), - [anon_sym_i16] = ACTIONS(1236), - [anon_sym_u32] = ACTIONS(1236), - [anon_sym_i32] = ACTIONS(1236), - [anon_sym_u64] = ACTIONS(1236), - [anon_sym_i64] = ACTIONS(1236), - [anon_sym_u128] = ACTIONS(1236), - [anon_sym_i128] = ACTIONS(1236), - [anon_sym_isize] = ACTIONS(1236), - [anon_sym_usize] = ACTIONS(1236), - [anon_sym_f32] = ACTIONS(1236), - [anon_sym_f64] = ACTIONS(1236), - [anon_sym_bool] = ACTIONS(1236), - [anon_sym_str] = ACTIONS(1236), - [anon_sym_char] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_async] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_fn] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_impl] = ACTIONS(1236), - [anon_sym_let] = ACTIONS(1236), - [anon_sym_loop] = ACTIONS(1236), - [anon_sym_match] = ACTIONS(1236), - [anon_sym_mod] = ACTIONS(1236), - [anon_sym_pub] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_trait] = ACTIONS(1236), - [anon_sym_type] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_unsafe] = ACTIONS(1236), - [anon_sym_use] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_COLON_COLON] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1236), - [sym_integer_literal] = ACTIONS(1234), - [aux_sym_string_literal_token1] = ACTIONS(1234), - [sym_char_literal] = ACTIONS(1234), - [anon_sym_true] = ACTIONS(1236), - [anon_sym_false] = ACTIONS(1236), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1236), - [sym_super] = ACTIONS(1236), - [sym_crate] = ACTIONS(1236), - [sym_metavariable] = ACTIONS(1234), - [sym_raw_string_literal] = ACTIONS(1234), - [sym_float_literal] = ACTIONS(1234), - [sym_block_comment] = ACTIONS(3), - }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_macro_rules_BANG] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_COLON_COLON] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1238), - [aux_sym_string_literal_token1] = ACTIONS(1238), - [sym_char_literal] = ACTIONS(1238), - [anon_sym_true] = ACTIONS(1240), - [anon_sym_false] = ACTIONS(1240), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1238), - [sym_raw_string_literal] = ACTIONS(1238), - [sym_float_literal] = ACTIONS(1238), - [sym_block_comment] = ACTIONS(3), - }, - [287] = { - [ts_builtin_sym_end] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_macro_rules_BANG] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1244), - [anon_sym_i8] = ACTIONS(1244), - [anon_sym_u16] = ACTIONS(1244), - [anon_sym_i16] = ACTIONS(1244), - [anon_sym_u32] = ACTIONS(1244), - [anon_sym_i32] = ACTIONS(1244), - [anon_sym_u64] = ACTIONS(1244), - [anon_sym_i64] = ACTIONS(1244), - [anon_sym_u128] = ACTIONS(1244), - [anon_sym_i128] = ACTIONS(1244), - [anon_sym_isize] = ACTIONS(1244), - [anon_sym_usize] = ACTIONS(1244), - [anon_sym_f32] = ACTIONS(1244), - [anon_sym_f64] = ACTIONS(1244), - [anon_sym_bool] = ACTIONS(1244), - [anon_sym_str] = ACTIONS(1244), - [anon_sym_char] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_async] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_fn] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_impl] = ACTIONS(1244), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_loop] = ACTIONS(1244), - [anon_sym_match] = ACTIONS(1244), - [anon_sym_mod] = ACTIONS(1244), - [anon_sym_pub] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_trait] = ACTIONS(1244), - [anon_sym_type] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_unsafe] = ACTIONS(1244), - [anon_sym_use] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1244), - [sym_integer_literal] = ACTIONS(1242), - [aux_sym_string_literal_token1] = ACTIONS(1242), - [sym_char_literal] = ACTIONS(1242), - [anon_sym_true] = ACTIONS(1244), - [anon_sym_false] = ACTIONS(1244), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1244), - [sym_super] = ACTIONS(1244), - [sym_crate] = ACTIONS(1244), - [sym_metavariable] = ACTIONS(1242), - [sym_raw_string_literal] = ACTIONS(1242), - [sym_float_literal] = ACTIONS(1242), - [sym_block_comment] = ACTIONS(3), - }, - [288] = { - [ts_builtin_sym_end] = ACTIONS(1246), - [sym_identifier] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_macro_rules_BANG] = ACTIONS(1246), - [anon_sym_LPAREN] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_RBRACE] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_async] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_fn] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_impl] = ACTIONS(1248), - [anon_sym_let] = ACTIONS(1248), - [anon_sym_loop] = ACTIONS(1248), - [anon_sym_match] = ACTIONS(1248), - [anon_sym_mod] = ACTIONS(1248), - [anon_sym_pub] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_trait] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_unsafe] = ACTIONS(1248), - [anon_sym_use] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_POUND] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_COLON_COLON] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1248), - [sym_integer_literal] = ACTIONS(1246), - [aux_sym_string_literal_token1] = ACTIONS(1246), - [sym_char_literal] = ACTIONS(1246), - [anon_sym_true] = ACTIONS(1248), - [anon_sym_false] = ACTIONS(1248), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1248), - [sym_super] = ACTIONS(1248), - [sym_crate] = ACTIONS(1248), - [sym_metavariable] = ACTIONS(1246), - [sym_raw_string_literal] = ACTIONS(1246), - [sym_float_literal] = ACTIONS(1246), - [sym_block_comment] = ACTIONS(3), - }, - [289] = { - [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), - }, - [290] = { - [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), - }, - [291] = { - [sym__token_pattern] = STATE(302), - [sym_token_tree_pattern] = STATE(302), - [sym_token_binding_pattern] = STATE(302), - [sym_token_repetition_pattern] = STATE(302), - [sym__literal] = STATE(302), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(1258), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1258), - [anon_sym_i8] = ACTIONS(1258), - [anon_sym_u16] = ACTIONS(1258), - [anon_sym_i16] = ACTIONS(1258), - [anon_sym_u32] = ACTIONS(1258), - [anon_sym_i32] = ACTIONS(1258), - [anon_sym_u64] = ACTIONS(1258), - [anon_sym_i64] = ACTIONS(1258), - [anon_sym_u128] = ACTIONS(1258), - [anon_sym_i128] = ACTIONS(1258), - [anon_sym_isize] = ACTIONS(1258), - [anon_sym_usize] = ACTIONS(1258), - [anon_sym_f32] = ACTIONS(1258), - [anon_sym_f64] = ACTIONS(1258), - [anon_sym_bool] = ACTIONS(1258), - [anon_sym_str] = ACTIONS(1258), - [anon_sym_char] = ACTIONS(1258), - [aux_sym__non_special_token_token1] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_as] = ACTIONS(1258), - [anon_sym_async] = ACTIONS(1258), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_fn] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_impl] = ACTIONS(1258), - [anon_sym_let] = ACTIONS(1258), - [anon_sym_loop] = ACTIONS(1258), - [anon_sym_match] = ACTIONS(1258), - [anon_sym_mod] = ACTIONS(1258), - [anon_sym_pub] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_trait] = ACTIONS(1258), - [anon_sym_type] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_unsafe] = ACTIONS(1258), - [anon_sym_use] = ACTIONS(1258), - [anon_sym_where] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [sym_mutable_specifier] = ACTIONS(1258), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [292] = { - [sym__token_pattern] = STATE(303), - [sym_token_tree_pattern] = STATE(303), - [sym_token_binding_pattern] = STATE(303), - [sym_token_repetition_pattern] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1262), - [anon_sym_i8] = ACTIONS(1262), - [anon_sym_u16] = ACTIONS(1262), - [anon_sym_i16] = ACTIONS(1262), - [anon_sym_u32] = ACTIONS(1262), - [anon_sym_i32] = ACTIONS(1262), - [anon_sym_u64] = ACTIONS(1262), - [anon_sym_i64] = ACTIONS(1262), - [anon_sym_u128] = ACTIONS(1262), - [anon_sym_i128] = ACTIONS(1262), - [anon_sym_isize] = ACTIONS(1262), - [anon_sym_usize] = ACTIONS(1262), - [anon_sym_f32] = ACTIONS(1262), - [anon_sym_f64] = ACTIONS(1262), - [anon_sym_bool] = ACTIONS(1262), - [anon_sym_str] = ACTIONS(1262), - [anon_sym_char] = ACTIONS(1262), - [aux_sym__non_special_token_token1] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_as] = ACTIONS(1262), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_await] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1262), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_fn] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_impl] = ACTIONS(1262), - [anon_sym_let] = ACTIONS(1262), - [anon_sym_loop] = ACTIONS(1262), - [anon_sym_match] = ACTIONS(1262), - [anon_sym_mod] = ACTIONS(1262), - [anon_sym_pub] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_trait] = ACTIONS(1262), - [anon_sym_type] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1262), - [anon_sym_unsafe] = ACTIONS(1262), - [anon_sym_use] = ACTIONS(1262), - [anon_sym_where] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [sym_mutable_specifier] = ACTIONS(1262), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1262), - [sym_super] = ACTIONS(1262), - [sym_crate] = ACTIONS(1262), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [293] = { - [sym__token_pattern] = STATE(304), - [sym_token_tree_pattern] = STATE(304), - [sym_token_binding_pattern] = STATE(304), - [sym_token_repetition_pattern] = STATE(304), - [sym__literal] = STATE(304), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(304), - [sym_identifier] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_RBRACK] = ACTIONS(1260), - [anon_sym_DOLLAR] = ACTIONS(1059), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_async] = ACTIONS(1264), - [anon_sym_await] = 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_where] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [sym_mutable_specifier] = ACTIONS(1264), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1264), - [sym_super] = ACTIONS(1264), - [sym_crate] = ACTIONS(1264), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [294] = { - [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), - }, - [295] = { - [sym__token_pattern] = STATE(425), - [sym_token_tree_pattern] = STATE(425), - [sym_token_binding_pattern] = STATE(425), - [sym_token_repetition_pattern] = STATE(425), - [sym__literal] = STATE(425), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(425), - [sym_identifier] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1270), - [anon_sym_i8] = ACTIONS(1270), - [anon_sym_u16] = ACTIONS(1270), - [anon_sym_i16] = ACTIONS(1270), - [anon_sym_u32] = ACTIONS(1270), - [anon_sym_i32] = ACTIONS(1270), - [anon_sym_u64] = ACTIONS(1270), - [anon_sym_i64] = ACTIONS(1270), - [anon_sym_u128] = ACTIONS(1270), - [anon_sym_i128] = ACTIONS(1270), - [anon_sym_isize] = ACTIONS(1270), - [anon_sym_usize] = ACTIONS(1270), - [anon_sym_f32] = ACTIONS(1270), - [anon_sym_f64] = ACTIONS(1270), - [anon_sym_bool] = ACTIONS(1270), - [anon_sym_str] = ACTIONS(1270), - [anon_sym_char] = ACTIONS(1270), - [aux_sym__non_special_token_token1] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_as] = ACTIONS(1270), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_await] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_fn] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_impl] = ACTIONS(1270), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_loop] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_mod] = ACTIONS(1270), - [anon_sym_pub] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_trait] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_unsafe] = ACTIONS(1270), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_where] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [sym_mutable_specifier] = ACTIONS(1270), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [296] = { - [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), - }, - [297] = { - [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), - }, - [298] = { - [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), - }, - [299] = { - [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), - }, - [300] = { - [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), - }, - [301] = { - [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), - }, - [302] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u128] = ACTIONS(1049), - [anon_sym_i128] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_str] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [aux_sym__non_special_token_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_const] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_fn] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_impl] = ACTIONS(1049), - [anon_sym_let] = ACTIONS(1049), - [anon_sym_loop] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_mod] = ACTIONS(1049), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1049), - [anon_sym_type] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1049), - [anon_sym_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [303] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u128] = ACTIONS(1049), - [anon_sym_i128] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_str] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [aux_sym__non_special_token_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_const] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_fn] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_impl] = ACTIONS(1049), - [anon_sym_let] = ACTIONS(1049), - [anon_sym_loop] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_mod] = ACTIONS(1049), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1049), - [anon_sym_type] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1049), - [anon_sym_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [304] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_RBRACK] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u128] = ACTIONS(1049), - [anon_sym_i128] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_str] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [aux_sym__non_special_token_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_const] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_fn] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_impl] = ACTIONS(1049), - [anon_sym_let] = ACTIONS(1049), - [anon_sym_loop] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_mod] = ACTIONS(1049), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1049), - [anon_sym_type] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1049), - [anon_sym_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [305] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_macro_rules_BANG] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_u8] = ACTIONS(1302), - [anon_sym_i8] = ACTIONS(1302), - [anon_sym_u16] = ACTIONS(1302), - [anon_sym_i16] = ACTIONS(1302), - [anon_sym_u32] = ACTIONS(1302), - [anon_sym_i32] = ACTIONS(1302), - [anon_sym_u64] = ACTIONS(1302), - [anon_sym_i64] = ACTIONS(1302), - [anon_sym_u128] = ACTIONS(1302), - [anon_sym_i128] = ACTIONS(1302), - [anon_sym_isize] = ACTIONS(1302), - [anon_sym_usize] = ACTIONS(1302), - [anon_sym_f32] = ACTIONS(1302), - [anon_sym_f64] = ACTIONS(1302), - [anon_sym_bool] = ACTIONS(1302), - [anon_sym_str] = ACTIONS(1302), - [anon_sym_char] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_async] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_fn] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_impl] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_loop] = ACTIONS(1302), - [anon_sym_match] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1302), - [anon_sym_pub] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_trait] = ACTIONS(1302), - [anon_sym_type] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_unsafe] = ACTIONS(1302), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_COLON_COLON] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_DOT_DOT] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_move] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1300), - [aux_sym_string_literal_token1] = ACTIONS(1300), - [sym_char_literal] = ACTIONS(1300), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1302), - [sym_super] = ACTIONS(1302), - [sym_crate] = ACTIONS(1302), - [sym_metavariable] = ACTIONS(1300), - [sym_raw_string_literal] = ACTIONS(1300), - [sym_float_literal] = ACTIONS(1300), - [sym_block_comment] = ACTIONS(3), - }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_macro_rules_BANG] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_u8] = ACTIONS(1306), - [anon_sym_i8] = ACTIONS(1306), - [anon_sym_u16] = ACTIONS(1306), - [anon_sym_i16] = ACTIONS(1306), - [anon_sym_u32] = ACTIONS(1306), - [anon_sym_i32] = ACTIONS(1306), - [anon_sym_u64] = ACTIONS(1306), - [anon_sym_i64] = ACTIONS(1306), - [anon_sym_u128] = ACTIONS(1306), - [anon_sym_i128] = ACTIONS(1306), - [anon_sym_isize] = ACTIONS(1306), - [anon_sym_usize] = ACTIONS(1306), - [anon_sym_f32] = ACTIONS(1306), - [anon_sym_f64] = ACTIONS(1306), - [anon_sym_bool] = ACTIONS(1306), - [anon_sym_str] = ACTIONS(1306), - [anon_sym_char] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_async] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_impl] = ACTIONS(1306), - [anon_sym_let] = ACTIONS(1306), - [anon_sym_loop] = ACTIONS(1306), - [anon_sym_match] = ACTIONS(1306), - [anon_sym_mod] = ACTIONS(1306), - [anon_sym_pub] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_trait] = ACTIONS(1306), - [anon_sym_type] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_unsafe] = ACTIONS(1306), - [anon_sym_use] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_COLON_COLON] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_move] = ACTIONS(1306), - [sym_integer_literal] = ACTIONS(1304), - [aux_sym_string_literal_token1] = ACTIONS(1304), - [sym_char_literal] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1306), - [sym_super] = ACTIONS(1306), - [sym_crate] = ACTIONS(1306), - [sym_metavariable] = ACTIONS(1304), - [sym_raw_string_literal] = ACTIONS(1304), - [sym_float_literal] = ACTIONS(1304), - [sym_block_comment] = ACTIONS(3), - }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_macro_rules_BANG] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_u8] = ACTIONS(1310), - [anon_sym_i8] = ACTIONS(1310), - [anon_sym_u16] = ACTIONS(1310), - [anon_sym_i16] = ACTIONS(1310), - [anon_sym_u32] = ACTIONS(1310), - [anon_sym_i32] = ACTIONS(1310), - [anon_sym_u64] = ACTIONS(1310), - [anon_sym_i64] = ACTIONS(1310), - [anon_sym_u128] = ACTIONS(1310), - [anon_sym_i128] = ACTIONS(1310), - [anon_sym_isize] = ACTIONS(1310), - [anon_sym_usize] = ACTIONS(1310), - [anon_sym_f32] = ACTIONS(1310), - [anon_sym_f64] = ACTIONS(1310), - [anon_sym_bool] = ACTIONS(1310), - [anon_sym_str] = ACTIONS(1310), - [anon_sym_char] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_fn] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_impl] = ACTIONS(1310), - [anon_sym_let] = ACTIONS(1310), - [anon_sym_loop] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_mod] = ACTIONS(1310), - [anon_sym_pub] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_trait] = ACTIONS(1310), - [anon_sym_type] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_unsafe] = ACTIONS(1310), - [anon_sym_use] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_COLON_COLON] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_move] = ACTIONS(1310), - [sym_integer_literal] = ACTIONS(1308), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1310), - [sym_super] = ACTIONS(1310), - [sym_crate] = ACTIONS(1310), - [sym_metavariable] = ACTIONS(1308), - [sym_raw_string_literal] = ACTIONS(1308), - [sym_float_literal] = ACTIONS(1308), - [sym_block_comment] = ACTIONS(3), - }, - [308] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_macro_rules_BANG] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_COLON_COLON] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_move] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1312), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1312), - [sym_raw_string_literal] = ACTIONS(1312), - [sym_float_literal] = ACTIONS(1312), - [sym_block_comment] = ACTIONS(3), - }, - [309] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_macro_rules_BANG] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1318), - [anon_sym_i8] = ACTIONS(1318), - [anon_sym_u16] = ACTIONS(1318), - [anon_sym_i16] = ACTIONS(1318), - [anon_sym_u32] = ACTIONS(1318), - [anon_sym_i32] = ACTIONS(1318), - [anon_sym_u64] = ACTIONS(1318), - [anon_sym_i64] = ACTIONS(1318), - [anon_sym_u128] = ACTIONS(1318), - [anon_sym_i128] = ACTIONS(1318), - [anon_sym_isize] = ACTIONS(1318), - [anon_sym_usize] = ACTIONS(1318), - [anon_sym_f32] = ACTIONS(1318), - [anon_sym_f64] = ACTIONS(1318), - [anon_sym_bool] = ACTIONS(1318), - [anon_sym_str] = ACTIONS(1318), - [anon_sym_char] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_async] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_fn] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_impl] = ACTIONS(1318), - [anon_sym_let] = ACTIONS(1318), - [anon_sym_loop] = ACTIONS(1318), - [anon_sym_match] = ACTIONS(1318), - [anon_sym_mod] = ACTIONS(1318), - [anon_sym_pub] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_trait] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_unsafe] = ACTIONS(1318), - [anon_sym_use] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1318), - [sym_integer_literal] = ACTIONS(1316), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1318), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), - [sym_metavariable] = ACTIONS(1316), - [sym_raw_string_literal] = ACTIONS(1316), - [sym_float_literal] = ACTIONS(1316), - [sym_block_comment] = ACTIONS(3), - }, - [310] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_macro_rules_BANG] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_u8] = ACTIONS(1322), - [anon_sym_i8] = ACTIONS(1322), - [anon_sym_u16] = ACTIONS(1322), - [anon_sym_i16] = ACTIONS(1322), - [anon_sym_u32] = ACTIONS(1322), - [anon_sym_i32] = ACTIONS(1322), - [anon_sym_u64] = ACTIONS(1322), - [anon_sym_i64] = ACTIONS(1322), - [anon_sym_u128] = ACTIONS(1322), - [anon_sym_i128] = ACTIONS(1322), - [anon_sym_isize] = ACTIONS(1322), - [anon_sym_usize] = ACTIONS(1322), - [anon_sym_f32] = ACTIONS(1322), - [anon_sym_f64] = ACTIONS(1322), - [anon_sym_bool] = ACTIONS(1322), - [anon_sym_str] = ACTIONS(1322), - [anon_sym_char] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_async] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_fn] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_impl] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_loop] = ACTIONS(1322), - [anon_sym_match] = ACTIONS(1322), - [anon_sym_mod] = ACTIONS(1322), - [anon_sym_pub] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_trait] = ACTIONS(1322), - [anon_sym_type] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_unsafe] = ACTIONS(1322), - [anon_sym_use] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_POUND] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_COLON_COLON] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_move] = ACTIONS(1322), - [sym_integer_literal] = ACTIONS(1320), - [aux_sym_string_literal_token1] = ACTIONS(1320), - [sym_char_literal] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1322), - [sym_super] = ACTIONS(1322), - [sym_crate] = ACTIONS(1322), - [sym_metavariable] = ACTIONS(1320), - [sym_raw_string_literal] = ACTIONS(1320), - [sym_float_literal] = ACTIONS(1320), - [sym_block_comment] = ACTIONS(3), - }, - [311] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_macro_rules_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1326), - [anon_sym_i8] = ACTIONS(1326), - [anon_sym_u16] = ACTIONS(1326), - [anon_sym_i16] = ACTIONS(1326), - [anon_sym_u32] = ACTIONS(1326), - [anon_sym_i32] = ACTIONS(1326), - [anon_sym_u64] = ACTIONS(1326), - [anon_sym_i64] = ACTIONS(1326), - [anon_sym_u128] = ACTIONS(1326), - [anon_sym_i128] = ACTIONS(1326), - [anon_sym_isize] = ACTIONS(1326), - [anon_sym_usize] = ACTIONS(1326), - [anon_sym_f32] = ACTIONS(1326), - [anon_sym_f64] = ACTIONS(1326), - [anon_sym_bool] = ACTIONS(1326), - [anon_sym_str] = ACTIONS(1326), - [anon_sym_char] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_async] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_fn] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_impl] = ACTIONS(1326), - [anon_sym_let] = ACTIONS(1326), - [anon_sym_loop] = ACTIONS(1326), - [anon_sym_match] = ACTIONS(1326), - [anon_sym_mod] = ACTIONS(1326), - [anon_sym_pub] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_trait] = ACTIONS(1326), - [anon_sym_type] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_unsafe] = ACTIONS(1326), - [anon_sym_use] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_DOT_DOT] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_move] = ACTIONS(1326), - [sym_integer_literal] = ACTIONS(1324), - [aux_sym_string_literal_token1] = ACTIONS(1324), - [sym_char_literal] = ACTIONS(1324), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1326), - [sym_super] = ACTIONS(1326), - [sym_crate] = ACTIONS(1326), - [sym_metavariable] = ACTIONS(1324), - [sym_raw_string_literal] = ACTIONS(1324), - [sym_float_literal] = ACTIONS(1324), - [sym_block_comment] = ACTIONS(3), - }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_macro_rules_BANG] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_async] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_fn] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_impl] = ACTIONS(1330), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_loop] = ACTIONS(1330), - [anon_sym_match] = ACTIONS(1330), - [anon_sym_mod] = ACTIONS(1330), - [anon_sym_pub] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_trait] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_unsafe] = ACTIONS(1330), - [anon_sym_use] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_POUND] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym_LT] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_DOT_DOT] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(1328), - [anon_sym_move] = ACTIONS(1330), - [sym_integer_literal] = ACTIONS(1328), - [aux_sym_string_literal_token1] = ACTIONS(1328), - [sym_char_literal] = ACTIONS(1328), - [anon_sym_true] = ACTIONS(1330), - [anon_sym_false] = ACTIONS(1330), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1330), - [sym_super] = ACTIONS(1330), - [sym_crate] = ACTIONS(1330), - [sym_metavariable] = ACTIONS(1328), - [sym_raw_string_literal] = ACTIONS(1328), - [sym_float_literal] = ACTIONS(1328), - [sym_block_comment] = ACTIONS(3), - }, - [313] = { - [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(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(436), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_RBRACK] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1059), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_async] = ACTIONS(1332), - [anon_sym_await] = 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_where] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [sym_mutable_specifier] = ACTIONS(1332), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1332), - [sym_super] = ACTIONS(1332), - [sym_crate] = ACTIONS(1332), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [314] = { - [sym__token_pattern] = STATE(246), - [sym_token_tree_pattern] = STATE(246), - [sym_token_binding_pattern] = STATE(246), - [sym_token_repetition_pattern] = STATE(246), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(246), - [sym_identifier] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_as] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_await] = 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_where] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [sym_mutable_specifier] = ACTIONS(1336), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1336), - [sym_super] = ACTIONS(1336), - [sym_crate] = ACTIONS(1336), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [315] = { - [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), - }, - [316] = { - [sym__token_pattern] = STATE(444), - [sym_token_tree_pattern] = STATE(444), - [sym_token_binding_pattern] = STATE(444), - [sym_token_repetition_pattern] = STATE(444), - [sym__literal] = STATE(444), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(444), - [sym_identifier] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1342), - [anon_sym_i8] = ACTIONS(1342), - [anon_sym_u16] = ACTIONS(1342), - [anon_sym_i16] = ACTIONS(1342), - [anon_sym_u32] = ACTIONS(1342), - [anon_sym_i32] = ACTIONS(1342), - [anon_sym_u64] = ACTIONS(1342), - [anon_sym_i64] = ACTIONS(1342), - [anon_sym_u128] = ACTIONS(1342), - [anon_sym_i128] = ACTIONS(1342), - [anon_sym_isize] = ACTIONS(1342), - [anon_sym_usize] = ACTIONS(1342), - [anon_sym_f32] = ACTIONS(1342), - [anon_sym_f64] = ACTIONS(1342), - [anon_sym_bool] = ACTIONS(1342), - [anon_sym_str] = ACTIONS(1342), - [anon_sym_char] = ACTIONS(1342), - [aux_sym__non_special_token_token1] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_async] = ACTIONS(1342), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_impl] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_pub] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_trait] = ACTIONS(1342), - [anon_sym_type] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [sym_mutable_specifier] = ACTIONS(1342), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1342), - [sym_super] = ACTIONS(1342), - [sym_crate] = ACTIONS(1342), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [317] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_macro_rules_BANG] = ACTIONS(1344), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_u8] = ACTIONS(1346), - [anon_sym_i8] = ACTIONS(1346), - [anon_sym_u16] = ACTIONS(1346), - [anon_sym_i16] = ACTIONS(1346), - [anon_sym_u32] = ACTIONS(1346), - [anon_sym_i32] = ACTIONS(1346), - [anon_sym_u64] = ACTIONS(1346), - [anon_sym_i64] = ACTIONS(1346), - [anon_sym_u128] = ACTIONS(1346), - [anon_sym_i128] = ACTIONS(1346), - [anon_sym_isize] = ACTIONS(1346), - [anon_sym_usize] = ACTIONS(1346), - [anon_sym_f32] = ACTIONS(1346), - [anon_sym_f64] = ACTIONS(1346), - [anon_sym_bool] = ACTIONS(1346), - [anon_sym_str] = ACTIONS(1346), - [anon_sym_char] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_fn] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_impl] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_pub] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_trait] = ACTIONS(1346), - [anon_sym_type] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_unsafe] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_LT] = ACTIONS(1344), - [anon_sym_COLON_COLON] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_DOT_DOT] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PIPE] = ACTIONS(1344), - [anon_sym_move] = ACTIONS(1346), - [sym_integer_literal] = ACTIONS(1344), - [aux_sym_string_literal_token1] = ACTIONS(1344), - [sym_char_literal] = ACTIONS(1344), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1344), - [sym_raw_string_literal] = ACTIONS(1344), - [sym_float_literal] = ACTIONS(1344), - [sym_block_comment] = ACTIONS(3), - }, - [318] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_macro_rules_BANG] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_LT] = ACTIONS(1348), - [anon_sym_COLON_COLON] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_DOT_DOT] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PIPE] = ACTIONS(1348), - [anon_sym_move] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1348), - [aux_sym_string_literal_token1] = ACTIONS(1348), - [sym_char_literal] = ACTIONS(1348), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_metavariable] = ACTIONS(1348), - [sym_raw_string_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1348), - [sym_block_comment] = ACTIONS(3), - }, - [319] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_macro_rules_BANG] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_u8] = ACTIONS(1354), - [anon_sym_i8] = ACTIONS(1354), - [anon_sym_u16] = ACTIONS(1354), - [anon_sym_i16] = ACTIONS(1354), - [anon_sym_u32] = ACTIONS(1354), - [anon_sym_i32] = ACTIONS(1354), - [anon_sym_u64] = ACTIONS(1354), - [anon_sym_i64] = ACTIONS(1354), - [anon_sym_u128] = ACTIONS(1354), - [anon_sym_i128] = ACTIONS(1354), - [anon_sym_isize] = ACTIONS(1354), - [anon_sym_usize] = ACTIONS(1354), - [anon_sym_f32] = ACTIONS(1354), - [anon_sym_f64] = ACTIONS(1354), - [anon_sym_bool] = ACTIONS(1354), - [anon_sym_str] = ACTIONS(1354), - [anon_sym_char] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_fn] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_impl] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_pub] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_trait] = ACTIONS(1354), - [anon_sym_type] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_unsafe] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_COLON_COLON] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_move] = ACTIONS(1354), - [sym_integer_literal] = ACTIONS(1352), - [aux_sym_string_literal_token1] = ACTIONS(1352), - [sym_char_literal] = ACTIONS(1352), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1354), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1352), - [sym_float_literal] = ACTIONS(1352), - [sym_block_comment] = ACTIONS(3), - }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_identifier] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_macro_rules_BANG] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_u8] = ACTIONS(1358), - [anon_sym_i8] = ACTIONS(1358), - [anon_sym_u16] = ACTIONS(1358), - [anon_sym_i16] = ACTIONS(1358), - [anon_sym_u32] = ACTIONS(1358), - [anon_sym_i32] = ACTIONS(1358), - [anon_sym_u64] = ACTIONS(1358), - [anon_sym_i64] = ACTIONS(1358), - [anon_sym_u128] = ACTIONS(1358), - [anon_sym_i128] = ACTIONS(1358), - [anon_sym_isize] = ACTIONS(1358), - [anon_sym_usize] = ACTIONS(1358), - [anon_sym_f32] = ACTIONS(1358), - [anon_sym_f64] = ACTIONS(1358), - [anon_sym_bool] = ACTIONS(1358), - [anon_sym_str] = ACTIONS(1358), - [anon_sym_char] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_async] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_fn] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_impl] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_pub] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_trait] = ACTIONS(1358), - [anon_sym_type] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_unsafe] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_COLON_COLON] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1358), - [sym_integer_literal] = ACTIONS(1356), - [aux_sym_string_literal_token1] = ACTIONS(1356), - [sym_char_literal] = ACTIONS(1356), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1358), - [sym_super] = ACTIONS(1358), - [sym_crate] = ACTIONS(1358), - [sym_metavariable] = ACTIONS(1356), - [sym_raw_string_literal] = ACTIONS(1356), - [sym_float_literal] = ACTIONS(1356), - [sym_block_comment] = ACTIONS(3), - }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym_macro_rules_BANG] = ACTIONS(1360), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_u8] = ACTIONS(1362), - [anon_sym_i8] = ACTIONS(1362), - [anon_sym_u16] = ACTIONS(1362), - [anon_sym_i16] = ACTIONS(1362), - [anon_sym_u32] = ACTIONS(1362), - [anon_sym_i32] = ACTIONS(1362), - [anon_sym_u64] = ACTIONS(1362), - [anon_sym_i64] = ACTIONS(1362), - [anon_sym_u128] = ACTIONS(1362), - [anon_sym_i128] = ACTIONS(1362), - [anon_sym_isize] = ACTIONS(1362), - [anon_sym_usize] = ACTIONS(1362), - [anon_sym_f32] = ACTIONS(1362), - [anon_sym_f64] = ACTIONS(1362), - [anon_sym_bool] = ACTIONS(1362), - [anon_sym_str] = ACTIONS(1362), - [anon_sym_char] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_impl] = ACTIONS(1362), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_loop] = ACTIONS(1362), - [anon_sym_match] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_pub] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_trait] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_unsafe] = ACTIONS(1362), - [anon_sym_use] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1360), - [anon_sym_COLON_COLON] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_DOT_DOT] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PIPE] = ACTIONS(1360), - [anon_sym_move] = ACTIONS(1362), - [sym_integer_literal] = ACTIONS(1360), - [aux_sym_string_literal_token1] = ACTIONS(1360), - [sym_char_literal] = ACTIONS(1360), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1362), - [sym_super] = ACTIONS(1362), - [sym_crate] = ACTIONS(1362), - [sym_metavariable] = ACTIONS(1360), - [sym_raw_string_literal] = ACTIONS(1360), - [sym_float_literal] = ACTIONS(1360), - [sym_block_comment] = ACTIONS(3), - }, - [322] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym_macro_rules_BANG] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_u8] = ACTIONS(1366), - [anon_sym_i8] = ACTIONS(1366), - [anon_sym_u16] = ACTIONS(1366), - [anon_sym_i16] = ACTIONS(1366), - [anon_sym_u32] = ACTIONS(1366), - [anon_sym_i32] = ACTIONS(1366), - [anon_sym_u64] = ACTIONS(1366), - [anon_sym_i64] = ACTIONS(1366), - [anon_sym_u128] = ACTIONS(1366), - [anon_sym_i128] = ACTIONS(1366), - [anon_sym_isize] = ACTIONS(1366), - [anon_sym_usize] = ACTIONS(1366), - [anon_sym_f32] = ACTIONS(1366), - [anon_sym_f64] = ACTIONS(1366), - [anon_sym_bool] = ACTIONS(1366), - [anon_sym_str] = ACTIONS(1366), - [anon_sym_char] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_impl] = ACTIONS(1366), - [anon_sym_let] = ACTIONS(1366), - [anon_sym_loop] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1366), - [anon_sym_mod] = ACTIONS(1366), - [anon_sym_pub] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_trait] = ACTIONS(1366), - [anon_sym_type] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_unsafe] = ACTIONS(1366), - [anon_sym_use] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_COLON_COLON] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1364), - [anon_sym_move] = ACTIONS(1366), - [sym_integer_literal] = ACTIONS(1364), - [aux_sym_string_literal_token1] = ACTIONS(1364), - [sym_char_literal] = ACTIONS(1364), - [anon_sym_true] = ACTIONS(1366), - [anon_sym_false] = ACTIONS(1366), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1366), - [sym_super] = ACTIONS(1366), - [sym_crate] = ACTIONS(1366), - [sym_metavariable] = ACTIONS(1364), - [sym_raw_string_literal] = ACTIONS(1364), - [sym_float_literal] = ACTIONS(1364), - [sym_block_comment] = ACTIONS(3), - }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_macro_rules_BANG] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_u8] = ACTIONS(1370), - [anon_sym_i8] = ACTIONS(1370), - [anon_sym_u16] = ACTIONS(1370), - [anon_sym_i16] = ACTIONS(1370), - [anon_sym_u32] = ACTIONS(1370), - [anon_sym_i32] = ACTIONS(1370), - [anon_sym_u64] = ACTIONS(1370), - [anon_sym_i64] = ACTIONS(1370), - [anon_sym_u128] = ACTIONS(1370), - [anon_sym_i128] = ACTIONS(1370), - [anon_sym_isize] = ACTIONS(1370), - [anon_sym_usize] = ACTIONS(1370), - [anon_sym_f32] = ACTIONS(1370), - [anon_sym_f64] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_str] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_async] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_impl] = ACTIONS(1370), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_loop] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1370), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_pub] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_trait] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_unsafe] = ACTIONS(1370), - [anon_sym_use] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_move] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1368), - [aux_sym_string_literal_token1] = ACTIONS(1368), - [sym_char_literal] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1370), - [sym_super] = ACTIONS(1370), - [sym_crate] = ACTIONS(1370), - [sym_metavariable] = ACTIONS(1368), - [sym_raw_string_literal] = ACTIONS(1368), - [sym_float_literal] = ACTIONS(1368), - [sym_block_comment] = ACTIONS(3), - }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_identifier] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_macro_rules_BANG] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_u8] = ACTIONS(1374), - [anon_sym_i8] = ACTIONS(1374), - [anon_sym_u16] = ACTIONS(1374), - [anon_sym_i16] = ACTIONS(1374), - [anon_sym_u32] = ACTIONS(1374), - [anon_sym_i32] = ACTIONS(1374), - [anon_sym_u64] = ACTIONS(1374), - [anon_sym_i64] = ACTIONS(1374), - [anon_sym_u128] = ACTIONS(1374), - [anon_sym_i128] = ACTIONS(1374), - [anon_sym_isize] = ACTIONS(1374), - [anon_sym_usize] = ACTIONS(1374), - [anon_sym_f32] = ACTIONS(1374), - [anon_sym_f64] = ACTIONS(1374), - [anon_sym_bool] = ACTIONS(1374), - [anon_sym_str] = ACTIONS(1374), - [anon_sym_char] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_async] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_impl] = ACTIONS(1374), - [anon_sym_let] = ACTIONS(1374), - [anon_sym_loop] = ACTIONS(1374), - [anon_sym_match] = ACTIONS(1374), - [anon_sym_mod] = ACTIONS(1374), - [anon_sym_pub] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_trait] = ACTIONS(1374), - [anon_sym_type] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_unsafe] = ACTIONS(1374), - [anon_sym_use] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym_LT] = ACTIONS(1372), - [anon_sym_COLON_COLON] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_move] = ACTIONS(1374), - [sym_integer_literal] = ACTIONS(1372), - [aux_sym_string_literal_token1] = ACTIONS(1372), - [sym_char_literal] = ACTIONS(1372), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1374), - [sym_super] = ACTIONS(1374), - [sym_crate] = ACTIONS(1374), - [sym_metavariable] = ACTIONS(1372), - [sym_raw_string_literal] = ACTIONS(1372), - [sym_float_literal] = ACTIONS(1372), - [sym_block_comment] = ACTIONS(3), - }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_macro_rules_BANG] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_u8] = ACTIONS(1378), - [anon_sym_i8] = ACTIONS(1378), - [anon_sym_u16] = ACTIONS(1378), - [anon_sym_i16] = ACTIONS(1378), - [anon_sym_u32] = ACTIONS(1378), - [anon_sym_i32] = ACTIONS(1378), - [anon_sym_u64] = ACTIONS(1378), - [anon_sym_i64] = ACTIONS(1378), - [anon_sym_u128] = ACTIONS(1378), - [anon_sym_i128] = ACTIONS(1378), - [anon_sym_isize] = ACTIONS(1378), - [anon_sym_usize] = ACTIONS(1378), - [anon_sym_f32] = ACTIONS(1378), - [anon_sym_f64] = ACTIONS(1378), - [anon_sym_bool] = ACTIONS(1378), - [anon_sym_str] = ACTIONS(1378), - [anon_sym_char] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_fn] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_impl] = ACTIONS(1378), - [anon_sym_let] = ACTIONS(1378), - [anon_sym_loop] = ACTIONS(1378), - [anon_sym_match] = ACTIONS(1378), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_pub] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_trait] = ACTIONS(1378), - [anon_sym_type] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_unsafe] = ACTIONS(1378), - [anon_sym_use] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym_LT] = ACTIONS(1376), - [anon_sym_COLON_COLON] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_move] = ACTIONS(1378), - [sym_integer_literal] = ACTIONS(1376), - [aux_sym_string_literal_token1] = ACTIONS(1376), - [sym_char_literal] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1378), - [sym_super] = ACTIONS(1378), - [sym_crate] = ACTIONS(1378), - [sym_metavariable] = ACTIONS(1376), - [sym_raw_string_literal] = ACTIONS(1376), - [sym_float_literal] = ACTIONS(1376), - [sym_block_comment] = ACTIONS(3), - }, - [326] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_macro_rules_BANG] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_u8] = ACTIONS(1382), - [anon_sym_i8] = ACTIONS(1382), - [anon_sym_u16] = ACTIONS(1382), - [anon_sym_i16] = ACTIONS(1382), - [anon_sym_u32] = ACTIONS(1382), - [anon_sym_i32] = ACTIONS(1382), - [anon_sym_u64] = ACTIONS(1382), - [anon_sym_i64] = ACTIONS(1382), - [anon_sym_u128] = ACTIONS(1382), - [anon_sym_i128] = ACTIONS(1382), - [anon_sym_isize] = ACTIONS(1382), - [anon_sym_usize] = ACTIONS(1382), - [anon_sym_f32] = ACTIONS(1382), - [anon_sym_f64] = ACTIONS(1382), - [anon_sym_bool] = ACTIONS(1382), - [anon_sym_str] = ACTIONS(1382), - [anon_sym_char] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_async] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_impl] = ACTIONS(1382), - [anon_sym_let] = ACTIONS(1382), - [anon_sym_loop] = ACTIONS(1382), - [anon_sym_match] = ACTIONS(1382), - [anon_sym_mod] = ACTIONS(1382), - [anon_sym_pub] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_trait] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_unsafe] = ACTIONS(1382), - [anon_sym_use] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_COLON_COLON] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_move] = ACTIONS(1382), - [sym_integer_literal] = ACTIONS(1380), - [aux_sym_string_literal_token1] = ACTIONS(1380), - [sym_char_literal] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1382), - [anon_sym_false] = ACTIONS(1382), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1382), - [sym_super] = ACTIONS(1382), - [sym_crate] = ACTIONS(1382), - [sym_metavariable] = ACTIONS(1380), - [sym_raw_string_literal] = ACTIONS(1380), - [sym_float_literal] = ACTIONS(1380), - [sym_block_comment] = ACTIONS(3), - }, - [327] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_macro_rules_BANG] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_LBRACK] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_u8] = ACTIONS(1386), - [anon_sym_i8] = ACTIONS(1386), - [anon_sym_u16] = ACTIONS(1386), - [anon_sym_i16] = ACTIONS(1386), - [anon_sym_u32] = ACTIONS(1386), - [anon_sym_i32] = ACTIONS(1386), - [anon_sym_u64] = ACTIONS(1386), - [anon_sym_i64] = ACTIONS(1386), - [anon_sym_u128] = ACTIONS(1386), - [anon_sym_i128] = ACTIONS(1386), - [anon_sym_isize] = ACTIONS(1386), - [anon_sym_usize] = ACTIONS(1386), - [anon_sym_f32] = ACTIONS(1386), - [anon_sym_f64] = ACTIONS(1386), - [anon_sym_bool] = ACTIONS(1386), - [anon_sym_str] = ACTIONS(1386), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_fn] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_impl] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_loop] = ACTIONS(1386), - [anon_sym_match] = ACTIONS(1386), - [anon_sym_mod] = ACTIONS(1386), - [anon_sym_pub] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_trait] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_unsafe] = ACTIONS(1386), - [anon_sym_use] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym_LT] = ACTIONS(1384), - [anon_sym_COLON_COLON] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_move] = ACTIONS(1386), - [sym_integer_literal] = ACTIONS(1384), - [aux_sym_string_literal_token1] = ACTIONS(1384), - [sym_char_literal] = ACTIONS(1384), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1386), - [sym_super] = ACTIONS(1386), - [sym_crate] = ACTIONS(1386), - [sym_metavariable] = ACTIONS(1384), - [sym_raw_string_literal] = ACTIONS(1384), - [sym_float_literal] = ACTIONS(1384), - [sym_block_comment] = ACTIONS(3), - }, - [328] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_macro_rules_BANG] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_u8] = ACTIONS(1390), - [anon_sym_i8] = ACTIONS(1390), - [anon_sym_u16] = ACTIONS(1390), - [anon_sym_i16] = ACTIONS(1390), - [anon_sym_u32] = ACTIONS(1390), - [anon_sym_i32] = ACTIONS(1390), - [anon_sym_u64] = ACTIONS(1390), - [anon_sym_i64] = ACTIONS(1390), - [anon_sym_u128] = ACTIONS(1390), - [anon_sym_i128] = ACTIONS(1390), - [anon_sym_isize] = ACTIONS(1390), - [anon_sym_usize] = ACTIONS(1390), - [anon_sym_f32] = ACTIONS(1390), - [anon_sym_f64] = ACTIONS(1390), - [anon_sym_bool] = ACTIONS(1390), - [anon_sym_str] = ACTIONS(1390), - [anon_sym_char] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_async] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_fn] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_impl] = ACTIONS(1390), - [anon_sym_let] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1390), - [anon_sym_mod] = ACTIONS(1390), - [anon_sym_pub] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_trait] = ACTIONS(1390), - [anon_sym_type] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_unsafe] = ACTIONS(1390), - [anon_sym_use] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_COLON_COLON] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_DOT_DOT] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1388), - [anon_sym_move] = ACTIONS(1390), - [sym_integer_literal] = ACTIONS(1388), - [aux_sym_string_literal_token1] = ACTIONS(1388), - [sym_char_literal] = ACTIONS(1388), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1390), - [sym_super] = ACTIONS(1390), - [sym_crate] = ACTIONS(1390), - [sym_metavariable] = ACTIONS(1388), - [sym_raw_string_literal] = ACTIONS(1388), - [sym_float_literal] = ACTIONS(1388), - [sym_block_comment] = ACTIONS(3), - }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_macro_rules_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_u8] = ACTIONS(1394), - [anon_sym_i8] = ACTIONS(1394), - [anon_sym_u16] = ACTIONS(1394), - [anon_sym_i16] = ACTIONS(1394), - [anon_sym_u32] = ACTIONS(1394), - [anon_sym_i32] = ACTIONS(1394), - [anon_sym_u64] = ACTIONS(1394), - [anon_sym_i64] = ACTIONS(1394), - [anon_sym_u128] = ACTIONS(1394), - [anon_sym_i128] = ACTIONS(1394), - [anon_sym_isize] = ACTIONS(1394), - [anon_sym_usize] = ACTIONS(1394), - [anon_sym_f32] = ACTIONS(1394), - [anon_sym_f64] = ACTIONS(1394), - [anon_sym_bool] = ACTIONS(1394), - [anon_sym_str] = ACTIONS(1394), - [anon_sym_char] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_async] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_fn] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_impl] = ACTIONS(1394), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_loop] = ACTIONS(1394), - [anon_sym_match] = ACTIONS(1394), - [anon_sym_mod] = ACTIONS(1394), - [anon_sym_pub] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_trait] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_unsafe] = ACTIONS(1394), - [anon_sym_use] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_COLON_COLON] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_move] = ACTIONS(1394), - [sym_integer_literal] = ACTIONS(1392), - [aux_sym_string_literal_token1] = ACTIONS(1392), - [sym_char_literal] = ACTIONS(1392), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1394), - [sym_super] = ACTIONS(1394), - [sym_crate] = ACTIONS(1394), - [sym_metavariable] = ACTIONS(1392), - [sym_raw_string_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1392), - [sym_block_comment] = ACTIONS(3), - }, - [330] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_macro_rules_BANG] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_u8] = ACTIONS(1398), - [anon_sym_i8] = ACTIONS(1398), - [anon_sym_u16] = ACTIONS(1398), - [anon_sym_i16] = ACTIONS(1398), - [anon_sym_u32] = ACTIONS(1398), - [anon_sym_i32] = ACTIONS(1398), - [anon_sym_u64] = ACTIONS(1398), - [anon_sym_i64] = ACTIONS(1398), - [anon_sym_u128] = ACTIONS(1398), - [anon_sym_i128] = ACTIONS(1398), - [anon_sym_isize] = ACTIONS(1398), - [anon_sym_usize] = ACTIONS(1398), - [anon_sym_f32] = ACTIONS(1398), - [anon_sym_f64] = ACTIONS(1398), - [anon_sym_bool] = ACTIONS(1398), - [anon_sym_str] = ACTIONS(1398), - [anon_sym_char] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_async] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_fn] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_impl] = ACTIONS(1398), - [anon_sym_let] = ACTIONS(1398), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1398), - [anon_sym_pub] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_trait] = ACTIONS(1398), - [anon_sym_type] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_unsafe] = ACTIONS(1398), - [anon_sym_use] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_COLON_COLON] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_move] = ACTIONS(1398), - [sym_integer_literal] = ACTIONS(1396), - [aux_sym_string_literal_token1] = ACTIONS(1396), - [sym_char_literal] = ACTIONS(1396), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1398), - [sym_super] = ACTIONS(1398), - [sym_crate] = ACTIONS(1398), - [sym_metavariable] = ACTIONS(1396), - [sym_raw_string_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1396), - [sym_block_comment] = ACTIONS(3), - }, - [331] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_macro_rules_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_u8] = ACTIONS(1402), - [anon_sym_i8] = ACTIONS(1402), - [anon_sym_u16] = ACTIONS(1402), - [anon_sym_i16] = ACTIONS(1402), - [anon_sym_u32] = ACTIONS(1402), - [anon_sym_i32] = ACTIONS(1402), - [anon_sym_u64] = ACTIONS(1402), - [anon_sym_i64] = ACTIONS(1402), - [anon_sym_u128] = ACTIONS(1402), - [anon_sym_i128] = ACTIONS(1402), - [anon_sym_isize] = ACTIONS(1402), - [anon_sym_usize] = ACTIONS(1402), - [anon_sym_f32] = ACTIONS(1402), - [anon_sym_f64] = ACTIONS(1402), - [anon_sym_bool] = ACTIONS(1402), - [anon_sym_str] = ACTIONS(1402), - [anon_sym_char] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_async] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_fn] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_impl] = ACTIONS(1402), - [anon_sym_let] = ACTIONS(1402), - [anon_sym_loop] = ACTIONS(1402), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_mod] = ACTIONS(1402), - [anon_sym_pub] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_trait] = ACTIONS(1402), - [anon_sym_type] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1402), - [anon_sym_use] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_COLON_COLON] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_move] = ACTIONS(1402), - [sym_integer_literal] = ACTIONS(1400), - [aux_sym_string_literal_token1] = ACTIONS(1400), - [sym_char_literal] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1402), - [sym_super] = ACTIONS(1402), - [sym_crate] = ACTIONS(1402), - [sym_metavariable] = ACTIONS(1400), - [sym_raw_string_literal] = ACTIONS(1400), - [sym_float_literal] = ACTIONS(1400), - [sym_block_comment] = ACTIONS(3), - }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_macro_rules_BANG] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_u8] = ACTIONS(1406), - [anon_sym_i8] = ACTIONS(1406), - [anon_sym_u16] = ACTIONS(1406), - [anon_sym_i16] = ACTIONS(1406), - [anon_sym_u32] = ACTIONS(1406), - [anon_sym_i32] = ACTIONS(1406), - [anon_sym_u64] = ACTIONS(1406), - [anon_sym_i64] = ACTIONS(1406), - [anon_sym_u128] = ACTIONS(1406), - [anon_sym_i128] = ACTIONS(1406), - [anon_sym_isize] = ACTIONS(1406), - [anon_sym_usize] = ACTIONS(1406), - [anon_sym_f32] = ACTIONS(1406), - [anon_sym_f64] = ACTIONS(1406), - [anon_sym_bool] = ACTIONS(1406), - [anon_sym_str] = ACTIONS(1406), - [anon_sym_char] = ACTIONS(1406), - [anon_sym_SQUOTE] = ACTIONS(1406), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_fn] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_impl] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_loop] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1406), - [anon_sym_pub] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_trait] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1406), - [anon_sym_use] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_COLON_COLON] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_move] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(1404), - [aux_sym_string_literal_token1] = ACTIONS(1404), - [sym_char_literal] = ACTIONS(1404), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1406), - [sym_super] = ACTIONS(1406), - [sym_crate] = ACTIONS(1406), - [sym_metavariable] = ACTIONS(1404), - [sym_raw_string_literal] = ACTIONS(1404), - [sym_float_literal] = ACTIONS(1404), - [sym_block_comment] = ACTIONS(3), - }, - [333] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_macro_rules_BANG] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_impl] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_loop] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1410), - [anon_sym_pub] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_trait] = ACTIONS(1410), - [anon_sym_type] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_unsafe] = ACTIONS(1410), - [anon_sym_use] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_PIPE] = ACTIONS(1408), - [anon_sym_move] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1408), - [aux_sym_string_literal_token1] = ACTIONS(1408), - [sym_char_literal] = ACTIONS(1408), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1410), - [sym_super] = ACTIONS(1410), - [sym_crate] = ACTIONS(1410), - [sym_metavariable] = ACTIONS(1408), - [sym_raw_string_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1408), - [sym_block_comment] = ACTIONS(3), - }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_macro_rules_BANG] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_u8] = ACTIONS(1414), - [anon_sym_i8] = ACTIONS(1414), - [anon_sym_u16] = ACTIONS(1414), - [anon_sym_i16] = ACTIONS(1414), - [anon_sym_u32] = ACTIONS(1414), - [anon_sym_i32] = ACTIONS(1414), - [anon_sym_u64] = ACTIONS(1414), - [anon_sym_i64] = ACTIONS(1414), - [anon_sym_u128] = ACTIONS(1414), - [anon_sym_i128] = ACTIONS(1414), - [anon_sym_isize] = ACTIONS(1414), - [anon_sym_usize] = ACTIONS(1414), - [anon_sym_f32] = ACTIONS(1414), - [anon_sym_f64] = ACTIONS(1414), - [anon_sym_bool] = ACTIONS(1414), - [anon_sym_str] = ACTIONS(1414), - [anon_sym_char] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_async] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_impl] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_pub] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_trait] = ACTIONS(1414), - [anon_sym_type] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_unsafe] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_LT] = ACTIONS(1412), - [anon_sym_COLON_COLON] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_DOT_DOT] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1412), - [anon_sym_move] = ACTIONS(1414), - [sym_integer_literal] = ACTIONS(1412), - [aux_sym_string_literal_token1] = ACTIONS(1412), - [sym_char_literal] = ACTIONS(1412), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1414), - [sym_super] = ACTIONS(1414), - [sym_crate] = ACTIONS(1414), - [sym_metavariable] = ACTIONS(1412), - [sym_raw_string_literal] = ACTIONS(1412), - [sym_float_literal] = ACTIONS(1412), - [sym_block_comment] = ACTIONS(3), - }, - [335] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_identifier] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_macro_rules_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_u8] = ACTIONS(1418), - [anon_sym_i8] = ACTIONS(1418), - [anon_sym_u16] = ACTIONS(1418), - [anon_sym_i16] = ACTIONS(1418), - [anon_sym_u32] = ACTIONS(1418), - [anon_sym_i32] = ACTIONS(1418), - [anon_sym_u64] = ACTIONS(1418), - [anon_sym_i64] = ACTIONS(1418), - [anon_sym_u128] = ACTIONS(1418), - [anon_sym_i128] = ACTIONS(1418), - [anon_sym_isize] = ACTIONS(1418), - [anon_sym_usize] = ACTIONS(1418), - [anon_sym_f32] = ACTIONS(1418), - [anon_sym_f64] = ACTIONS(1418), - [anon_sym_bool] = ACTIONS(1418), - [anon_sym_str] = ACTIONS(1418), - [anon_sym_char] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_fn] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_impl] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_pub] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_trait] = ACTIONS(1418), - [anon_sym_type] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_move] = ACTIONS(1418), - [sym_integer_literal] = ACTIONS(1416), - [aux_sym_string_literal_token1] = ACTIONS(1416), - [sym_char_literal] = ACTIONS(1416), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1418), - [sym_super] = ACTIONS(1418), - [sym_crate] = ACTIONS(1418), - [sym_metavariable] = ACTIONS(1416), - [sym_raw_string_literal] = ACTIONS(1416), - [sym_float_literal] = ACTIONS(1416), - [sym_block_comment] = ACTIONS(3), - }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_macro_rules_BANG] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_u8] = ACTIONS(1422), - [anon_sym_i8] = ACTIONS(1422), - [anon_sym_u16] = ACTIONS(1422), - [anon_sym_i16] = ACTIONS(1422), - [anon_sym_u32] = ACTIONS(1422), - [anon_sym_i32] = ACTIONS(1422), - [anon_sym_u64] = ACTIONS(1422), - [anon_sym_i64] = ACTIONS(1422), - [anon_sym_u128] = ACTIONS(1422), - [anon_sym_i128] = ACTIONS(1422), - [anon_sym_isize] = ACTIONS(1422), - [anon_sym_usize] = ACTIONS(1422), - [anon_sym_f32] = ACTIONS(1422), - [anon_sym_f64] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_str] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_fn] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_impl] = ACTIONS(1422), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_loop] = ACTIONS(1422), - [anon_sym_match] = ACTIONS(1422), - [anon_sym_mod] = ACTIONS(1422), - [anon_sym_pub] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_trait] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_unsafe] = ACTIONS(1422), - [anon_sym_use] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_COLON_COLON] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_DOT_DOT] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_move] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1420), - [aux_sym_string_literal_token1] = ACTIONS(1420), - [sym_char_literal] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1422), - [sym_super] = ACTIONS(1422), - [sym_crate] = ACTIONS(1422), - [sym_metavariable] = ACTIONS(1420), - [sym_raw_string_literal] = ACTIONS(1420), - [sym_float_literal] = ACTIONS(1420), - [sym_block_comment] = ACTIONS(3), - }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_macro_rules_BANG] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_u8] = ACTIONS(1426), - [anon_sym_i8] = ACTIONS(1426), - [anon_sym_u16] = ACTIONS(1426), - [anon_sym_i16] = ACTIONS(1426), - [anon_sym_u32] = ACTIONS(1426), - [anon_sym_i32] = ACTIONS(1426), - [anon_sym_u64] = ACTIONS(1426), - [anon_sym_i64] = ACTIONS(1426), - [anon_sym_u128] = ACTIONS(1426), - [anon_sym_i128] = ACTIONS(1426), - [anon_sym_isize] = ACTIONS(1426), - [anon_sym_usize] = ACTIONS(1426), - [anon_sym_f32] = ACTIONS(1426), - [anon_sym_f64] = ACTIONS(1426), - [anon_sym_bool] = ACTIONS(1426), - [anon_sym_str] = ACTIONS(1426), - [anon_sym_char] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_fn] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_impl] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_pub] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_trait] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_unsafe] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_DOT_DOT] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PIPE] = ACTIONS(1424), - [anon_sym_move] = ACTIONS(1426), - [sym_integer_literal] = ACTIONS(1424), - [aux_sym_string_literal_token1] = ACTIONS(1424), - [sym_char_literal] = ACTIONS(1424), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_crate] = ACTIONS(1426), - [sym_metavariable] = ACTIONS(1424), - [sym_raw_string_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1424), - [sym_block_comment] = ACTIONS(3), - }, - [338] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_macro_rules_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_u8] = ACTIONS(1430), - [anon_sym_i8] = ACTIONS(1430), - [anon_sym_u16] = ACTIONS(1430), - [anon_sym_i16] = ACTIONS(1430), - [anon_sym_u32] = ACTIONS(1430), - [anon_sym_i32] = ACTIONS(1430), - [anon_sym_u64] = ACTIONS(1430), - [anon_sym_i64] = ACTIONS(1430), - [anon_sym_u128] = ACTIONS(1430), - [anon_sym_i128] = ACTIONS(1430), - [anon_sym_isize] = ACTIONS(1430), - [anon_sym_usize] = ACTIONS(1430), - [anon_sym_f32] = ACTIONS(1430), - [anon_sym_f64] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_str] = ACTIONS(1430), - [anon_sym_char] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_async] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_impl] = ACTIONS(1430), - [anon_sym_let] = ACTIONS(1430), - [anon_sym_loop] = ACTIONS(1430), - [anon_sym_match] = ACTIONS(1430), - [anon_sym_mod] = ACTIONS(1430), - [anon_sym_pub] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_trait] = ACTIONS(1430), - [anon_sym_type] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_unsafe] = ACTIONS(1430), - [anon_sym_use] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_DOT_DOT] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_move] = ACTIONS(1430), - [sym_integer_literal] = ACTIONS(1428), - [aux_sym_string_literal_token1] = ACTIONS(1428), - [sym_char_literal] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_crate] = ACTIONS(1430), - [sym_metavariable] = ACTIONS(1428), - [sym_raw_string_literal] = ACTIONS(1428), - [sym_float_literal] = ACTIONS(1428), - [sym_block_comment] = ACTIONS(3), - }, - [339] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_DOT_DOT] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_move] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1432), - [aux_sym_string_literal_token1] = ACTIONS(1432), - [sym_char_literal] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym_raw_string_literal] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), - [sym_block_comment] = ACTIONS(3), - }, - [340] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_macro_rules_BANG] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_u8] = ACTIONS(1438), - [anon_sym_i8] = ACTIONS(1438), - [anon_sym_u16] = ACTIONS(1438), - [anon_sym_i16] = ACTIONS(1438), - [anon_sym_u32] = ACTIONS(1438), - [anon_sym_i32] = ACTIONS(1438), - [anon_sym_u64] = ACTIONS(1438), - [anon_sym_i64] = ACTIONS(1438), - [anon_sym_u128] = ACTIONS(1438), - [anon_sym_i128] = ACTIONS(1438), - [anon_sym_isize] = ACTIONS(1438), - [anon_sym_usize] = ACTIONS(1438), - [anon_sym_f32] = ACTIONS(1438), - [anon_sym_f64] = ACTIONS(1438), - [anon_sym_bool] = ACTIONS(1438), - [anon_sym_str] = ACTIONS(1438), - [anon_sym_char] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_async] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_impl] = ACTIONS(1438), - [anon_sym_let] = ACTIONS(1438), - [anon_sym_loop] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1438), - [anon_sym_mod] = ACTIONS(1438), - [anon_sym_pub] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_trait] = ACTIONS(1438), - [anon_sym_type] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_unsafe] = ACTIONS(1438), - [anon_sym_use] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1436), - [anon_sym_COLON_COLON] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_DOT_DOT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_move] = ACTIONS(1438), - [sym_integer_literal] = ACTIONS(1436), - [aux_sym_string_literal_token1] = ACTIONS(1436), - [sym_char_literal] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1438), - [anon_sym_false] = ACTIONS(1438), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1438), - [sym_super] = ACTIONS(1438), - [sym_crate] = ACTIONS(1438), - [sym_metavariable] = ACTIONS(1436), - [sym_raw_string_literal] = ACTIONS(1436), - [sym_float_literal] = ACTIONS(1436), - [sym_block_comment] = ACTIONS(3), - }, - [341] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_macro_rules_BANG] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_u8] = ACTIONS(1442), - [anon_sym_i8] = ACTIONS(1442), - [anon_sym_u16] = ACTIONS(1442), - [anon_sym_i16] = ACTIONS(1442), - [anon_sym_u32] = ACTIONS(1442), - [anon_sym_i32] = ACTIONS(1442), - [anon_sym_u64] = ACTIONS(1442), - [anon_sym_i64] = ACTIONS(1442), - [anon_sym_u128] = ACTIONS(1442), - [anon_sym_i128] = ACTIONS(1442), - [anon_sym_isize] = ACTIONS(1442), - [anon_sym_usize] = ACTIONS(1442), - [anon_sym_f32] = ACTIONS(1442), - [anon_sym_f64] = ACTIONS(1442), - [anon_sym_bool] = ACTIONS(1442), - [anon_sym_str] = ACTIONS(1442), - [anon_sym_char] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_async] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_impl] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1442), - [anon_sym_loop] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1442), - [anon_sym_mod] = ACTIONS(1442), - [anon_sym_pub] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_trait] = ACTIONS(1442), - [anon_sym_type] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_unsafe] = ACTIONS(1442), - [anon_sym_use] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym_LT] = ACTIONS(1440), - [anon_sym_COLON_COLON] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_DOT_DOT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_move] = ACTIONS(1442), - [sym_integer_literal] = ACTIONS(1440), - [aux_sym_string_literal_token1] = ACTIONS(1440), - [sym_char_literal] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1442), - [anon_sym_false] = ACTIONS(1442), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1442), - [sym_super] = ACTIONS(1442), - [sym_crate] = ACTIONS(1442), - [sym_metavariable] = ACTIONS(1440), - [sym_raw_string_literal] = ACTIONS(1440), - [sym_float_literal] = ACTIONS(1440), - [sym_block_comment] = ACTIONS(3), - }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(1444), - [sym_identifier] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_macro_rules_BANG] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_u8] = ACTIONS(1446), - [anon_sym_i8] = ACTIONS(1446), - [anon_sym_u16] = ACTIONS(1446), - [anon_sym_i16] = ACTIONS(1446), - [anon_sym_u32] = ACTIONS(1446), - [anon_sym_i32] = ACTIONS(1446), - [anon_sym_u64] = ACTIONS(1446), - [anon_sym_i64] = ACTIONS(1446), - [anon_sym_u128] = ACTIONS(1446), - [anon_sym_i128] = ACTIONS(1446), - [anon_sym_isize] = ACTIONS(1446), - [anon_sym_usize] = ACTIONS(1446), - [anon_sym_f32] = ACTIONS(1446), - [anon_sym_f64] = ACTIONS(1446), - [anon_sym_bool] = ACTIONS(1446), - [anon_sym_str] = ACTIONS(1446), - [anon_sym_char] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_async] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_impl] = ACTIONS(1446), - [anon_sym_let] = ACTIONS(1446), - [anon_sym_loop] = ACTIONS(1446), - [anon_sym_match] = ACTIONS(1446), - [anon_sym_mod] = ACTIONS(1446), - [anon_sym_pub] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_trait] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_unsafe] = ACTIONS(1446), - [anon_sym_use] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_DOT_DOT] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_move] = ACTIONS(1446), - [sym_integer_literal] = ACTIONS(1444), - [aux_sym_string_literal_token1] = ACTIONS(1444), - [sym_char_literal] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1446), - [anon_sym_false] = ACTIONS(1446), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1446), - [sym_super] = ACTIONS(1446), - [sym_crate] = ACTIONS(1446), - [sym_metavariable] = ACTIONS(1444), - [sym_raw_string_literal] = ACTIONS(1444), - [sym_float_literal] = ACTIONS(1444), - [sym_block_comment] = ACTIONS(3), - }, - [343] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_macro_rules_BANG] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_u8] = ACTIONS(1450), - [anon_sym_i8] = ACTIONS(1450), - [anon_sym_u16] = ACTIONS(1450), - [anon_sym_i16] = ACTIONS(1450), - [anon_sym_u32] = ACTIONS(1450), - [anon_sym_i32] = ACTIONS(1450), - [anon_sym_u64] = ACTIONS(1450), - [anon_sym_i64] = ACTIONS(1450), - [anon_sym_u128] = ACTIONS(1450), - [anon_sym_i128] = ACTIONS(1450), - [anon_sym_isize] = ACTIONS(1450), - [anon_sym_usize] = ACTIONS(1450), - [anon_sym_f32] = ACTIONS(1450), - [anon_sym_f64] = ACTIONS(1450), - [anon_sym_bool] = ACTIONS(1450), - [anon_sym_str] = ACTIONS(1450), - [anon_sym_char] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_async] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_fn] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_impl] = ACTIONS(1450), - [anon_sym_let] = ACTIONS(1450), - [anon_sym_loop] = ACTIONS(1450), - [anon_sym_match] = ACTIONS(1450), - [anon_sym_mod] = ACTIONS(1450), - [anon_sym_pub] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_trait] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_unsafe] = ACTIONS(1450), - [anon_sym_use] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_COLON_COLON] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_DOT_DOT] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_move] = ACTIONS(1450), - [sym_integer_literal] = ACTIONS(1448), - [aux_sym_string_literal_token1] = ACTIONS(1448), - [sym_char_literal] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1450), - [anon_sym_false] = ACTIONS(1450), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1450), - [sym_super] = ACTIONS(1450), - [sym_crate] = ACTIONS(1450), - [sym_metavariable] = ACTIONS(1448), - [sym_raw_string_literal] = ACTIONS(1448), - [sym_float_literal] = ACTIONS(1448), - [sym_block_comment] = ACTIONS(3), - }, - [344] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_identifier] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_macro_rules_BANG] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_u8] = ACTIONS(1454), - [anon_sym_i8] = ACTIONS(1454), - [anon_sym_u16] = ACTIONS(1454), - [anon_sym_i16] = ACTIONS(1454), - [anon_sym_u32] = ACTIONS(1454), - [anon_sym_i32] = ACTIONS(1454), - [anon_sym_u64] = ACTIONS(1454), - [anon_sym_i64] = ACTIONS(1454), - [anon_sym_u128] = ACTIONS(1454), - [anon_sym_i128] = ACTIONS(1454), - [anon_sym_isize] = ACTIONS(1454), - [anon_sym_usize] = ACTIONS(1454), - [anon_sym_f32] = ACTIONS(1454), - [anon_sym_f64] = ACTIONS(1454), - [anon_sym_bool] = ACTIONS(1454), - [anon_sym_str] = ACTIONS(1454), - [anon_sym_char] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_async] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_fn] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_impl] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_pub] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_trait] = ACTIONS(1454), - [anon_sym_type] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_unsafe] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_COLON_COLON] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_move] = ACTIONS(1454), - [sym_integer_literal] = ACTIONS(1452), - [aux_sym_string_literal_token1] = ACTIONS(1452), - [sym_char_literal] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1454), - [sym_super] = ACTIONS(1454), - [sym_crate] = ACTIONS(1454), - [sym_metavariable] = ACTIONS(1452), - [sym_raw_string_literal] = ACTIONS(1452), - [sym_float_literal] = ACTIONS(1452), - [sym_block_comment] = ACTIONS(3), - }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_macro_rules_BANG] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_u8] = ACTIONS(1458), - [anon_sym_i8] = ACTIONS(1458), - [anon_sym_u16] = ACTIONS(1458), - [anon_sym_i16] = ACTIONS(1458), - [anon_sym_u32] = ACTIONS(1458), - [anon_sym_i32] = ACTIONS(1458), - [anon_sym_u64] = ACTIONS(1458), - [anon_sym_i64] = ACTIONS(1458), - [anon_sym_u128] = ACTIONS(1458), - [anon_sym_i128] = ACTIONS(1458), - [anon_sym_isize] = ACTIONS(1458), - [anon_sym_usize] = ACTIONS(1458), - [anon_sym_f32] = ACTIONS(1458), - [anon_sym_f64] = ACTIONS(1458), - [anon_sym_bool] = ACTIONS(1458), - [anon_sym_str] = ACTIONS(1458), - [anon_sym_char] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_async] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_impl] = ACTIONS(1458), - [anon_sym_let] = ACTIONS(1458), - [anon_sym_loop] = ACTIONS(1458), - [anon_sym_match] = ACTIONS(1458), - [anon_sym_mod] = ACTIONS(1458), - [anon_sym_pub] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_trait] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_unsafe] = ACTIONS(1458), - [anon_sym_use] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_COLON_COLON] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_move] = ACTIONS(1458), - [sym_integer_literal] = ACTIONS(1456), - [aux_sym_string_literal_token1] = ACTIONS(1456), - [sym_char_literal] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1458), - [anon_sym_false] = ACTIONS(1458), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1458), - [sym_super] = ACTIONS(1458), - [sym_crate] = ACTIONS(1458), - [sym_metavariable] = ACTIONS(1456), - [sym_raw_string_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1456), - [sym_block_comment] = ACTIONS(3), - }, - [346] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_macro_rules_BANG] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_u8] = ACTIONS(1462), - [anon_sym_i8] = ACTIONS(1462), - [anon_sym_u16] = ACTIONS(1462), - [anon_sym_i16] = ACTIONS(1462), - [anon_sym_u32] = ACTIONS(1462), - [anon_sym_i32] = ACTIONS(1462), - [anon_sym_u64] = ACTIONS(1462), - [anon_sym_i64] = ACTIONS(1462), - [anon_sym_u128] = ACTIONS(1462), - [anon_sym_i128] = ACTIONS(1462), - [anon_sym_isize] = ACTIONS(1462), - [anon_sym_usize] = ACTIONS(1462), - [anon_sym_f32] = ACTIONS(1462), - [anon_sym_f64] = ACTIONS(1462), - [anon_sym_bool] = ACTIONS(1462), - [anon_sym_str] = ACTIONS(1462), - [anon_sym_char] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [anon_sym_fn] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_impl] = ACTIONS(1462), - [anon_sym_let] = ACTIONS(1462), - [anon_sym_loop] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_mod] = ACTIONS(1462), - [anon_sym_pub] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_trait] = ACTIONS(1462), - [anon_sym_type] = ACTIONS(1462), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_unsafe] = ACTIONS(1462), - [anon_sym_use] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_COLON_COLON] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_DOT_DOT] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_move] = ACTIONS(1462), - [sym_integer_literal] = ACTIONS(1460), - [aux_sym_string_literal_token1] = ACTIONS(1460), - [sym_char_literal] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1462), - [sym_super] = ACTIONS(1462), - [sym_crate] = ACTIONS(1462), - [sym_metavariable] = ACTIONS(1460), - [sym_raw_string_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1460), - [sym_block_comment] = ACTIONS(3), - }, - [347] = { - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_macro_rules_BANG] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_u8] = ACTIONS(1466), - [anon_sym_i8] = ACTIONS(1466), - [anon_sym_u16] = ACTIONS(1466), - [anon_sym_i16] = ACTIONS(1466), - [anon_sym_u32] = ACTIONS(1466), - [anon_sym_i32] = ACTIONS(1466), - [anon_sym_u64] = ACTIONS(1466), - [anon_sym_i64] = ACTIONS(1466), - [anon_sym_u128] = ACTIONS(1466), - [anon_sym_i128] = ACTIONS(1466), - [anon_sym_isize] = ACTIONS(1466), - [anon_sym_usize] = ACTIONS(1466), - [anon_sym_f32] = ACTIONS(1466), - [anon_sym_f64] = ACTIONS(1466), - [anon_sym_bool] = ACTIONS(1466), - [anon_sym_str] = ACTIONS(1466), - [anon_sym_char] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_impl] = ACTIONS(1466), - [anon_sym_let] = ACTIONS(1466), - [anon_sym_loop] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_mod] = ACTIONS(1466), - [anon_sym_pub] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_trait] = ACTIONS(1466), - [anon_sym_type] = ACTIONS(1466), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1466), - [anon_sym_use] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_COLON_COLON] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_DOT_DOT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_move] = ACTIONS(1466), - [sym_integer_literal] = ACTIONS(1464), - [aux_sym_string_literal_token1] = ACTIONS(1464), - [sym_char_literal] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1466), - [anon_sym_false] = ACTIONS(1466), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1466), - [sym_super] = ACTIONS(1466), - [sym_crate] = ACTIONS(1466), - [sym_metavariable] = ACTIONS(1464), - [sym_raw_string_literal] = ACTIONS(1464), - [sym_float_literal] = ACTIONS(1464), - [sym_block_comment] = ACTIONS(3), - }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(1468), - [sym_identifier] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_macro_rules_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_u8] = ACTIONS(1470), - [anon_sym_i8] = ACTIONS(1470), - [anon_sym_u16] = ACTIONS(1470), - [anon_sym_i16] = ACTIONS(1470), - [anon_sym_u32] = ACTIONS(1470), - [anon_sym_i32] = ACTIONS(1470), - [anon_sym_u64] = ACTIONS(1470), - [anon_sym_i64] = ACTIONS(1470), - [anon_sym_u128] = ACTIONS(1470), - [anon_sym_i128] = ACTIONS(1470), - [anon_sym_isize] = ACTIONS(1470), - [anon_sym_usize] = ACTIONS(1470), - [anon_sym_f32] = ACTIONS(1470), - [anon_sym_f64] = ACTIONS(1470), - [anon_sym_bool] = ACTIONS(1470), - [anon_sym_str] = ACTIONS(1470), - [anon_sym_char] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_default] = ACTIONS(1470), - [anon_sym_enum] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_impl] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_mod] = ACTIONS(1470), - [anon_sym_pub] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_static] = ACTIONS(1470), - [anon_sym_struct] = ACTIONS(1470), - [anon_sym_trait] = ACTIONS(1470), - [anon_sym_type] = ACTIONS(1470), - [anon_sym_union] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1470), - [sym_integer_literal] = ACTIONS(1468), - [aux_sym_string_literal_token1] = ACTIONS(1468), - [sym_char_literal] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1470), - [sym_super] = ACTIONS(1470), - [sym_crate] = ACTIONS(1470), - [sym_metavariable] = ACTIONS(1468), - [sym_raw_string_literal] = ACTIONS(1468), - [sym_float_literal] = ACTIONS(1468), - [sym_block_comment] = ACTIONS(3), - }, - [349] = { - [ts_builtin_sym_end] = ACTIONS(1472), - [sym_identifier] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_macro_rules_BANG] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_u8] = ACTIONS(1474), - [anon_sym_i8] = ACTIONS(1474), - [anon_sym_u16] = ACTIONS(1474), - [anon_sym_i16] = ACTIONS(1474), - [anon_sym_u32] = ACTIONS(1474), - [anon_sym_i32] = ACTIONS(1474), - [anon_sym_u64] = ACTIONS(1474), - [anon_sym_i64] = ACTIONS(1474), - [anon_sym_u128] = ACTIONS(1474), - [anon_sym_i128] = ACTIONS(1474), - [anon_sym_isize] = ACTIONS(1474), - [anon_sym_usize] = ACTIONS(1474), - [anon_sym_f32] = ACTIONS(1474), - [anon_sym_f64] = ACTIONS(1474), - [anon_sym_bool] = ACTIONS(1474), - [anon_sym_str] = ACTIONS(1474), - [anon_sym_char] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_async] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_enum] = ACTIONS(1474), - [anon_sym_fn] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_impl] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_mod] = ACTIONS(1474), - [anon_sym_pub] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_trait] = ACTIONS(1474), - [anon_sym_type] = ACTIONS(1474), - [anon_sym_union] = ACTIONS(1474), - [anon_sym_unsafe] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_COLON_COLON] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_move] = ACTIONS(1474), - [sym_integer_literal] = ACTIONS(1472), - [aux_sym_string_literal_token1] = ACTIONS(1472), - [sym_char_literal] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1474), - [sym_super] = ACTIONS(1474), - [sym_crate] = ACTIONS(1474), - [sym_metavariable] = ACTIONS(1472), - [sym_raw_string_literal] = ACTIONS(1472), - [sym_float_literal] = ACTIONS(1472), - [sym_block_comment] = ACTIONS(3), - }, - [350] = { - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_macro_rules_BANG] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u128] = ACTIONS(1478), - [anon_sym_i128] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_str] = ACTIONS(1478), - [anon_sym_char] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_async] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_impl] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_pub] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_trait] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_move] = ACTIONS(1478), - [sym_integer_literal] = ACTIONS(1476), - [aux_sym_string_literal_token1] = ACTIONS(1476), - [sym_char_literal] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1478), - [sym_super] = ACTIONS(1478), - [sym_crate] = ACTIONS(1478), - [sym_metavariable] = ACTIONS(1476), - [sym_raw_string_literal] = ACTIONS(1476), - [sym_float_literal] = ACTIONS(1476), - [sym_block_comment] = ACTIONS(3), - }, - [351] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_macro_rules_BANG] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_u8] = ACTIONS(1482), - [anon_sym_i8] = ACTIONS(1482), - [anon_sym_u16] = ACTIONS(1482), - [anon_sym_i16] = ACTIONS(1482), - [anon_sym_u32] = ACTIONS(1482), - [anon_sym_i32] = ACTIONS(1482), - [anon_sym_u64] = ACTIONS(1482), - [anon_sym_i64] = ACTIONS(1482), - [anon_sym_u128] = ACTIONS(1482), - [anon_sym_i128] = ACTIONS(1482), - [anon_sym_isize] = ACTIONS(1482), - [anon_sym_usize] = ACTIONS(1482), - [anon_sym_f32] = ACTIONS(1482), - [anon_sym_f64] = ACTIONS(1482), - [anon_sym_bool] = ACTIONS(1482), - [anon_sym_str] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_impl] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_loop] = ACTIONS(1482), - [anon_sym_match] = ACTIONS(1482), - [anon_sym_mod] = ACTIONS(1482), - [anon_sym_pub] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_trait] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_unsafe] = ACTIONS(1482), - [anon_sym_use] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_COLON_COLON] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_move] = ACTIONS(1482), - [sym_integer_literal] = ACTIONS(1480), - [aux_sym_string_literal_token1] = ACTIONS(1480), - [sym_char_literal] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_crate] = ACTIONS(1482), - [sym_metavariable] = ACTIONS(1480), - [sym_raw_string_literal] = ACTIONS(1480), - [sym_float_literal] = ACTIONS(1480), - [sym_block_comment] = ACTIONS(3), - }, - [352] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_macro_rules_BANG] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1484), - [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), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_async] = 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_while] = ACTIONS(1486), - [anon_sym_POUND] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_move] = ACTIONS(1486), - [sym_integer_literal] = ACTIONS(1484), - [aux_sym_string_literal_token1] = ACTIONS(1484), - [sym_char_literal] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_crate] = ACTIONS(1486), - [sym_metavariable] = ACTIONS(1484), - [sym_raw_string_literal] = ACTIONS(1484), - [sym_float_literal] = ACTIONS(1484), - [sym_block_comment] = ACTIONS(3), - }, - [353] = { - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_macro_rules_BANG] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u128] = ACTIONS(1490), - [anon_sym_i128] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_str] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_async] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_impl] = ACTIONS(1490), - [anon_sym_let] = ACTIONS(1490), - [anon_sym_loop] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_mod] = ACTIONS(1490), - [anon_sym_pub] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_trait] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_unsafe] = ACTIONS(1490), - [anon_sym_use] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_POUND] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1488), - [aux_sym_string_literal_token1] = ACTIONS(1488), - [sym_char_literal] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_crate] = ACTIONS(1490), - [sym_metavariable] = ACTIONS(1488), - [sym_raw_string_literal] = ACTIONS(1488), - [sym_float_literal] = ACTIONS(1488), - [sym_block_comment] = ACTIONS(3), - }, - [354] = { - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_macro_rules_BANG] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u128] = ACTIONS(1494), - [anon_sym_i128] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_str] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_async] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_impl] = ACTIONS(1494), - [anon_sym_let] = ACTIONS(1494), - [anon_sym_loop] = ACTIONS(1494), - [anon_sym_match] = ACTIONS(1494), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_pub] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_trait] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_unsafe] = ACTIONS(1494), - [anon_sym_use] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_COLON_COLON] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_move] = ACTIONS(1494), - [sym_integer_literal] = ACTIONS(1492), - [aux_sym_string_literal_token1] = ACTIONS(1492), - [sym_char_literal] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1494), - [sym_super] = ACTIONS(1494), - [sym_crate] = ACTIONS(1494), - [sym_metavariable] = ACTIONS(1492), - [sym_raw_string_literal] = ACTIONS(1492), - [sym_float_literal] = ACTIONS(1492), - [sym_block_comment] = ACTIONS(3), - }, - [355] = { - [ts_builtin_sym_end] = ACTIONS(1496), - [sym_identifier] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_macro_rules_BANG] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_u8] = ACTIONS(1498), - [anon_sym_i8] = ACTIONS(1498), - [anon_sym_u16] = ACTIONS(1498), - [anon_sym_i16] = ACTIONS(1498), - [anon_sym_u32] = ACTIONS(1498), - [anon_sym_i32] = ACTIONS(1498), - [anon_sym_u64] = ACTIONS(1498), - [anon_sym_i64] = ACTIONS(1498), - [anon_sym_u128] = ACTIONS(1498), - [anon_sym_i128] = ACTIONS(1498), - [anon_sym_isize] = ACTIONS(1498), - [anon_sym_usize] = ACTIONS(1498), - [anon_sym_f32] = ACTIONS(1498), - [anon_sym_f64] = ACTIONS(1498), - [anon_sym_bool] = ACTIONS(1498), - [anon_sym_str] = ACTIONS(1498), - [anon_sym_char] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_async] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_impl] = ACTIONS(1498), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_loop] = ACTIONS(1498), - [anon_sym_match] = ACTIONS(1498), - [anon_sym_mod] = ACTIONS(1498), - [anon_sym_pub] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_trait] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_unsafe] = ACTIONS(1498), - [anon_sym_use] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [anon_sym_move] = ACTIONS(1498), - [sym_integer_literal] = ACTIONS(1496), - [aux_sym_string_literal_token1] = ACTIONS(1496), - [sym_char_literal] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1498), - [anon_sym_false] = ACTIONS(1498), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1498), - [sym_super] = ACTIONS(1498), - [sym_crate] = ACTIONS(1498), - [sym_metavariable] = ACTIONS(1496), - [sym_raw_string_literal] = ACTIONS(1496), - [sym_float_literal] = ACTIONS(1496), - [sym_block_comment] = ACTIONS(3), - }, - [356] = { - [ts_builtin_sym_end] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_macro_rules_BANG] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_u8] = ACTIONS(1502), - [anon_sym_i8] = ACTIONS(1502), - [anon_sym_u16] = ACTIONS(1502), - [anon_sym_i16] = ACTIONS(1502), - [anon_sym_u32] = ACTIONS(1502), - [anon_sym_i32] = ACTIONS(1502), - [anon_sym_u64] = ACTIONS(1502), - [anon_sym_i64] = ACTIONS(1502), - [anon_sym_u128] = ACTIONS(1502), - [anon_sym_i128] = ACTIONS(1502), - [anon_sym_isize] = ACTIONS(1502), - [anon_sym_usize] = ACTIONS(1502), - [anon_sym_f32] = ACTIONS(1502), - [anon_sym_f64] = ACTIONS(1502), - [anon_sym_bool] = ACTIONS(1502), - [anon_sym_str] = ACTIONS(1502), - [anon_sym_char] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_impl] = ACTIONS(1502), - [anon_sym_let] = ACTIONS(1502), - [anon_sym_loop] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_mod] = ACTIONS(1502), - [anon_sym_pub] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_trait] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_unsafe] = ACTIONS(1502), - [anon_sym_use] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_POUND] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_COLON_COLON] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_move] = ACTIONS(1502), - [sym_integer_literal] = ACTIONS(1500), - [aux_sym_string_literal_token1] = ACTIONS(1500), - [sym_char_literal] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1502), - [anon_sym_false] = ACTIONS(1502), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1502), - [sym_super] = ACTIONS(1502), - [sym_crate] = ACTIONS(1502), - [sym_metavariable] = ACTIONS(1500), - [sym_raw_string_literal] = ACTIONS(1500), - [sym_float_literal] = ACTIONS(1500), - [sym_block_comment] = ACTIONS(3), - }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_macro_rules_BANG] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_u8] = ACTIONS(1506), - [anon_sym_i8] = ACTIONS(1506), - [anon_sym_u16] = ACTIONS(1506), - [anon_sym_i16] = ACTIONS(1506), - [anon_sym_u32] = ACTIONS(1506), - [anon_sym_i32] = ACTIONS(1506), - [anon_sym_u64] = ACTIONS(1506), - [anon_sym_i64] = ACTIONS(1506), - [anon_sym_u128] = ACTIONS(1506), - [anon_sym_i128] = ACTIONS(1506), - [anon_sym_isize] = ACTIONS(1506), - [anon_sym_usize] = ACTIONS(1506), - [anon_sym_f32] = ACTIONS(1506), - [anon_sym_f64] = ACTIONS(1506), - [anon_sym_bool] = ACTIONS(1506), - [anon_sym_str] = ACTIONS(1506), - [anon_sym_char] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_impl] = ACTIONS(1506), - [anon_sym_let] = ACTIONS(1506), - [anon_sym_loop] = ACTIONS(1506), - [anon_sym_match] = ACTIONS(1506), - [anon_sym_mod] = ACTIONS(1506), - [anon_sym_pub] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_static] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1506), - [anon_sym_trait] = ACTIONS(1506), - [anon_sym_type] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1506), - [anon_sym_unsafe] = ACTIONS(1506), - [anon_sym_use] = ACTIONS(1506), - [anon_sym_while] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_DOT_DOT] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_move] = ACTIONS(1506), - [sym_integer_literal] = ACTIONS(1504), - [aux_sym_string_literal_token1] = ACTIONS(1504), - [sym_char_literal] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1506), - [sym_super] = ACTIONS(1506), - [sym_crate] = ACTIONS(1506), - [sym_metavariable] = ACTIONS(1504), - [sym_raw_string_literal] = ACTIONS(1504), - [sym_float_literal] = ACTIONS(1504), - [sym_block_comment] = ACTIONS(3), - }, - [358] = { - [ts_builtin_sym_end] = ACTIONS(1508), - [sym_identifier] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_macro_rules_BANG] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_impl] = ACTIONS(1510), - [anon_sym_let] = ACTIONS(1510), - [anon_sym_loop] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_mod] = ACTIONS(1510), - [anon_sym_pub] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_trait] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_unsafe] = ACTIONS(1510), - [anon_sym_use] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_DOT_DOT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_move] = ACTIONS(1510), - [sym_integer_literal] = ACTIONS(1508), - [aux_sym_string_literal_token1] = ACTIONS(1508), - [sym_char_literal] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1510), - [sym_super] = ACTIONS(1510), - [sym_crate] = ACTIONS(1510), - [sym_metavariable] = ACTIONS(1508), - [sym_raw_string_literal] = ACTIONS(1508), - [sym_float_literal] = ACTIONS(1508), - [sym_block_comment] = ACTIONS(3), - }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_identifier] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_macro_rules_BANG] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_u8] = ACTIONS(1514), - [anon_sym_i8] = ACTIONS(1514), - [anon_sym_u16] = ACTIONS(1514), - [anon_sym_i16] = ACTIONS(1514), - [anon_sym_u32] = ACTIONS(1514), - [anon_sym_i32] = ACTIONS(1514), - [anon_sym_u64] = ACTIONS(1514), - [anon_sym_i64] = ACTIONS(1514), - [anon_sym_u128] = ACTIONS(1514), - [anon_sym_i128] = ACTIONS(1514), - [anon_sym_isize] = ACTIONS(1514), - [anon_sym_usize] = ACTIONS(1514), - [anon_sym_f32] = ACTIONS(1514), - [anon_sym_f64] = ACTIONS(1514), - [anon_sym_bool] = ACTIONS(1514), - [anon_sym_str] = ACTIONS(1514), - [anon_sym_char] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_impl] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_pub] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_trait] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_unsafe] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_COLON_COLON] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_DOT_DOT] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1512), - [anon_sym_move] = ACTIONS(1514), - [sym_integer_literal] = ACTIONS(1512), - [aux_sym_string_literal_token1] = ACTIONS(1512), - [sym_char_literal] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1514), - [sym_super] = ACTIONS(1514), - [sym_crate] = ACTIONS(1514), - [sym_metavariable] = ACTIONS(1512), - [sym_raw_string_literal] = ACTIONS(1512), - [sym_float_literal] = ACTIONS(1512), - [sym_block_comment] = ACTIONS(3), - }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_macro_rules_BANG] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_impl] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_mod] = ACTIONS(1518), - [anon_sym_pub] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_trait] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_unsafe] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_DOT_DOT] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_move] = ACTIONS(1518), - [sym_integer_literal] = ACTIONS(1516), - [aux_sym_string_literal_token1] = ACTIONS(1516), - [sym_char_literal] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_crate] = ACTIONS(1518), - [sym_metavariable] = ACTIONS(1516), - [sym_raw_string_literal] = ACTIONS(1516), - [sym_float_literal] = ACTIONS(1516), - [sym_block_comment] = ACTIONS(3), - }, - [361] = { - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_macro_rules_BANG] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_u8] = ACTIONS(1522), - [anon_sym_i8] = ACTIONS(1522), - [anon_sym_u16] = ACTIONS(1522), - [anon_sym_i16] = ACTIONS(1522), - [anon_sym_u32] = ACTIONS(1522), - [anon_sym_i32] = ACTIONS(1522), - [anon_sym_u64] = ACTIONS(1522), - [anon_sym_i64] = ACTIONS(1522), - [anon_sym_u128] = ACTIONS(1522), - [anon_sym_i128] = ACTIONS(1522), - [anon_sym_isize] = ACTIONS(1522), - [anon_sym_usize] = ACTIONS(1522), - [anon_sym_f32] = ACTIONS(1522), - [anon_sym_f64] = ACTIONS(1522), - [anon_sym_bool] = ACTIONS(1522), - [anon_sym_str] = ACTIONS(1522), - [anon_sym_char] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_impl] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_loop] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_mod] = ACTIONS(1522), - [anon_sym_pub] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_trait] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_unsafe] = ACTIONS(1522), - [anon_sym_use] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_move] = ACTIONS(1522), - [sym_integer_literal] = ACTIONS(1520), - [aux_sym_string_literal_token1] = ACTIONS(1520), - [sym_char_literal] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1522), - [anon_sym_false] = ACTIONS(1522), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1520), - [sym_raw_string_literal] = ACTIONS(1520), - [sym_float_literal] = ACTIONS(1520), - [sym_block_comment] = ACTIONS(3), - }, - [362] = { - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_identifier] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_macro_rules_BANG] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_impl] = ACTIONS(1526), - [anon_sym_let] = ACTIONS(1526), - [anon_sym_loop] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_mod] = ACTIONS(1526), - [anon_sym_pub] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_static] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_trait] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_unsafe] = ACTIONS(1526), - [anon_sym_use] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_extern] = ACTIONS(1526), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_DOT_DOT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_move] = ACTIONS(1526), - [sym_integer_literal] = ACTIONS(1524), - [aux_sym_string_literal_token1] = ACTIONS(1524), - [sym_char_literal] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1526), - [anon_sym_false] = ACTIONS(1526), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1526), - [sym_super] = ACTIONS(1526), - [sym_crate] = ACTIONS(1526), - [sym_metavariable] = ACTIONS(1524), - [sym_raw_string_literal] = ACTIONS(1524), - [sym_float_literal] = ACTIONS(1524), - [sym_block_comment] = ACTIONS(3), - }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_macro_rules_BANG] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_u8] = ACTIONS(1530), - [anon_sym_i8] = ACTIONS(1530), - [anon_sym_u16] = ACTIONS(1530), - [anon_sym_i16] = ACTIONS(1530), - [anon_sym_u32] = ACTIONS(1530), - [anon_sym_i32] = ACTIONS(1530), - [anon_sym_u64] = ACTIONS(1530), - [anon_sym_i64] = ACTIONS(1530), - [anon_sym_u128] = ACTIONS(1530), - [anon_sym_i128] = ACTIONS(1530), - [anon_sym_isize] = ACTIONS(1530), - [anon_sym_usize] = ACTIONS(1530), - [anon_sym_f32] = ACTIONS(1530), - [anon_sym_f64] = ACTIONS(1530), - [anon_sym_bool] = ACTIONS(1530), - [anon_sym_str] = ACTIONS(1530), - [anon_sym_char] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1530), - [anon_sym_async] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_impl] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_loop] = ACTIONS(1530), - [anon_sym_match] = ACTIONS(1530), - [anon_sym_mod] = ACTIONS(1530), - [anon_sym_pub] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_struct] = ACTIONS(1530), - [anon_sym_trait] = ACTIONS(1530), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_unsafe] = ACTIONS(1530), - [anon_sym_use] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_move] = ACTIONS(1530), - [sym_integer_literal] = ACTIONS(1528), - [aux_sym_string_literal_token1] = ACTIONS(1528), - [sym_char_literal] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1530), - [sym_super] = ACTIONS(1530), - [sym_crate] = ACTIONS(1530), - [sym_metavariable] = ACTIONS(1528), - [sym_raw_string_literal] = ACTIONS(1528), - [sym_float_literal] = ACTIONS(1528), - [sym_block_comment] = ACTIONS(3), - }, - [364] = { - [ts_builtin_sym_end] = ACTIONS(1532), - [sym_identifier] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym_macro_rules_BANG] = ACTIONS(1532), - [anon_sym_LPAREN] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_u8] = ACTIONS(1534), - [anon_sym_i8] = ACTIONS(1534), - [anon_sym_u16] = ACTIONS(1534), - [anon_sym_i16] = ACTIONS(1534), - [anon_sym_u32] = ACTIONS(1534), - [anon_sym_i32] = ACTIONS(1534), - [anon_sym_u64] = ACTIONS(1534), - [anon_sym_i64] = ACTIONS(1534), - [anon_sym_u128] = ACTIONS(1534), - [anon_sym_i128] = ACTIONS(1534), - [anon_sym_isize] = ACTIONS(1534), - [anon_sym_usize] = ACTIONS(1534), - [anon_sym_f32] = ACTIONS(1534), - [anon_sym_f64] = ACTIONS(1534), - [anon_sym_bool] = ACTIONS(1534), - [anon_sym_str] = ACTIONS(1534), - [anon_sym_char] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1534), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1534), - [anon_sym_enum] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1534), - [anon_sym_for] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1534), - [anon_sym_impl] = ACTIONS(1534), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_loop] = ACTIONS(1534), - [anon_sym_match] = ACTIONS(1534), - [anon_sym_mod] = ACTIONS(1534), - [anon_sym_pub] = ACTIONS(1534), - [anon_sym_return] = ACTIONS(1534), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_struct] = ACTIONS(1534), - [anon_sym_trait] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_union] = ACTIONS(1534), - [anon_sym_unsafe] = ACTIONS(1534), - [anon_sym_use] = ACTIONS(1534), - [anon_sym_while] = ACTIONS(1534), - [anon_sym_POUND] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_extern] = ACTIONS(1534), - [anon_sym_LT] = ACTIONS(1532), - [anon_sym_COLON_COLON] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_DOT_DOT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1532), - [anon_sym_move] = ACTIONS(1534), - [sym_integer_literal] = ACTIONS(1532), - [aux_sym_string_literal_token1] = ACTIONS(1532), - [sym_char_literal] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1534), - [anon_sym_false] = ACTIONS(1534), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1534), - [sym_super] = ACTIONS(1534), - [sym_crate] = ACTIONS(1534), - [sym_metavariable] = ACTIONS(1532), - [sym_raw_string_literal] = ACTIONS(1532), - [sym_float_literal] = ACTIONS(1532), - [sym_block_comment] = ACTIONS(3), - }, - [365] = { - [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), - }, - [366] = { - [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), - }, - [367] = { - [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), - }, - [368] = { - [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), - }, - [369] = { - [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), - }, - [370] = { - [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), - }, - [371] = { - [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), - }, - [372] = { - [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), - }, - [373] = { - [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), - }, - [374] = { - [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), - }, - [375] = { - [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), - }, - [376] = { - [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), - }, - [377] = { - [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), - }, - [378] = { - [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), - }, - [379] = { - [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), - }, - [380] = { - [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), - }, - [381] = { - [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), - }, - [382] = { - [ts_builtin_sym_end] = ACTIONS(1604), - [sym_identifier] = ACTIONS(1606), - [anon_sym_SEMI] = ACTIONS(1604), - [anon_sym_macro_rules_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_RBRACE] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_u8] = ACTIONS(1606), - [anon_sym_i8] = ACTIONS(1606), - [anon_sym_u16] = ACTIONS(1606), - [anon_sym_i16] = ACTIONS(1606), - [anon_sym_u32] = ACTIONS(1606), - [anon_sym_i32] = ACTIONS(1606), - [anon_sym_u64] = ACTIONS(1606), - [anon_sym_i64] = ACTIONS(1606), - [anon_sym_u128] = ACTIONS(1606), - [anon_sym_i128] = ACTIONS(1606), - [anon_sym_isize] = ACTIONS(1606), - [anon_sym_usize] = ACTIONS(1606), - [anon_sym_f32] = ACTIONS(1606), - [anon_sym_f64] = ACTIONS(1606), - [anon_sym_bool] = ACTIONS(1606), - [anon_sym_str] = ACTIONS(1606), - [anon_sym_char] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_async] = ACTIONS(1606), - [anon_sym_break] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1606), - [anon_sym_continue] = ACTIONS(1606), - [anon_sym_default] = ACTIONS(1606), - [anon_sym_enum] = ACTIONS(1606), - [anon_sym_fn] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(1606), - [anon_sym_if] = ACTIONS(1606), - [anon_sym_impl] = ACTIONS(1606), - [anon_sym_let] = ACTIONS(1606), - [anon_sym_loop] = ACTIONS(1606), - [anon_sym_match] = ACTIONS(1606), - [anon_sym_mod] = ACTIONS(1606), - [anon_sym_pub] = ACTIONS(1606), - [anon_sym_return] = ACTIONS(1606), - [anon_sym_static] = ACTIONS(1606), - [anon_sym_struct] = ACTIONS(1606), - [anon_sym_trait] = ACTIONS(1606), - [anon_sym_type] = ACTIONS(1606), - [anon_sym_union] = ACTIONS(1606), - [anon_sym_unsafe] = ACTIONS(1606), - [anon_sym_use] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_POUND] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_extern] = ACTIONS(1606), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1604), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_DOT_DOT] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_move] = ACTIONS(1606), - [sym_integer_literal] = ACTIONS(1604), - [aux_sym_string_literal_token1] = ACTIONS(1604), - [sym_char_literal] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1606), - [anon_sym_false] = ACTIONS(1606), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1606), - [sym_super] = ACTIONS(1606), - [sym_crate] = ACTIONS(1606), - [sym_metavariable] = ACTIONS(1604), - [sym_raw_string_literal] = ACTIONS(1604), - [sym_float_literal] = ACTIONS(1604), - [sym_block_comment] = ACTIONS(3), - }, - [383] = { - [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), - }, - [384] = { - [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), - }, - [385] = { - [ts_builtin_sym_end] = ACTIONS(1616), - [sym_identifier] = ACTIONS(1618), - [anon_sym_SEMI] = ACTIONS(1616), - [anon_sym_macro_rules_BANG] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1616), - [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), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_async] = 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_while] = ACTIONS(1618), - [anon_sym_POUND] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1616), - [anon_sym_extern] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(1616), - [anon_sym_COLON_COLON] = ACTIONS(1616), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_DOT_DOT] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1616), - [anon_sym_move] = ACTIONS(1618), - [sym_integer_literal] = ACTIONS(1616), - [aux_sym_string_literal_token1] = ACTIONS(1616), - [sym_char_literal] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1618), - [anon_sym_false] = ACTIONS(1618), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1618), - [sym_super] = ACTIONS(1618), - [sym_crate] = ACTIONS(1618), - [sym_metavariable] = ACTIONS(1616), - [sym_raw_string_literal] = ACTIONS(1616), - [sym_float_literal] = ACTIONS(1616), - [sym_block_comment] = ACTIONS(3), - }, - [386] = { - [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), - }, - [387] = { - [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), - }, - [388] = { - [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), - }, - [389] = { - [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), - }, - [390] = { - [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), - }, - [391] = { - [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), - }, - [392] = { - [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), - }, - [393] = { - [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), - }, - [394] = { - [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), - }, - [395] = { - [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), - }, - [396] = { - [ts_builtin_sym_end] = ACTIONS(1660), - [sym_identifier] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_macro_rules_BANG] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1660), - [anon_sym_u8] = ACTIONS(1662), - [anon_sym_i8] = ACTIONS(1662), - [anon_sym_u16] = ACTIONS(1662), - [anon_sym_i16] = ACTIONS(1662), - [anon_sym_u32] = ACTIONS(1662), - [anon_sym_i32] = ACTIONS(1662), - [anon_sym_u64] = ACTIONS(1662), - [anon_sym_i64] = ACTIONS(1662), - [anon_sym_u128] = ACTIONS(1662), - [anon_sym_i128] = ACTIONS(1662), - [anon_sym_isize] = ACTIONS(1662), - [anon_sym_usize] = ACTIONS(1662), - [anon_sym_f32] = ACTIONS(1662), - [anon_sym_f64] = ACTIONS(1662), - [anon_sym_bool] = ACTIONS(1662), - [anon_sym_str] = ACTIONS(1662), - [anon_sym_char] = ACTIONS(1662), - [anon_sym_SQUOTE] = ACTIONS(1662), - [anon_sym_async] = ACTIONS(1662), - [anon_sym_break] = ACTIONS(1662), - [anon_sym_const] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(1662), - [anon_sym_default] = ACTIONS(1662), - [anon_sym_enum] = ACTIONS(1662), - [anon_sym_fn] = ACTIONS(1662), - [anon_sym_for] = ACTIONS(1662), - [anon_sym_if] = ACTIONS(1662), - [anon_sym_impl] = ACTIONS(1662), - [anon_sym_let] = ACTIONS(1662), - [anon_sym_loop] = ACTIONS(1662), - [anon_sym_match] = ACTIONS(1662), - [anon_sym_mod] = ACTIONS(1662), - [anon_sym_pub] = ACTIONS(1662), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_static] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(1662), - [anon_sym_trait] = ACTIONS(1662), - [anon_sym_type] = ACTIONS(1662), - [anon_sym_union] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1662), - [anon_sym_use] = ACTIONS(1662), - [anon_sym_while] = ACTIONS(1662), - [anon_sym_POUND] = ACTIONS(1660), - [anon_sym_BANG] = ACTIONS(1660), - [anon_sym_extern] = ACTIONS(1662), - [anon_sym_LT] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1660), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_DOT_DOT] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_PIPE] = ACTIONS(1660), - [anon_sym_move] = ACTIONS(1662), - [sym_integer_literal] = ACTIONS(1660), - [aux_sym_string_literal_token1] = ACTIONS(1660), - [sym_char_literal] = ACTIONS(1660), - [anon_sym_true] = ACTIONS(1662), - [anon_sym_false] = ACTIONS(1662), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1662), - [sym_super] = ACTIONS(1662), - [sym_crate] = ACTIONS(1662), - [sym_metavariable] = ACTIONS(1660), - [sym_raw_string_literal] = ACTIONS(1660), - [sym_float_literal] = ACTIONS(1660), - [sym_block_comment] = ACTIONS(3), - }, - [397] = { - [ts_builtin_sym_end] = ACTIONS(1664), - [sym_identifier] = ACTIONS(1666), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_macro_rules_BANG] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_u8] = ACTIONS(1666), - [anon_sym_i8] = ACTIONS(1666), - [anon_sym_u16] = ACTIONS(1666), - [anon_sym_i16] = ACTIONS(1666), - [anon_sym_u32] = ACTIONS(1666), - [anon_sym_i32] = ACTIONS(1666), - [anon_sym_u64] = ACTIONS(1666), - [anon_sym_i64] = ACTIONS(1666), - [anon_sym_u128] = ACTIONS(1666), - [anon_sym_i128] = ACTIONS(1666), - [anon_sym_isize] = ACTIONS(1666), - [anon_sym_usize] = ACTIONS(1666), - [anon_sym_f32] = ACTIONS(1666), - [anon_sym_f64] = ACTIONS(1666), - [anon_sym_bool] = ACTIONS(1666), - [anon_sym_str] = ACTIONS(1666), - [anon_sym_char] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1666), - [anon_sym_async] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1666), - [anon_sym_enum] = ACTIONS(1666), - [anon_sym_fn] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_impl] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_mod] = ACTIONS(1666), - [anon_sym_pub] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_static] = ACTIONS(1666), - [anon_sym_struct] = ACTIONS(1666), - [anon_sym_trait] = ACTIONS(1666), - [anon_sym_type] = ACTIONS(1666), - [anon_sym_union] = ACTIONS(1666), - [anon_sym_unsafe] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(1664), - [anon_sym_COLON_COLON] = ACTIONS(1664), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_DOT_DOT] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_move] = ACTIONS(1666), - [sym_integer_literal] = ACTIONS(1664), - [aux_sym_string_literal_token1] = ACTIONS(1664), - [sym_char_literal] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1666), - [anon_sym_false] = ACTIONS(1666), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1666), - [sym_super] = ACTIONS(1666), - [sym_crate] = ACTIONS(1666), - [sym_metavariable] = ACTIONS(1664), - [sym_raw_string_literal] = ACTIONS(1664), - [sym_float_literal] = ACTIONS(1664), - [sym_block_comment] = ACTIONS(3), - }, - [398] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [sym_identifier] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_macro_rules_BANG] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_u8] = ACTIONS(1670), - [anon_sym_i8] = ACTIONS(1670), - [anon_sym_u16] = ACTIONS(1670), - [anon_sym_i16] = ACTIONS(1670), - [anon_sym_u32] = ACTIONS(1670), - [anon_sym_i32] = ACTIONS(1670), - [anon_sym_u64] = ACTIONS(1670), - [anon_sym_i64] = ACTIONS(1670), - [anon_sym_u128] = ACTIONS(1670), - [anon_sym_i128] = ACTIONS(1670), - [anon_sym_isize] = ACTIONS(1670), - [anon_sym_usize] = ACTIONS(1670), - [anon_sym_f32] = ACTIONS(1670), - [anon_sym_f64] = ACTIONS(1670), - [anon_sym_bool] = ACTIONS(1670), - [anon_sym_str] = ACTIONS(1670), - [anon_sym_char] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [anon_sym_async] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_enum] = ACTIONS(1670), - [anon_sym_fn] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_impl] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1670), - [anon_sym_loop] = ACTIONS(1670), - [anon_sym_match] = ACTIONS(1670), - [anon_sym_mod] = ACTIONS(1670), - [anon_sym_pub] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_struct] = ACTIONS(1670), - [anon_sym_trait] = ACTIONS(1670), - [anon_sym_type] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1670), - [anon_sym_use] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1668), - [anon_sym_COLON_COLON] = ACTIONS(1668), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_move] = ACTIONS(1670), - [sym_integer_literal] = ACTIONS(1668), - [aux_sym_string_literal_token1] = ACTIONS(1668), - [sym_char_literal] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1670), - [anon_sym_false] = ACTIONS(1670), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1670), - [sym_super] = ACTIONS(1670), - [sym_crate] = ACTIONS(1670), - [sym_metavariable] = ACTIONS(1668), - [sym_raw_string_literal] = ACTIONS(1668), - [sym_float_literal] = ACTIONS(1668), - [sym_block_comment] = ACTIONS(3), - }, - [399] = { - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_macro_rules_BANG] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_STAR] = ACTIONS(1672), - [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), - [anon_sym_SQUOTE] = ACTIONS(1674), - [anon_sym_async] = 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_while] = ACTIONS(1674), - [anon_sym_POUND] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_extern] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_COLON_COLON] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_DOT_DOT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_move] = ACTIONS(1674), - [sym_integer_literal] = ACTIONS(1672), - [aux_sym_string_literal_token1] = ACTIONS(1672), - [sym_char_literal] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1674), - [anon_sym_false] = ACTIONS(1674), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_crate] = ACTIONS(1674), - [sym_metavariable] = ACTIONS(1672), - [sym_raw_string_literal] = ACTIONS(1672), - [sym_float_literal] = ACTIONS(1672), - [sym_block_comment] = ACTIONS(3), - }, - [400] = { - [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), - }, - [401] = { - [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), - }, - [402] = { - [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), - }, - [403] = { - [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), - }, - [404] = { - [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), - }, - [405] = { - [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), - }, - [406] = { - [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), - }, - [407] = { - [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), - }, - [408] = { - [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), - }, - [409] = { - [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), - }, - [410] = { - [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), - }, - [411] = { - [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), - }, - [412] = { - [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), - }, - [413] = { - [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), - }, - [414] = { - [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), - }, - [415] = { - [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), - }, - [416] = { - [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), - }, - [417] = { - [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), - }, - [418] = { - [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), - }, - [419] = { - [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), - }, - [420] = { - [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), - }, - [421] = { - [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), - }, - [422] = { - [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), - }, - [423] = { - [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), - }, - [424] = { - [ts_builtin_sym_end] = ACTIONS(1772), - [sym_identifier] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_macro_rules_BANG] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_u8] = ACTIONS(1774), - [anon_sym_i8] = ACTIONS(1774), - [anon_sym_u16] = ACTIONS(1774), - [anon_sym_i16] = ACTIONS(1774), - [anon_sym_u32] = ACTIONS(1774), - [anon_sym_i32] = ACTIONS(1774), - [anon_sym_u64] = ACTIONS(1774), - [anon_sym_i64] = ACTIONS(1774), - [anon_sym_u128] = ACTIONS(1774), - [anon_sym_i128] = ACTIONS(1774), - [anon_sym_isize] = ACTIONS(1774), - [anon_sym_usize] = ACTIONS(1774), - [anon_sym_f32] = ACTIONS(1774), - [anon_sym_f64] = ACTIONS(1774), - [anon_sym_bool] = ACTIONS(1774), - [anon_sym_str] = ACTIONS(1774), - [anon_sym_char] = ACTIONS(1774), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_async] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_fn] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_impl] = ACTIONS(1774), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_loop] = ACTIONS(1774), - [anon_sym_match] = ACTIONS(1774), - [anon_sym_mod] = ACTIONS(1774), - [anon_sym_pub] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_trait] = ACTIONS(1774), - [anon_sym_type] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_unsafe] = ACTIONS(1774), - [anon_sym_use] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_move] = ACTIONS(1774), - [sym_integer_literal] = ACTIONS(1772), - [aux_sym_string_literal_token1] = ACTIONS(1772), - [sym_char_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1774), - [anon_sym_false] = ACTIONS(1774), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_crate] = ACTIONS(1774), - [sym_metavariable] = ACTIONS(1772), - [sym_raw_string_literal] = ACTIONS(1772), - [sym_float_literal] = ACTIONS(1772), - [sym_block_comment] = ACTIONS(3), - }, - [425] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1776), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u128] = ACTIONS(1049), - [anon_sym_i128] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_str] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [aux_sym__non_special_token_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_const] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_fn] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_impl] = ACTIONS(1049), - [anon_sym_let] = ACTIONS(1049), - [anon_sym_loop] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_mod] = ACTIONS(1049), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1049), - [anon_sym_type] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1049), - [anon_sym_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [426] = { - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_macro_rules_BANG] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_u8] = ACTIONS(1780), - [anon_sym_i8] = ACTIONS(1780), - [anon_sym_u16] = ACTIONS(1780), - [anon_sym_i16] = ACTIONS(1780), - [anon_sym_u32] = ACTIONS(1780), - [anon_sym_i32] = ACTIONS(1780), - [anon_sym_u64] = ACTIONS(1780), - [anon_sym_i64] = ACTIONS(1780), - [anon_sym_u128] = ACTIONS(1780), - [anon_sym_i128] = ACTIONS(1780), - [anon_sym_isize] = ACTIONS(1780), - [anon_sym_usize] = ACTIONS(1780), - [anon_sym_f32] = ACTIONS(1780), - [anon_sym_f64] = ACTIONS(1780), - [anon_sym_bool] = ACTIONS(1780), - [anon_sym_str] = ACTIONS(1780), - [anon_sym_char] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_async] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_const] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_default] = ACTIONS(1780), - [anon_sym_enum] = ACTIONS(1780), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_impl] = ACTIONS(1780), - [anon_sym_let] = ACTIONS(1780), - [anon_sym_loop] = ACTIONS(1780), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_mod] = ACTIONS(1780), - [anon_sym_pub] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1780), - [anon_sym_struct] = ACTIONS(1780), - [anon_sym_trait] = ACTIONS(1780), - [anon_sym_type] = ACTIONS(1780), - [anon_sym_union] = ACTIONS(1780), - [anon_sym_unsafe] = ACTIONS(1780), - [anon_sym_use] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_move] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [aux_sym_string_literal_token1] = ACTIONS(1778), - [sym_char_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1780), - [sym_super] = ACTIONS(1780), - [sym_crate] = ACTIONS(1780), - [sym_metavariable] = ACTIONS(1778), - [sym_raw_string_literal] = ACTIONS(1778), - [sym_float_literal] = ACTIONS(1778), - [sym_block_comment] = ACTIONS(3), - }, - [427] = { - [ts_builtin_sym_end] = ACTIONS(1782), - [sym_identifier] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_macro_rules_BANG] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_async] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1784), - [anon_sym_fn] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_impl] = ACTIONS(1784), - [anon_sym_let] = ACTIONS(1784), - [anon_sym_loop] = ACTIONS(1784), - [anon_sym_match] = ACTIONS(1784), - [anon_sym_mod] = ACTIONS(1784), - [anon_sym_pub] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1784), - [anon_sym_trait] = ACTIONS(1784), - [anon_sym_type] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_unsafe] = ACTIONS(1784), - [anon_sym_use] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_move] = ACTIONS(1784), - [sym_integer_literal] = ACTIONS(1782), - [aux_sym_string_literal_token1] = ACTIONS(1782), - [sym_char_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1782), - [sym_raw_string_literal] = ACTIONS(1782), - [sym_float_literal] = ACTIONS(1782), - [sym_block_comment] = ACTIONS(3), - }, - [428] = { - [ts_builtin_sym_end] = ACTIONS(1786), - [sym_identifier] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_macro_rules_BANG] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_u8] = ACTIONS(1788), - [anon_sym_i8] = ACTIONS(1788), - [anon_sym_u16] = ACTIONS(1788), - [anon_sym_i16] = ACTIONS(1788), - [anon_sym_u32] = ACTIONS(1788), - [anon_sym_i32] = ACTIONS(1788), - [anon_sym_u64] = ACTIONS(1788), - [anon_sym_i64] = ACTIONS(1788), - [anon_sym_u128] = ACTIONS(1788), - [anon_sym_i128] = ACTIONS(1788), - [anon_sym_isize] = ACTIONS(1788), - [anon_sym_usize] = ACTIONS(1788), - [anon_sym_f32] = ACTIONS(1788), - [anon_sym_f64] = ACTIONS(1788), - [anon_sym_bool] = ACTIONS(1788), - [anon_sym_str] = ACTIONS(1788), - [anon_sym_char] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_default] = ACTIONS(1788), - [anon_sym_enum] = ACTIONS(1788), - [anon_sym_fn] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_impl] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_mod] = ACTIONS(1788), - [anon_sym_pub] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_struct] = ACTIONS(1788), - [anon_sym_trait] = ACTIONS(1788), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_union] = ACTIONS(1788), - [anon_sym_unsafe] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_LT] = ACTIONS(1786), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_move] = ACTIONS(1788), - [sym_integer_literal] = ACTIONS(1786), - [aux_sym_string_literal_token1] = ACTIONS(1786), - [sym_char_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1788), - [sym_super] = ACTIONS(1788), - [sym_crate] = ACTIONS(1788), - [sym_metavariable] = ACTIONS(1786), - [sym_raw_string_literal] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), - [sym_block_comment] = ACTIONS(3), - }, - [429] = { - [ts_builtin_sym_end] = ACTIONS(1790), - [sym_identifier] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_macro_rules_BANG] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_u8] = ACTIONS(1792), - [anon_sym_i8] = ACTIONS(1792), - [anon_sym_u16] = ACTIONS(1792), - [anon_sym_i16] = ACTIONS(1792), - [anon_sym_u32] = ACTIONS(1792), - [anon_sym_i32] = ACTIONS(1792), - [anon_sym_u64] = ACTIONS(1792), - [anon_sym_i64] = ACTIONS(1792), - [anon_sym_u128] = ACTIONS(1792), - [anon_sym_i128] = ACTIONS(1792), - [anon_sym_isize] = ACTIONS(1792), - [anon_sym_usize] = ACTIONS(1792), - [anon_sym_f32] = ACTIONS(1792), - [anon_sym_f64] = ACTIONS(1792), - [anon_sym_bool] = ACTIONS(1792), - [anon_sym_str] = ACTIONS(1792), - [anon_sym_char] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_async] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1792), - [anon_sym_enum] = ACTIONS(1792), - [anon_sym_fn] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_impl] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_loop] = ACTIONS(1792), - [anon_sym_match] = ACTIONS(1792), - [anon_sym_mod] = ACTIONS(1792), - [anon_sym_pub] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_struct] = ACTIONS(1792), - [anon_sym_trait] = ACTIONS(1792), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_union] = ACTIONS(1792), - [anon_sym_unsafe] = ACTIONS(1792), - [anon_sym_use] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_move] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [aux_sym_string_literal_token1] = ACTIONS(1790), - [sym_char_literal] = ACTIONS(1790), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1792), - [sym_super] = ACTIONS(1792), - [sym_crate] = ACTIONS(1792), - [sym_metavariable] = ACTIONS(1790), - [sym_raw_string_literal] = ACTIONS(1790), - [sym_float_literal] = ACTIONS(1790), - [sym_block_comment] = ACTIONS(3), - }, - [430] = { - [ts_builtin_sym_end] = ACTIONS(1794), - [sym_identifier] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_macro_rules_BANG] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_async] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_default] = ACTIONS(1796), - [anon_sym_enum] = ACTIONS(1796), - [anon_sym_fn] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_impl] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_mod] = ACTIONS(1796), - [anon_sym_pub] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1796), - [anon_sym_struct] = ACTIONS(1796), - [anon_sym_trait] = ACTIONS(1796), - [anon_sym_type] = ACTIONS(1796), - [anon_sym_union] = ACTIONS(1796), - [anon_sym_unsafe] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(1794), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_COLON_COLON] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_move] = ACTIONS(1796), - [sym_integer_literal] = ACTIONS(1794), - [aux_sym_string_literal_token1] = ACTIONS(1794), - [sym_char_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1794), - [sym_raw_string_literal] = ACTIONS(1794), - [sym_float_literal] = ACTIONS(1794), - [sym_block_comment] = ACTIONS(3), - }, - [431] = { - [ts_builtin_sym_end] = ACTIONS(1798), - [sym_identifier] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_macro_rules_BANG] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_u8] = ACTIONS(1800), - [anon_sym_i8] = ACTIONS(1800), - [anon_sym_u16] = ACTIONS(1800), - [anon_sym_i16] = ACTIONS(1800), - [anon_sym_u32] = ACTIONS(1800), - [anon_sym_i32] = ACTIONS(1800), - [anon_sym_u64] = ACTIONS(1800), - [anon_sym_i64] = ACTIONS(1800), - [anon_sym_u128] = ACTIONS(1800), - [anon_sym_i128] = ACTIONS(1800), - [anon_sym_isize] = ACTIONS(1800), - [anon_sym_usize] = ACTIONS(1800), - [anon_sym_f32] = ACTIONS(1800), - [anon_sym_f64] = ACTIONS(1800), - [anon_sym_bool] = ACTIONS(1800), - [anon_sym_str] = ACTIONS(1800), - [anon_sym_char] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_default] = ACTIONS(1800), - [anon_sym_enum] = ACTIONS(1800), - [anon_sym_fn] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_impl] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1800), - [anon_sym_loop] = ACTIONS(1800), - [anon_sym_match] = ACTIONS(1800), - [anon_sym_mod] = ACTIONS(1800), - [anon_sym_pub] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1800), - [anon_sym_struct] = ACTIONS(1800), - [anon_sym_trait] = ACTIONS(1800), - [anon_sym_type] = ACTIONS(1800), - [anon_sym_union] = ACTIONS(1800), - [anon_sym_unsafe] = ACTIONS(1800), - [anon_sym_use] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_LT] = ACTIONS(1798), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_move] = ACTIONS(1800), - [sym_integer_literal] = ACTIONS(1798), - [aux_sym_string_literal_token1] = ACTIONS(1798), - [sym_char_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1800), - [sym_super] = ACTIONS(1800), - [sym_crate] = ACTIONS(1800), - [sym_metavariable] = ACTIONS(1798), - [sym_raw_string_literal] = ACTIONS(1798), - [sym_float_literal] = ACTIONS(1798), - [sym_block_comment] = ACTIONS(3), - }, - [432] = { - [ts_builtin_sym_end] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_macro_rules_BANG] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_u8] = ACTIONS(1804), - [anon_sym_i8] = ACTIONS(1804), - [anon_sym_u16] = ACTIONS(1804), - [anon_sym_i16] = ACTIONS(1804), - [anon_sym_u32] = ACTIONS(1804), - [anon_sym_i32] = ACTIONS(1804), - [anon_sym_u64] = ACTIONS(1804), - [anon_sym_i64] = ACTIONS(1804), - [anon_sym_u128] = ACTIONS(1804), - [anon_sym_i128] = ACTIONS(1804), - [anon_sym_isize] = ACTIONS(1804), - [anon_sym_usize] = ACTIONS(1804), - [anon_sym_f32] = ACTIONS(1804), - [anon_sym_f64] = ACTIONS(1804), - [anon_sym_bool] = ACTIONS(1804), - [anon_sym_str] = ACTIONS(1804), - [anon_sym_char] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_async] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_enum] = ACTIONS(1804), - [anon_sym_fn] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_impl] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1804), - [anon_sym_pub] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_struct] = ACTIONS(1804), - [anon_sym_trait] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_unsafe] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_move] = ACTIONS(1804), - [sym_integer_literal] = ACTIONS(1802), - [aux_sym_string_literal_token1] = ACTIONS(1802), - [sym_char_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1804), - [sym_super] = ACTIONS(1804), - [sym_crate] = ACTIONS(1804), - [sym_metavariable] = ACTIONS(1802), - [sym_raw_string_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1802), - [sym_block_comment] = ACTIONS(3), - }, - [433] = { - [ts_builtin_sym_end] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_macro_rules_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_u8] = ACTIONS(1808), - [anon_sym_i8] = ACTIONS(1808), - [anon_sym_u16] = ACTIONS(1808), - [anon_sym_i16] = ACTIONS(1808), - [anon_sym_u32] = ACTIONS(1808), - [anon_sym_i32] = ACTIONS(1808), - [anon_sym_u64] = ACTIONS(1808), - [anon_sym_i64] = ACTIONS(1808), - [anon_sym_u128] = ACTIONS(1808), - [anon_sym_i128] = ACTIONS(1808), - [anon_sym_isize] = ACTIONS(1808), - [anon_sym_usize] = ACTIONS(1808), - [anon_sym_f32] = ACTIONS(1808), - [anon_sym_f64] = ACTIONS(1808), - [anon_sym_bool] = ACTIONS(1808), - [anon_sym_str] = ACTIONS(1808), - [anon_sym_char] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1808), - [anon_sym_enum] = ACTIONS(1808), - [anon_sym_fn] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_impl] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1808), - [anon_sym_pub] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_struct] = ACTIONS(1808), - [anon_sym_trait] = ACTIONS(1808), - [anon_sym_type] = ACTIONS(1808), - [anon_sym_union] = ACTIONS(1808), - [anon_sym_unsafe] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_move] = ACTIONS(1808), - [sym_integer_literal] = ACTIONS(1806), - [aux_sym_string_literal_token1] = ACTIONS(1806), - [sym_char_literal] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1806), - [sym_raw_string_literal] = ACTIONS(1806), - [sym_float_literal] = ACTIONS(1806), - [sym_block_comment] = ACTIONS(3), - }, - [434] = { - [ts_builtin_sym_end] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_macro_rules_BANG] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(1812), - [anon_sym_i8] = ACTIONS(1812), - [anon_sym_u16] = ACTIONS(1812), - [anon_sym_i16] = ACTIONS(1812), - [anon_sym_u32] = ACTIONS(1812), - [anon_sym_i32] = ACTIONS(1812), - [anon_sym_u64] = ACTIONS(1812), - [anon_sym_i64] = ACTIONS(1812), - [anon_sym_u128] = ACTIONS(1812), - [anon_sym_i128] = ACTIONS(1812), - [anon_sym_isize] = ACTIONS(1812), - [anon_sym_usize] = ACTIONS(1812), - [anon_sym_f32] = ACTIONS(1812), - [anon_sym_f64] = ACTIONS(1812), - [anon_sym_bool] = ACTIONS(1812), - [anon_sym_str] = ACTIONS(1812), - [anon_sym_char] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [anon_sym_fn] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_impl] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_loop] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_mod] = ACTIONS(1812), - [anon_sym_pub] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_struct] = ACTIONS(1812), - [anon_sym_trait] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_union] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(1812), - [anon_sym_use] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_move] = ACTIONS(1812), - [sym_integer_literal] = ACTIONS(1810), - [aux_sym_string_literal_token1] = ACTIONS(1810), - [sym_char_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_crate] = ACTIONS(1812), - [sym_metavariable] = ACTIONS(1810), - [sym_raw_string_literal] = ACTIONS(1810), - [sym_float_literal] = ACTIONS(1810), - [sym_block_comment] = ACTIONS(3), - }, - [435] = { - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_macro_rules_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_u8] = ACTIONS(1816), - [anon_sym_i8] = ACTIONS(1816), - [anon_sym_u16] = ACTIONS(1816), - [anon_sym_i16] = ACTIONS(1816), - [anon_sym_u32] = ACTIONS(1816), - [anon_sym_i32] = ACTIONS(1816), - [anon_sym_u64] = ACTIONS(1816), - [anon_sym_i64] = ACTIONS(1816), - [anon_sym_u128] = ACTIONS(1816), - [anon_sym_i128] = ACTIONS(1816), - [anon_sym_isize] = ACTIONS(1816), - [anon_sym_usize] = ACTIONS(1816), - [anon_sym_f32] = ACTIONS(1816), - [anon_sym_f64] = ACTIONS(1816), - [anon_sym_bool] = ACTIONS(1816), - [anon_sym_str] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_fn] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_impl] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1816), - [anon_sym_pub] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_trait] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_unsafe] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1816), - [sym_integer_literal] = ACTIONS(1814), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym_raw_string_literal] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), - [sym_block_comment] = ACTIONS(3), - }, - [436] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_RBRACK] = ACTIONS(1055), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u128] = ACTIONS(1049), - [anon_sym_i128] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_str] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [aux_sym__non_special_token_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_const] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_fn] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_impl] = ACTIONS(1049), - [anon_sym_let] = ACTIONS(1049), - [anon_sym_loop] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_mod] = ACTIONS(1049), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1049), - [anon_sym_type] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1049), - [anon_sym_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [437] = { - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_macro_rules_BANG] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_u8] = ACTIONS(1820), - [anon_sym_i8] = ACTIONS(1820), - [anon_sym_u16] = ACTIONS(1820), - [anon_sym_i16] = ACTIONS(1820), - [anon_sym_u32] = ACTIONS(1820), - [anon_sym_i32] = ACTIONS(1820), - [anon_sym_u64] = ACTIONS(1820), - [anon_sym_i64] = ACTIONS(1820), - [anon_sym_u128] = ACTIONS(1820), - [anon_sym_i128] = ACTIONS(1820), - [anon_sym_isize] = ACTIONS(1820), - [anon_sym_usize] = ACTIONS(1820), - [anon_sym_f32] = ACTIONS(1820), - [anon_sym_f64] = ACTIONS(1820), - [anon_sym_bool] = ACTIONS(1820), - [anon_sym_str] = ACTIONS(1820), - [anon_sym_char] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_enum] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_impl] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1820), - [anon_sym_pub] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_trait] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1820), - [anon_sym_unsafe] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_move] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [aux_sym_string_literal_token1] = ACTIONS(1818), - [sym_char_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym_raw_string_literal] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), - [sym_block_comment] = ACTIONS(3), - }, - [438] = { - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_macro_rules_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_u8] = ACTIONS(1824), - [anon_sym_i8] = ACTIONS(1824), - [anon_sym_u16] = ACTIONS(1824), - [anon_sym_i16] = ACTIONS(1824), - [anon_sym_u32] = ACTIONS(1824), - [anon_sym_i32] = ACTIONS(1824), - [anon_sym_u64] = ACTIONS(1824), - [anon_sym_i64] = ACTIONS(1824), - [anon_sym_u128] = ACTIONS(1824), - [anon_sym_i128] = ACTIONS(1824), - [anon_sym_isize] = ACTIONS(1824), - [anon_sym_usize] = ACTIONS(1824), - [anon_sym_f32] = ACTIONS(1824), - [anon_sym_f64] = ACTIONS(1824), - [anon_sym_bool] = ACTIONS(1824), - [anon_sym_str] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_fn] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_mod] = ACTIONS(1824), - [anon_sym_pub] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_trait] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_unsafe] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_move] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [aux_sym_string_literal_token1] = ACTIONS(1822), - [sym_char_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym_raw_string_literal] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), - [sym_block_comment] = ACTIONS(3), - }, - [439] = { - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_macro_rules_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_u8] = ACTIONS(1828), - [anon_sym_i8] = ACTIONS(1828), - [anon_sym_u16] = ACTIONS(1828), - [anon_sym_i16] = ACTIONS(1828), - [anon_sym_u32] = ACTIONS(1828), - [anon_sym_i32] = ACTIONS(1828), - [anon_sym_u64] = ACTIONS(1828), - [anon_sym_i64] = ACTIONS(1828), - [anon_sym_u128] = ACTIONS(1828), - [anon_sym_i128] = ACTIONS(1828), - [anon_sym_isize] = ACTIONS(1828), - [anon_sym_usize] = ACTIONS(1828), - [anon_sym_f32] = ACTIONS(1828), - [anon_sym_f64] = ACTIONS(1828), - [anon_sym_bool] = ACTIONS(1828), - [anon_sym_str] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_fn] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_impl] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_mod] = ACTIONS(1828), - [anon_sym_pub] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_trait] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_unsafe] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_move] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [aux_sym_string_literal_token1] = ACTIONS(1826), - [sym_char_literal] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym_raw_string_literal] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), - [sym_block_comment] = ACTIONS(3), - }, - [440] = { - [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), - }, - [441] = { - [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), - }, - [442] = { - [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), - }, - [443] = { - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_macro_rules_BANG] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_u8] = ACTIONS(1844), - [anon_sym_i8] = ACTIONS(1844), - [anon_sym_u16] = ACTIONS(1844), - [anon_sym_i16] = ACTIONS(1844), - [anon_sym_u32] = ACTIONS(1844), - [anon_sym_i32] = ACTIONS(1844), - [anon_sym_u64] = ACTIONS(1844), - [anon_sym_i64] = ACTIONS(1844), - [anon_sym_u128] = ACTIONS(1844), - [anon_sym_i128] = ACTIONS(1844), - [anon_sym_isize] = ACTIONS(1844), - [anon_sym_usize] = ACTIONS(1844), - [anon_sym_f32] = ACTIONS(1844), - [anon_sym_f64] = ACTIONS(1844), - [anon_sym_bool] = ACTIONS(1844), - [anon_sym_str] = ACTIONS(1844), - [anon_sym_char] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_fn] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_impl] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_mod] = ACTIONS(1844), - [anon_sym_pub] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [anon_sym_trait] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsafe] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_COLON_COLON] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_move] = ACTIONS(1844), - [sym_integer_literal] = ACTIONS(1842), - [aux_sym_string_literal_token1] = ACTIONS(1842), - [sym_char_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_crate] = ACTIONS(1844), - [sym_metavariable] = ACTIONS(1842), - [sym_raw_string_literal] = ACTIONS(1842), - [sym_float_literal] = ACTIONS(1842), - [sym_block_comment] = ACTIONS(3), - }, - [444] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u128] = ACTIONS(1049), - [anon_sym_i128] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_str] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [aux_sym__non_special_token_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_const] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_fn] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_impl] = ACTIONS(1049), - [anon_sym_let] = ACTIONS(1049), - [anon_sym_loop] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_mod] = ACTIONS(1049), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1049), - [anon_sym_type] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1049), - [anon_sym_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [445] = { - [ts_builtin_sym_end] = ACTIONS(1846), - [sym_identifier] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_macro_rules_BANG] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_u8] = ACTIONS(1848), - [anon_sym_i8] = ACTIONS(1848), - [anon_sym_u16] = ACTIONS(1848), - [anon_sym_i16] = ACTIONS(1848), - [anon_sym_u32] = ACTIONS(1848), - [anon_sym_i32] = ACTIONS(1848), - [anon_sym_u64] = ACTIONS(1848), - [anon_sym_i64] = ACTIONS(1848), - [anon_sym_u128] = ACTIONS(1848), - [anon_sym_i128] = ACTIONS(1848), - [anon_sym_isize] = ACTIONS(1848), - [anon_sym_usize] = ACTIONS(1848), - [anon_sym_f32] = ACTIONS(1848), - [anon_sym_f64] = ACTIONS(1848), - [anon_sym_bool] = ACTIONS(1848), - [anon_sym_str] = ACTIONS(1848), - [anon_sym_char] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_async] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_enum] = ACTIONS(1848), - [anon_sym_fn] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_impl] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_mod] = ACTIONS(1848), - [anon_sym_pub] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1848), - [anon_sym_trait] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_union] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_COLON_COLON] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_move] = ACTIONS(1848), - [sym_integer_literal] = ACTIONS(1846), - [aux_sym_string_literal_token1] = ACTIONS(1846), - [sym_char_literal] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1848), - [sym_super] = ACTIONS(1848), - [sym_crate] = ACTIONS(1848), - [sym_metavariable] = ACTIONS(1846), - [sym_raw_string_literal] = ACTIONS(1846), - [sym_float_literal] = ACTIONS(1846), - [sym_block_comment] = ACTIONS(3), - }, - [446] = { - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_macro_rules_BANG] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_u8] = ACTIONS(1852), - [anon_sym_i8] = ACTIONS(1852), - [anon_sym_u16] = ACTIONS(1852), - [anon_sym_i16] = ACTIONS(1852), - [anon_sym_u32] = ACTIONS(1852), - [anon_sym_i32] = ACTIONS(1852), - [anon_sym_u64] = ACTIONS(1852), - [anon_sym_i64] = ACTIONS(1852), - [anon_sym_u128] = ACTIONS(1852), - [anon_sym_i128] = ACTIONS(1852), - [anon_sym_isize] = ACTIONS(1852), - [anon_sym_usize] = ACTIONS(1852), - [anon_sym_f32] = ACTIONS(1852), - [anon_sym_f64] = ACTIONS(1852), - [anon_sym_bool] = ACTIONS(1852), - [anon_sym_str] = ACTIONS(1852), - [anon_sym_char] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1852), - [anon_sym_enum] = ACTIONS(1852), - [anon_sym_fn] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_impl] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_mod] = ACTIONS(1852), - [anon_sym_pub] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_struct] = ACTIONS(1852), - [anon_sym_trait] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_union] = ACTIONS(1852), - [anon_sym_unsafe] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_COLON_COLON] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_move] = ACTIONS(1852), - [sym_integer_literal] = ACTIONS(1850), - [aux_sym_string_literal_token1] = ACTIONS(1850), - [sym_char_literal] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1852), - [sym_super] = ACTIONS(1852), - [sym_crate] = ACTIONS(1852), - [sym_metavariable] = ACTIONS(1850), - [sym_raw_string_literal] = ACTIONS(1850), - [sym_float_literal] = ACTIONS(1850), - [sym_block_comment] = ACTIONS(3), - }, - [447] = { - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_macro_rules_BANG] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_u8] = ACTIONS(1856), - [anon_sym_i8] = ACTIONS(1856), - [anon_sym_u16] = ACTIONS(1856), - [anon_sym_i16] = ACTIONS(1856), - [anon_sym_u32] = ACTIONS(1856), - [anon_sym_i32] = ACTIONS(1856), - [anon_sym_u64] = ACTIONS(1856), - [anon_sym_i64] = ACTIONS(1856), - [anon_sym_u128] = ACTIONS(1856), - [anon_sym_i128] = ACTIONS(1856), - [anon_sym_isize] = ACTIONS(1856), - [anon_sym_usize] = ACTIONS(1856), - [anon_sym_f32] = ACTIONS(1856), - [anon_sym_f64] = ACTIONS(1856), - [anon_sym_bool] = ACTIONS(1856), - [anon_sym_str] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_impl] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_mod] = ACTIONS(1856), - [anon_sym_pub] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_trait] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_unsafe] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_move] = ACTIONS(1856), - [sym_integer_literal] = ACTIONS(1854), - [aux_sym_string_literal_token1] = ACTIONS(1854), - [sym_char_literal] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1856), - [sym_super] = ACTIONS(1856), - [sym_crate] = ACTIONS(1856), - [sym_metavariable] = ACTIONS(1854), - [sym_raw_string_literal] = ACTIONS(1854), - [sym_float_literal] = ACTIONS(1854), - [sym_block_comment] = ACTIONS(3), - }, - [448] = { - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_identifier] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_macro_rules_BANG] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_u8] = ACTIONS(1860), - [anon_sym_i8] = ACTIONS(1860), - [anon_sym_u16] = ACTIONS(1860), - [anon_sym_i16] = ACTIONS(1860), - [anon_sym_u32] = ACTIONS(1860), - [anon_sym_i32] = ACTIONS(1860), - [anon_sym_u64] = ACTIONS(1860), - [anon_sym_i64] = ACTIONS(1860), - [anon_sym_u128] = ACTIONS(1860), - [anon_sym_i128] = ACTIONS(1860), - [anon_sym_isize] = ACTIONS(1860), - [anon_sym_usize] = ACTIONS(1860), - [anon_sym_f32] = ACTIONS(1860), - [anon_sym_f64] = ACTIONS(1860), - [anon_sym_bool] = ACTIONS(1860), - [anon_sym_str] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_impl] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_mod] = ACTIONS(1860), - [anon_sym_pub] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_trait] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_union] = ACTIONS(1860), - [anon_sym_unsafe] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_COLON_COLON] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_move] = ACTIONS(1860), - [sym_integer_literal] = ACTIONS(1858), - [aux_sym_string_literal_token1] = ACTIONS(1858), - [sym_char_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1860), - [sym_super] = ACTIONS(1860), - [sym_crate] = ACTIONS(1860), - [sym_metavariable] = ACTIONS(1858), - [sym_raw_string_literal] = ACTIONS(1858), - [sym_float_literal] = ACTIONS(1858), - [sym_block_comment] = ACTIONS(3), - }, - [449] = { - [ts_builtin_sym_end] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_macro_rules_BANG] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_u8] = ACTIONS(1864), - [anon_sym_i8] = ACTIONS(1864), - [anon_sym_u16] = ACTIONS(1864), - [anon_sym_i16] = ACTIONS(1864), - [anon_sym_u32] = ACTIONS(1864), - [anon_sym_i32] = ACTIONS(1864), - [anon_sym_u64] = ACTIONS(1864), - [anon_sym_i64] = ACTIONS(1864), - [anon_sym_u128] = ACTIONS(1864), - [anon_sym_i128] = ACTIONS(1864), - [anon_sym_isize] = ACTIONS(1864), - [anon_sym_usize] = ACTIONS(1864), - [anon_sym_f32] = ACTIONS(1864), - [anon_sym_f64] = ACTIONS(1864), - [anon_sym_bool] = ACTIONS(1864), - [anon_sym_str] = ACTIONS(1864), - [anon_sym_char] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_default] = ACTIONS(1864), - [anon_sym_enum] = ACTIONS(1864), - [anon_sym_fn] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_impl] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_mod] = ACTIONS(1864), - [anon_sym_pub] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_struct] = ACTIONS(1864), - [anon_sym_trait] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1864), - [anon_sym_union] = ACTIONS(1864), - [anon_sym_unsafe] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_COLON_COLON] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_move] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(1862), - [aux_sym_string_literal_token1] = ACTIONS(1862), - [sym_char_literal] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1864), - [sym_super] = ACTIONS(1864), - [sym_crate] = ACTIONS(1864), - [sym_metavariable] = ACTIONS(1862), - [sym_raw_string_literal] = ACTIONS(1862), - [sym_float_literal] = ACTIONS(1862), - [sym_block_comment] = ACTIONS(3), - }, - [450] = { - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_macro_rules_BANG] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_u8] = ACTIONS(1868), - [anon_sym_i8] = ACTIONS(1868), - [anon_sym_u16] = ACTIONS(1868), - [anon_sym_i16] = ACTIONS(1868), - [anon_sym_u32] = ACTIONS(1868), - [anon_sym_i32] = ACTIONS(1868), - [anon_sym_u64] = ACTIONS(1868), - [anon_sym_i64] = ACTIONS(1868), - [anon_sym_u128] = ACTIONS(1868), - [anon_sym_i128] = ACTIONS(1868), - [anon_sym_isize] = ACTIONS(1868), - [anon_sym_usize] = ACTIONS(1868), - [anon_sym_f32] = ACTIONS(1868), - [anon_sym_f64] = ACTIONS(1868), - [anon_sym_bool] = ACTIONS(1868), - [anon_sym_str] = ACTIONS(1868), - [anon_sym_char] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_impl] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_mod] = ACTIONS(1868), - [anon_sym_pub] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_trait] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_unsafe] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_COLON_COLON] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_move] = ACTIONS(1868), - [sym_integer_literal] = ACTIONS(1866), - [aux_sym_string_literal_token1] = ACTIONS(1866), - [sym_char_literal] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_crate] = ACTIONS(1868), - [sym_metavariable] = ACTIONS(1866), - [sym_raw_string_literal] = ACTIONS(1866), - [sym_float_literal] = ACTIONS(1866), - [sym_block_comment] = ACTIONS(3), - }, - [451] = { - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_identifier] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_macro_rules_BANG] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_u8] = ACTIONS(1872), - [anon_sym_i8] = ACTIONS(1872), - [anon_sym_u16] = ACTIONS(1872), - [anon_sym_i16] = ACTIONS(1872), - [anon_sym_u32] = ACTIONS(1872), - [anon_sym_i32] = ACTIONS(1872), - [anon_sym_u64] = ACTIONS(1872), - [anon_sym_i64] = ACTIONS(1872), - [anon_sym_u128] = ACTIONS(1872), - [anon_sym_i128] = ACTIONS(1872), - [anon_sym_isize] = ACTIONS(1872), - [anon_sym_usize] = ACTIONS(1872), - [anon_sym_f32] = ACTIONS(1872), - [anon_sym_f64] = ACTIONS(1872), - [anon_sym_bool] = ACTIONS(1872), - [anon_sym_str] = ACTIONS(1872), - [anon_sym_char] = ACTIONS(1872), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_async] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_fn] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_impl] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_mod] = ACTIONS(1872), - [anon_sym_pub] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [anon_sym_trait] = ACTIONS(1872), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsafe] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_COLON_COLON] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_move] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(1870), - [aux_sym_string_literal_token1] = ACTIONS(1870), - [sym_char_literal] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1872), - [sym_super] = ACTIONS(1872), - [sym_crate] = ACTIONS(1872), - [sym_metavariable] = ACTIONS(1870), - [sym_raw_string_literal] = ACTIONS(1870), - [sym_float_literal] = ACTIONS(1870), - [sym_block_comment] = ACTIONS(3), - }, - [452] = { - [ts_builtin_sym_end] = ACTIONS(1874), - [sym_identifier] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_u8] = ACTIONS(1876), - [anon_sym_i8] = ACTIONS(1876), - [anon_sym_u16] = ACTIONS(1876), - [anon_sym_i16] = ACTIONS(1876), - [anon_sym_u32] = ACTIONS(1876), - [anon_sym_i32] = ACTIONS(1876), - [anon_sym_u64] = ACTIONS(1876), - [anon_sym_i64] = ACTIONS(1876), - [anon_sym_u128] = ACTIONS(1876), - [anon_sym_i128] = ACTIONS(1876), - [anon_sym_isize] = ACTIONS(1876), - [anon_sym_usize] = ACTIONS(1876), - [anon_sym_f32] = ACTIONS(1876), - [anon_sym_f64] = ACTIONS(1876), - [anon_sym_bool] = ACTIONS(1876), - [anon_sym_str] = ACTIONS(1876), - [anon_sym_char] = ACTIONS(1876), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_async] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_enum] = ACTIONS(1876), - [anon_sym_fn] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_impl] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_mod] = ACTIONS(1876), - [anon_sym_pub] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1876), - [anon_sym_trait] = ACTIONS(1876), - [anon_sym_type] = ACTIONS(1876), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_unsafe] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_COLON_COLON] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_move] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [aux_sym_string_literal_token1] = ACTIONS(1874), - [sym_char_literal] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1876), - [sym_super] = ACTIONS(1876), - [sym_crate] = ACTIONS(1876), - [sym_metavariable] = ACTIONS(1874), - [sym_raw_string_literal] = ACTIONS(1874), - [sym_float_literal] = ACTIONS(1874), - [sym_block_comment] = ACTIONS(3), - }, - [453] = { - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_macro_rules_BANG] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_u8] = ACTIONS(1880), - [anon_sym_i8] = ACTIONS(1880), - [anon_sym_u16] = ACTIONS(1880), - [anon_sym_i16] = ACTIONS(1880), - [anon_sym_u32] = ACTIONS(1880), - [anon_sym_i32] = ACTIONS(1880), - [anon_sym_u64] = ACTIONS(1880), - [anon_sym_i64] = ACTIONS(1880), - [anon_sym_u128] = ACTIONS(1880), - [anon_sym_i128] = ACTIONS(1880), - [anon_sym_isize] = ACTIONS(1880), - [anon_sym_usize] = ACTIONS(1880), - [anon_sym_f32] = ACTIONS(1880), - [anon_sym_f64] = ACTIONS(1880), - [anon_sym_bool] = ACTIONS(1880), - [anon_sym_str] = ACTIONS(1880), - [anon_sym_char] = ACTIONS(1880), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_fn] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_impl] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_loop] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_mod] = ACTIONS(1880), - [anon_sym_pub] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_struct] = ACTIONS(1880), - [anon_sym_trait] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_unsafe] = ACTIONS(1880), - [anon_sym_use] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_move] = ACTIONS(1880), - [sym_integer_literal] = ACTIONS(1878), - [aux_sym_string_literal_token1] = ACTIONS(1878), - [sym_char_literal] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_crate] = ACTIONS(1880), - [sym_metavariable] = ACTIONS(1878), - [sym_raw_string_literal] = ACTIONS(1878), - [sym_float_literal] = ACTIONS(1878), - [sym_block_comment] = ACTIONS(3), - }, - [454] = { - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_identifier] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_macro_rules_BANG] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_u8] = ACTIONS(1884), - [anon_sym_i8] = ACTIONS(1884), - [anon_sym_u16] = ACTIONS(1884), - [anon_sym_i16] = ACTIONS(1884), - [anon_sym_u32] = ACTIONS(1884), - [anon_sym_i32] = ACTIONS(1884), - [anon_sym_u64] = ACTIONS(1884), - [anon_sym_i64] = ACTIONS(1884), - [anon_sym_u128] = ACTIONS(1884), - [anon_sym_i128] = ACTIONS(1884), - [anon_sym_isize] = ACTIONS(1884), - [anon_sym_usize] = ACTIONS(1884), - [anon_sym_f32] = ACTIONS(1884), - [anon_sym_f64] = ACTIONS(1884), - [anon_sym_bool] = ACTIONS(1884), - [anon_sym_str] = ACTIONS(1884), - [anon_sym_char] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_fn] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_impl] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_mod] = ACTIONS(1884), - [anon_sym_pub] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_struct] = ACTIONS(1884), - [anon_sym_trait] = ACTIONS(1884), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_union] = ACTIONS(1884), - [anon_sym_unsafe] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_COLON_COLON] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_move] = ACTIONS(1884), - [sym_integer_literal] = ACTIONS(1882), - [aux_sym_string_literal_token1] = ACTIONS(1882), - [sym_char_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1884), - [sym_super] = ACTIONS(1884), - [sym_crate] = ACTIONS(1884), - [sym_metavariable] = ACTIONS(1882), - [sym_raw_string_literal] = ACTIONS(1882), - [sym_float_literal] = ACTIONS(1882), - [sym_block_comment] = ACTIONS(3), - }, - [455] = { - [sym_attribute_item] = STATE(502), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2320), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_arm] = STATE(472), - [sym_last_match_arm] = STATE(2314), - [sym_match_pattern] = STATE(2309), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(502), - [aux_sym_match_block_repeat1] = STATE(472), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [456] = { - [sym_attribute_item] = STATE(502), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2320), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_arm] = STATE(468), - [sym_last_match_arm] = STATE(2395), - [sym_match_pattern] = STATE(2309), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(502), - [aux_sym_match_block_repeat1] = STATE(468), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [457] = { - [sym_attribute_item] = STATE(502), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2320), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_arm] = STATE(465), - [sym_last_match_arm] = STATE(2253), - [sym_match_pattern] = STATE(2309), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(502), - [aux_sym_match_block_repeat1] = STATE(465), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [458] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1918), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [459] = { - [sym_token_tree] = STATE(474), - [sym_token_repetition] = STATE(474), - [sym__literal] = STATE(474), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(474), - [sym_identifier] = ACTIONS(1924), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1924), - [anon_sym_i8] = ACTIONS(1924), - [anon_sym_u16] = ACTIONS(1924), - [anon_sym_i16] = ACTIONS(1924), - [anon_sym_u32] = ACTIONS(1924), - [anon_sym_i32] = ACTIONS(1924), - [anon_sym_u64] = ACTIONS(1924), - [anon_sym_i64] = ACTIONS(1924), - [anon_sym_u128] = ACTIONS(1924), - [anon_sym_i128] = ACTIONS(1924), - [anon_sym_isize] = ACTIONS(1924), - [anon_sym_usize] = ACTIONS(1924), - [anon_sym_f32] = ACTIONS(1924), - [anon_sym_f64] = ACTIONS(1924), - [anon_sym_bool] = ACTIONS(1924), - [anon_sym_str] = ACTIONS(1924), - [anon_sym_char] = ACTIONS(1924), - [aux_sym__non_special_token_token1] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_as] = ACTIONS(1924), - [anon_sym_async] = ACTIONS(1924), - [anon_sym_await] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_default] = ACTIONS(1924), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_fn] = ACTIONS(1924), - [anon_sym_for] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_impl] = ACTIONS(1924), - [anon_sym_let] = ACTIONS(1924), - [anon_sym_loop] = ACTIONS(1924), - [anon_sym_match] = ACTIONS(1924), - [anon_sym_mod] = ACTIONS(1924), - [anon_sym_pub] = ACTIONS(1924), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(1924), - [anon_sym_trait] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_union] = ACTIONS(1924), - [anon_sym_unsafe] = ACTIONS(1924), - [anon_sym_use] = ACTIONS(1924), - [anon_sym_where] = ACTIONS(1924), - [anon_sym_while] = ACTIONS(1924), - [sym_mutable_specifier] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1924), - [sym_super] = ACTIONS(1924), - [sym_crate] = ACTIONS(1924), - [sym_metavariable] = ACTIONS(1928), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [460] = { - [sym_token_tree] = STATE(458), - [sym_token_repetition] = STATE(458), - [sym__literal] = STATE(458), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(458), - [sym_identifier] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1932), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [461] = { - [sym_token_tree] = STATE(467), - [sym_token_repetition] = STATE(467), - [sym__literal] = STATE(467), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(467), - [sym_identifier] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1936), - [anon_sym_i8] = ACTIONS(1936), - [anon_sym_u16] = ACTIONS(1936), - [anon_sym_i16] = ACTIONS(1936), - [anon_sym_u32] = ACTIONS(1936), - [anon_sym_i32] = ACTIONS(1936), - [anon_sym_u64] = ACTIONS(1936), - [anon_sym_i64] = ACTIONS(1936), - [anon_sym_u128] = ACTIONS(1936), - [anon_sym_i128] = ACTIONS(1936), - [anon_sym_isize] = ACTIONS(1936), - [anon_sym_usize] = ACTIONS(1936), - [anon_sym_f32] = ACTIONS(1936), - [anon_sym_f64] = ACTIONS(1936), - [anon_sym_bool] = ACTIONS(1936), - [anon_sym_str] = ACTIONS(1936), - [anon_sym_char] = ACTIONS(1936), - [aux_sym__non_special_token_token1] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_as] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_await] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_default] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_fn] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_impl] = ACTIONS(1936), - [anon_sym_let] = ACTIONS(1936), - [anon_sym_loop] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_mod] = ACTIONS(1936), - [anon_sym_pub] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_trait] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_unsafe] = ACTIONS(1936), - [anon_sym_use] = ACTIONS(1936), - [anon_sym_where] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [sym_mutable_specifier] = ACTIONS(1936), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1936), - [sym_super] = ACTIONS(1936), - [sym_crate] = ACTIONS(1936), - [sym_metavariable] = ACTIONS(1938), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [462] = { - [sym_token_tree] = STATE(466), - [sym_token_repetition] = STATE(466), - [sym__literal] = STATE(466), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(466), - [sym_identifier] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1932), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1940), - [anon_sym_i8] = ACTIONS(1940), - [anon_sym_u16] = ACTIONS(1940), - [anon_sym_i16] = ACTIONS(1940), - [anon_sym_u32] = ACTIONS(1940), - [anon_sym_i32] = ACTIONS(1940), - [anon_sym_u64] = ACTIONS(1940), - [anon_sym_i64] = ACTIONS(1940), - [anon_sym_u128] = ACTIONS(1940), - [anon_sym_i128] = ACTIONS(1940), - [anon_sym_isize] = ACTIONS(1940), - [anon_sym_usize] = ACTIONS(1940), - [anon_sym_f32] = ACTIONS(1940), - [anon_sym_f64] = ACTIONS(1940), - [anon_sym_bool] = ACTIONS(1940), - [anon_sym_str] = ACTIONS(1940), - [anon_sym_char] = ACTIONS(1940), - [aux_sym__non_special_token_token1] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_as] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_await] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_fn] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_impl] = ACTIONS(1940), - [anon_sym_let] = ACTIONS(1940), - [anon_sym_loop] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_mod] = ACTIONS(1940), - [anon_sym_pub] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_trait] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_unsafe] = ACTIONS(1940), - [anon_sym_use] = ACTIONS(1940), - [anon_sym_where] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [sym_mutable_specifier] = ACTIONS(1940), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_crate] = ACTIONS(1940), - [sym_metavariable] = ACTIONS(1942), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [463] = { - [sym_token_tree] = STATE(469), - [sym_token_repetition] = STATE(469), - [sym__literal] = STATE(469), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(469), - [sym_identifier] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1946), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1944), - [anon_sym_i8] = ACTIONS(1944), - [anon_sym_u16] = ACTIONS(1944), - [anon_sym_i16] = ACTIONS(1944), - [anon_sym_u32] = ACTIONS(1944), - [anon_sym_i32] = ACTIONS(1944), - [anon_sym_u64] = ACTIONS(1944), - [anon_sym_i64] = ACTIONS(1944), - [anon_sym_u128] = ACTIONS(1944), - [anon_sym_i128] = ACTIONS(1944), - [anon_sym_isize] = ACTIONS(1944), - [anon_sym_usize] = ACTIONS(1944), - [anon_sym_f32] = ACTIONS(1944), - [anon_sym_f64] = ACTIONS(1944), - [anon_sym_bool] = ACTIONS(1944), - [anon_sym_str] = ACTIONS(1944), - [anon_sym_char] = ACTIONS(1944), - [aux_sym__non_special_token_token1] = ACTIONS(1944), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_as] = ACTIONS(1944), - [anon_sym_async] = ACTIONS(1944), - [anon_sym_await] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_const] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_enum] = ACTIONS(1944), - [anon_sym_fn] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_impl] = ACTIONS(1944), - [anon_sym_let] = ACTIONS(1944), - [anon_sym_loop] = ACTIONS(1944), - [anon_sym_match] = ACTIONS(1944), - [anon_sym_mod] = ACTIONS(1944), - [anon_sym_pub] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1944), - [anon_sym_struct] = ACTIONS(1944), - [anon_sym_trait] = ACTIONS(1944), - [anon_sym_type] = ACTIONS(1944), - [anon_sym_union] = ACTIONS(1944), - [anon_sym_unsafe] = ACTIONS(1944), - [anon_sym_use] = ACTIONS(1944), - [anon_sym_where] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [sym_mutable_specifier] = ACTIONS(1944), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1944), - [sym_super] = ACTIONS(1944), - [sym_crate] = ACTIONS(1944), - [sym_metavariable] = ACTIONS(1948), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [464] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [465] = { - [sym_attribute_item] = STATE(502), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2320), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_arm] = STATE(493), - [sym_last_match_arm] = STATE(2190), - [sym_match_pattern] = STATE(2309), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(502), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [466] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [467] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [468] = { - [sym_attribute_item] = STATE(502), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2320), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_arm] = STATE(493), - [sym_last_match_arm] = STATE(2369), - [sym_match_pattern] = STATE(2309), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(502), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [469] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1950), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [470] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [471] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [472] = { - [sym_attribute_item] = STATE(502), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2320), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_arm] = STATE(493), - [sym_last_match_arm] = STATE(2389), - [sym_match_pattern] = STATE(2309), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(502), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [473] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1956), - [anon_sym_i8] = ACTIONS(1956), - [anon_sym_u16] = ACTIONS(1956), - [anon_sym_i16] = ACTIONS(1956), - [anon_sym_u32] = ACTIONS(1956), - [anon_sym_i32] = ACTIONS(1956), - [anon_sym_u64] = ACTIONS(1956), - [anon_sym_i64] = ACTIONS(1956), - [anon_sym_u128] = ACTIONS(1956), - [anon_sym_i128] = ACTIONS(1956), - [anon_sym_isize] = ACTIONS(1956), - [anon_sym_usize] = ACTIONS(1956), - [anon_sym_f32] = ACTIONS(1956), - [anon_sym_f64] = ACTIONS(1956), - [anon_sym_bool] = ACTIONS(1956), - [anon_sym_str] = ACTIONS(1956), - [anon_sym_char] = ACTIONS(1956), - [aux_sym__non_special_token_token1] = ACTIONS(1956), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_as] = ACTIONS(1956), - [anon_sym_async] = ACTIONS(1956), - [anon_sym_await] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_const] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_default] = ACTIONS(1956), - [anon_sym_enum] = ACTIONS(1956), - [anon_sym_fn] = ACTIONS(1956), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_impl] = ACTIONS(1956), - [anon_sym_let] = ACTIONS(1956), - [anon_sym_loop] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [anon_sym_mod] = ACTIONS(1956), - [anon_sym_pub] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_union] = ACTIONS(1956), - [anon_sym_unsafe] = ACTIONS(1956), - [anon_sym_use] = ACTIONS(1956), - [anon_sym_where] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [sym_mutable_specifier] = ACTIONS(1956), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1956), - [sym_super] = ACTIONS(1956), - [sym_crate] = ACTIONS(1956), - [sym_metavariable] = ACTIONS(1960), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [474] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [475] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [476] = { - [sym_token_tree] = STATE(471), - [sym_token_repetition] = STATE(471), - [sym__literal] = STATE(471), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(471), - [sym_identifier] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1926), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1962), - [anon_sym_i8] = ACTIONS(1962), - [anon_sym_u16] = ACTIONS(1962), - [anon_sym_i16] = ACTIONS(1962), - [anon_sym_u32] = ACTIONS(1962), - [anon_sym_i32] = ACTIONS(1962), - [anon_sym_u64] = ACTIONS(1962), - [anon_sym_i64] = ACTIONS(1962), - [anon_sym_u128] = ACTIONS(1962), - [anon_sym_i128] = ACTIONS(1962), - [anon_sym_isize] = ACTIONS(1962), - [anon_sym_usize] = ACTIONS(1962), - [anon_sym_f32] = ACTIONS(1962), - [anon_sym_f64] = ACTIONS(1962), - [anon_sym_bool] = ACTIONS(1962), - [anon_sym_str] = ACTIONS(1962), - [anon_sym_char] = ACTIONS(1962), - [aux_sym__non_special_token_token1] = ACTIONS(1962), - [anon_sym_SQUOTE] = ACTIONS(1962), - [anon_sym_as] = ACTIONS(1962), - [anon_sym_async] = ACTIONS(1962), - [anon_sym_await] = ACTIONS(1962), - [anon_sym_break] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_continue] = ACTIONS(1962), - [anon_sym_default] = ACTIONS(1962), - [anon_sym_enum] = ACTIONS(1962), - [anon_sym_fn] = ACTIONS(1962), - [anon_sym_for] = ACTIONS(1962), - [anon_sym_if] = ACTIONS(1962), - [anon_sym_impl] = ACTIONS(1962), - [anon_sym_let] = ACTIONS(1962), - [anon_sym_loop] = ACTIONS(1962), - [anon_sym_match] = ACTIONS(1962), - [anon_sym_mod] = ACTIONS(1962), - [anon_sym_pub] = ACTIONS(1962), - [anon_sym_return] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_struct] = ACTIONS(1962), - [anon_sym_trait] = ACTIONS(1962), - [anon_sym_type] = ACTIONS(1962), - [anon_sym_union] = ACTIONS(1962), - [anon_sym_unsafe] = ACTIONS(1962), - [anon_sym_use] = ACTIONS(1962), - [anon_sym_where] = ACTIONS(1962), - [anon_sym_while] = ACTIONS(1962), - [sym_mutable_specifier] = ACTIONS(1962), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1962), - [sym_super] = ACTIONS(1962), - [sym_crate] = ACTIONS(1962), - [sym_metavariable] = ACTIONS(1964), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [477] = { - [sym_token_tree] = STATE(482), - [sym_token_repetition] = STATE(482), - [sym__literal] = STATE(482), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(482), - [sym_identifier] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1968), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1966), - [anon_sym_i8] = ACTIONS(1966), - [anon_sym_u16] = ACTIONS(1966), - [anon_sym_i16] = ACTIONS(1966), - [anon_sym_u32] = ACTIONS(1966), - [anon_sym_i32] = ACTIONS(1966), - [anon_sym_u64] = ACTIONS(1966), - [anon_sym_i64] = ACTIONS(1966), - [anon_sym_u128] = ACTIONS(1966), - [anon_sym_i128] = ACTIONS(1966), - [anon_sym_isize] = ACTIONS(1966), - [anon_sym_usize] = ACTIONS(1966), - [anon_sym_f32] = ACTIONS(1966), - [anon_sym_f64] = ACTIONS(1966), - [anon_sym_bool] = ACTIONS(1966), - [anon_sym_str] = ACTIONS(1966), - [anon_sym_char] = ACTIONS(1966), - [aux_sym__non_special_token_token1] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1966), - [anon_sym_as] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_await] = ACTIONS(1966), - [anon_sym_break] = ACTIONS(1966), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_continue] = ACTIONS(1966), - [anon_sym_default] = ACTIONS(1966), - [anon_sym_enum] = ACTIONS(1966), - [anon_sym_fn] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_impl] = ACTIONS(1966), - [anon_sym_let] = ACTIONS(1966), - [anon_sym_loop] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_mod] = ACTIONS(1966), - [anon_sym_pub] = ACTIONS(1966), - [anon_sym_return] = ACTIONS(1966), - [anon_sym_static] = ACTIONS(1966), - [anon_sym_struct] = ACTIONS(1966), - [anon_sym_trait] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_union] = ACTIONS(1966), - [anon_sym_unsafe] = ACTIONS(1966), - [anon_sym_use] = ACTIONS(1966), - [anon_sym_where] = ACTIONS(1966), - [anon_sym_while] = ACTIONS(1966), - [sym_mutable_specifier] = ACTIONS(1966), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1966), - [sym_super] = ACTIONS(1966), - [sym_crate] = ACTIONS(1966), - [sym_metavariable] = ACTIONS(1970), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [478] = { - [sym_token_tree] = STATE(475), - [sym_token_repetition] = STATE(475), - [sym__literal] = STATE(475), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(475), - [sym_identifier] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1972), - [anon_sym_i8] = ACTIONS(1972), - [anon_sym_u16] = ACTIONS(1972), - [anon_sym_i16] = ACTIONS(1972), - [anon_sym_u32] = ACTIONS(1972), - [anon_sym_i32] = ACTIONS(1972), - [anon_sym_u64] = ACTIONS(1972), - [anon_sym_i64] = ACTIONS(1972), - [anon_sym_u128] = ACTIONS(1972), - [anon_sym_i128] = ACTIONS(1972), - [anon_sym_isize] = ACTIONS(1972), - [anon_sym_usize] = ACTIONS(1972), - [anon_sym_f32] = ACTIONS(1972), - [anon_sym_f64] = ACTIONS(1972), - [anon_sym_bool] = ACTIONS(1972), - [anon_sym_str] = ACTIONS(1972), - [anon_sym_char] = ACTIONS(1972), - [aux_sym__non_special_token_token1] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_as] = ACTIONS(1972), - [anon_sym_async] = ACTIONS(1972), - [anon_sym_await] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_fn] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_impl] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_mod] = ACTIONS(1972), - [anon_sym_pub] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_trait] = ACTIONS(1972), - [anon_sym_type] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_unsafe] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_where] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [sym_mutable_specifier] = ACTIONS(1972), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1972), - [sym_super] = ACTIONS(1972), - [sym_crate] = ACTIONS(1972), - [sym_metavariable] = ACTIONS(1974), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [479] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [480] = { - [sym_token_tree] = STATE(470), - [sym_token_repetition] = STATE(470), - [sym__literal] = STATE(470), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(1976), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1976), - [anon_sym_i8] = ACTIONS(1976), - [anon_sym_u16] = ACTIONS(1976), - [anon_sym_i16] = ACTIONS(1976), - [anon_sym_u32] = ACTIONS(1976), - [anon_sym_i32] = ACTIONS(1976), - [anon_sym_u64] = ACTIONS(1976), - [anon_sym_i64] = ACTIONS(1976), - [anon_sym_u128] = ACTIONS(1976), - [anon_sym_i128] = ACTIONS(1976), - [anon_sym_isize] = ACTIONS(1976), - [anon_sym_usize] = ACTIONS(1976), - [anon_sym_f32] = ACTIONS(1976), - [anon_sym_f64] = ACTIONS(1976), - [anon_sym_bool] = ACTIONS(1976), - [anon_sym_str] = ACTIONS(1976), - [anon_sym_char] = ACTIONS(1976), - [aux_sym__non_special_token_token1] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_as] = ACTIONS(1976), - [anon_sym_async] = ACTIONS(1976), - [anon_sym_await] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), - [anon_sym_const] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_default] = ACTIONS(1976), - [anon_sym_enum] = ACTIONS(1976), - [anon_sym_fn] = ACTIONS(1976), - [anon_sym_for] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_impl] = ACTIONS(1976), - [anon_sym_let] = ACTIONS(1976), - [anon_sym_loop] = ACTIONS(1976), - [anon_sym_match] = ACTIONS(1976), - [anon_sym_mod] = ACTIONS(1976), - [anon_sym_pub] = ACTIONS(1976), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1976), - [anon_sym_struct] = ACTIONS(1976), - [anon_sym_trait] = ACTIONS(1976), - [anon_sym_type] = ACTIONS(1976), - [anon_sym_union] = ACTIONS(1976), - [anon_sym_unsafe] = ACTIONS(1976), - [anon_sym_use] = ACTIONS(1976), - [anon_sym_where] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [sym_mutable_specifier] = ACTIONS(1976), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1976), - [sym_super] = ACTIONS(1976), - [sym_crate] = ACTIONS(1976), - [sym_metavariable] = ACTIONS(1978), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [481] = { - [sym_token_tree] = STATE(479), - [sym_token_repetition] = STATE(479), - [sym__literal] = STATE(479), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(479), - [sym_identifier] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1980), - [anon_sym_i8] = ACTIONS(1980), - [anon_sym_u16] = ACTIONS(1980), - [anon_sym_i16] = ACTIONS(1980), - [anon_sym_u32] = ACTIONS(1980), - [anon_sym_i32] = ACTIONS(1980), - [anon_sym_u64] = ACTIONS(1980), - [anon_sym_i64] = ACTIONS(1980), - [anon_sym_u128] = ACTIONS(1980), - [anon_sym_i128] = ACTIONS(1980), - [anon_sym_isize] = ACTIONS(1980), - [anon_sym_usize] = ACTIONS(1980), - [anon_sym_f32] = ACTIONS(1980), - [anon_sym_f64] = ACTIONS(1980), - [anon_sym_bool] = ACTIONS(1980), - [anon_sym_str] = ACTIONS(1980), - [anon_sym_char] = ACTIONS(1980), - [aux_sym__non_special_token_token1] = ACTIONS(1980), - [anon_sym_SQUOTE] = ACTIONS(1980), - [anon_sym_as] = ACTIONS(1980), - [anon_sym_async] = ACTIONS(1980), - [anon_sym_await] = ACTIONS(1980), - [anon_sym_break] = ACTIONS(1980), - [anon_sym_const] = ACTIONS(1980), - [anon_sym_continue] = ACTIONS(1980), - [anon_sym_default] = ACTIONS(1980), - [anon_sym_enum] = ACTIONS(1980), - [anon_sym_fn] = ACTIONS(1980), - [anon_sym_for] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_impl] = ACTIONS(1980), - [anon_sym_let] = ACTIONS(1980), - [anon_sym_loop] = ACTIONS(1980), - [anon_sym_match] = ACTIONS(1980), - [anon_sym_mod] = ACTIONS(1980), - [anon_sym_pub] = ACTIONS(1980), - [anon_sym_return] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_struct] = ACTIONS(1980), - [anon_sym_trait] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), - [anon_sym_union] = ACTIONS(1980), - [anon_sym_unsafe] = ACTIONS(1980), - [anon_sym_use] = ACTIONS(1980), - [anon_sym_where] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [sym_mutable_specifier] = ACTIONS(1980), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1980), - [sym_super] = ACTIONS(1980), - [sym_crate] = ACTIONS(1980), - [sym_metavariable] = ACTIONS(1982), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [482] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [483] = { - [sym_token_tree] = STATE(464), - [sym_token_repetition] = STATE(464), - [sym__literal] = STATE(464), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(464), - [sym_identifier] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1984), - [anon_sym_i8] = ACTIONS(1984), - [anon_sym_u16] = ACTIONS(1984), - [anon_sym_i16] = ACTIONS(1984), - [anon_sym_u32] = ACTIONS(1984), - [anon_sym_i32] = ACTIONS(1984), - [anon_sym_u64] = ACTIONS(1984), - [anon_sym_i64] = ACTIONS(1984), - [anon_sym_u128] = ACTIONS(1984), - [anon_sym_i128] = ACTIONS(1984), - [anon_sym_isize] = ACTIONS(1984), - [anon_sym_usize] = ACTIONS(1984), - [anon_sym_f32] = ACTIONS(1984), - [anon_sym_f64] = ACTIONS(1984), - [anon_sym_bool] = ACTIONS(1984), - [anon_sym_str] = ACTIONS(1984), - [anon_sym_char] = ACTIONS(1984), - [aux_sym__non_special_token_token1] = ACTIONS(1984), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_as] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_await] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [anon_sym_fn] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_impl] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_loop] = ACTIONS(1984), - [anon_sym_match] = ACTIONS(1984), - [anon_sym_mod] = ACTIONS(1984), - [anon_sym_pub] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_struct] = ACTIONS(1984), - [anon_sym_trait] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_union] = ACTIONS(1984), - [anon_sym_unsafe] = ACTIONS(1984), - [anon_sym_use] = ACTIONS(1984), - [anon_sym_where] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [sym_mutable_specifier] = ACTIONS(1984), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_crate] = ACTIONS(1984), - [sym_metavariable] = ACTIONS(1986), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [484] = { - [sym_token_tree] = STATE(492), - [sym_token_repetition] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1988), - [anon_sym_i8] = ACTIONS(1988), - [anon_sym_u16] = ACTIONS(1988), - [anon_sym_i16] = ACTIONS(1988), - [anon_sym_u32] = ACTIONS(1988), - [anon_sym_i32] = ACTIONS(1988), - [anon_sym_u64] = ACTIONS(1988), - [anon_sym_i64] = ACTIONS(1988), - [anon_sym_u128] = ACTIONS(1988), - [anon_sym_i128] = ACTIONS(1988), - [anon_sym_isize] = ACTIONS(1988), - [anon_sym_usize] = ACTIONS(1988), - [anon_sym_f32] = ACTIONS(1988), - [anon_sym_f64] = ACTIONS(1988), - [anon_sym_bool] = ACTIONS(1988), - [anon_sym_str] = ACTIONS(1988), - [anon_sym_char] = ACTIONS(1988), - [aux_sym__non_special_token_token1] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_as] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_await] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_fn] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_impl] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_loop] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_mod] = ACTIONS(1988), - [anon_sym_pub] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_trait] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_unsafe] = ACTIONS(1988), - [anon_sym_use] = ACTIONS(1988), - [anon_sym_where] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [sym_mutable_specifier] = ACTIONS(1988), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_crate] = ACTIONS(1988), - [sym_metavariable] = ACTIONS(1990), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [485] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1992), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [486] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [487] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [488] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1996), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1994), - [anon_sym_i8] = ACTIONS(1994), - [anon_sym_u16] = ACTIONS(1994), - [anon_sym_i16] = ACTIONS(1994), - [anon_sym_u32] = ACTIONS(1994), - [anon_sym_i32] = ACTIONS(1994), - [anon_sym_u64] = ACTIONS(1994), - [anon_sym_i64] = ACTIONS(1994), - [anon_sym_u128] = ACTIONS(1994), - [anon_sym_i128] = ACTIONS(1994), - [anon_sym_isize] = ACTIONS(1994), - [anon_sym_usize] = ACTIONS(1994), - [anon_sym_f32] = ACTIONS(1994), - [anon_sym_f64] = ACTIONS(1994), - [anon_sym_bool] = ACTIONS(1994), - [anon_sym_str] = ACTIONS(1994), - [anon_sym_char] = ACTIONS(1994), - [aux_sym__non_special_token_token1] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1994), - [anon_sym_as] = ACTIONS(1994), - [anon_sym_async] = ACTIONS(1994), - [anon_sym_await] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_fn] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_impl] = ACTIONS(1994), - [anon_sym_let] = ACTIONS(1994), - [anon_sym_loop] = ACTIONS(1994), - [anon_sym_match] = ACTIONS(1994), - [anon_sym_mod] = ACTIONS(1994), - [anon_sym_pub] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_trait] = ACTIONS(1994), - [anon_sym_type] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_unsafe] = ACTIONS(1994), - [anon_sym_use] = ACTIONS(1994), - [anon_sym_where] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [sym_mutable_specifier] = ACTIONS(1994), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_crate] = ACTIONS(1994), - [sym_metavariable] = ACTIONS(1998), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [489] = { - [sym_token_tree] = STATE(486), - [sym_token_repetition] = STATE(486), - [sym__literal] = STATE(486), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(486), - [sym_identifier] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(2000), - [anon_sym_i8] = ACTIONS(2000), - [anon_sym_u16] = ACTIONS(2000), - [anon_sym_i16] = ACTIONS(2000), - [anon_sym_u32] = ACTIONS(2000), - [anon_sym_i32] = ACTIONS(2000), - [anon_sym_u64] = ACTIONS(2000), - [anon_sym_i64] = ACTIONS(2000), - [anon_sym_u128] = ACTIONS(2000), - [anon_sym_i128] = ACTIONS(2000), - [anon_sym_isize] = ACTIONS(2000), - [anon_sym_usize] = ACTIONS(2000), - [anon_sym_f32] = ACTIONS(2000), - [anon_sym_f64] = ACTIONS(2000), - [anon_sym_bool] = ACTIONS(2000), - [anon_sym_str] = ACTIONS(2000), - [anon_sym_char] = ACTIONS(2000), - [aux_sym__non_special_token_token1] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_as] = ACTIONS(2000), - [anon_sym_async] = ACTIONS(2000), - [anon_sym_await] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_default] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [anon_sym_fn] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_impl] = ACTIONS(2000), - [anon_sym_let] = ACTIONS(2000), - [anon_sym_loop] = ACTIONS(2000), - [anon_sym_match] = ACTIONS(2000), - [anon_sym_mod] = ACTIONS(2000), - [anon_sym_pub] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_trait] = ACTIONS(2000), - [anon_sym_type] = ACTIONS(2000), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_unsafe] = ACTIONS(2000), - [anon_sym_use] = ACTIONS(2000), - [anon_sym_where] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [sym_mutable_specifier] = ACTIONS(2000), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2000), - [sym_super] = ACTIONS(2000), - [sym_crate] = ACTIONS(2000), - [sym_metavariable] = ACTIONS(2002), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [490] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [491] = { - [sym_token_tree] = STATE(487), - [sym_token_repetition] = STATE(487), - [sym__literal] = STATE(487), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1996), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(2006), - [anon_sym_i8] = ACTIONS(2006), - [anon_sym_u16] = ACTIONS(2006), - [anon_sym_i16] = ACTIONS(2006), - [anon_sym_u32] = ACTIONS(2006), - [anon_sym_i32] = ACTIONS(2006), - [anon_sym_u64] = ACTIONS(2006), - [anon_sym_i64] = ACTIONS(2006), - [anon_sym_u128] = ACTIONS(2006), - [anon_sym_i128] = ACTIONS(2006), - [anon_sym_isize] = ACTIONS(2006), - [anon_sym_usize] = ACTIONS(2006), - [anon_sym_f32] = ACTIONS(2006), - [anon_sym_f64] = ACTIONS(2006), - [anon_sym_bool] = ACTIONS(2006), - [anon_sym_str] = ACTIONS(2006), - [anon_sym_char] = ACTIONS(2006), - [aux_sym__non_special_token_token1] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_as] = ACTIONS(2006), - [anon_sym_async] = ACTIONS(2006), - [anon_sym_await] = ACTIONS(2006), - [anon_sym_break] = ACTIONS(2006), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_continue] = ACTIONS(2006), - [anon_sym_default] = ACTIONS(2006), - [anon_sym_enum] = ACTIONS(2006), - [anon_sym_fn] = ACTIONS(2006), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_impl] = ACTIONS(2006), - [anon_sym_let] = ACTIONS(2006), - [anon_sym_loop] = ACTIONS(2006), - [anon_sym_match] = ACTIONS(2006), - [anon_sym_mod] = ACTIONS(2006), - [anon_sym_pub] = ACTIONS(2006), - [anon_sym_return] = ACTIONS(2006), - [anon_sym_static] = ACTIONS(2006), - [anon_sym_struct] = ACTIONS(2006), - [anon_sym_trait] = ACTIONS(2006), - [anon_sym_type] = ACTIONS(2006), - [anon_sym_union] = ACTIONS(2006), - [anon_sym_unsafe] = ACTIONS(2006), - [anon_sym_use] = ACTIONS(2006), - [anon_sym_where] = ACTIONS(2006), - [anon_sym_while] = ACTIONS(2006), - [sym_mutable_specifier] = ACTIONS(2006), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2006), - [sym_super] = ACTIONS(2006), - [sym_crate] = ACTIONS(2006), - [sym_metavariable] = ACTIONS(2008), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [492] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [493] = { - [sym_attribute_item] = STATE(497), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2320), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_arm] = STATE(493), - [sym_match_pattern] = STATE(2320), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(497), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2016), - [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), - [anon_sym_const] = ACTIONS(2022), - [anon_sym_POUND] = ACTIONS(2025), - [anon_sym_ref] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym__] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2040), - [sym_mutable_specifier] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2049), - [sym_integer_literal] = ACTIONS(2052), - [aux_sym_string_literal_token1] = ACTIONS(2055), - [sym_char_literal] = ACTIONS(2052), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2061), - [sym_super] = ACTIONS(2061), - [sym_crate] = ACTIONS(2061), - [sym_metavariable] = ACTIONS(2064), - [sym_raw_string_literal] = ACTIONS(2052), - [sym_float_literal] = ACTIONS(2052), - [sym_block_comment] = ACTIONS(3), - }, - [494] = { - [sym_attribute_item] = STATE(505), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(660), - [sym__type] = STATE(1710), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(505), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [495] = { - [sym_attribute_item] = STATE(514), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(600), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(514), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [496] = { - [sym_attribute_item] = STATE(514), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(600), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(514), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [497] = { - [sym_attribute_item] = STATE(538), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2383), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_pattern] = STATE(2383), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [498] = { - [sym_attribute_item] = STATE(514), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(600), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(514), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [499] = { - [sym_attribute_item] = STATE(514), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(600), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(514), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [500] = { - [sym_attribute_item] = STATE(514), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(600), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(514), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [501] = { - [sym_identifier] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_RPAREN] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_RBRACK] = ACTIONS(2093), - [anon_sym_COLON] = ACTIONS(2095), - [anon_sym_DOLLAR] = ACTIONS(2091), - [anon_sym_u8] = ACTIONS(2091), - [anon_sym_i8] = ACTIONS(2091), - [anon_sym_u16] = ACTIONS(2091), - [anon_sym_i16] = ACTIONS(2091), - [anon_sym_u32] = ACTIONS(2091), - [anon_sym_i32] = ACTIONS(2091), - [anon_sym_u64] = ACTIONS(2091), - [anon_sym_i64] = ACTIONS(2091), - [anon_sym_u128] = ACTIONS(2091), - [anon_sym_i128] = ACTIONS(2091), - [anon_sym_isize] = ACTIONS(2091), - [anon_sym_usize] = ACTIONS(2091), - [anon_sym_f32] = ACTIONS(2091), - [anon_sym_f64] = ACTIONS(2091), - [anon_sym_bool] = ACTIONS(2091), - [anon_sym_str] = ACTIONS(2091), - [anon_sym_char] = ACTIONS(2091), - [aux_sym__non_special_token_token1] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2091), - [anon_sym_enum] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_impl] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_mod] = ACTIONS(2091), - [anon_sym_pub] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2091), - [anon_sym_trait] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_union] = ACTIONS(2091), - [anon_sym_unsafe] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [sym_mutable_specifier] = ACTIONS(2091), - [sym_integer_literal] = ACTIONS(2093), - [aux_sym_string_literal_token1] = ACTIONS(2093), - [sym_char_literal] = ACTIONS(2093), - [anon_sym_true] = ACTIONS(2091), - [anon_sym_false] = ACTIONS(2091), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2091), - [sym_super] = ACTIONS(2091), - [sym_crate] = ACTIONS(2091), - [sym_metavariable] = ACTIONS(2093), - [sym_raw_string_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_block_comment] = ACTIONS(3), - }, - [502] = { - [sym_attribute_item] = STATE(538), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2383), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_pattern] = STATE(2384), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [503] = { - [sym_attribute_item] = STATE(514), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(600), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(514), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [504] = { - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_RPAREN] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_RBRACK] = ACTIONS(2101), - [anon_sym_DOLLAR] = ACTIONS(2099), - [anon_sym_u8] = ACTIONS(2099), - [anon_sym_i8] = ACTIONS(2099), - [anon_sym_u16] = ACTIONS(2099), - [anon_sym_i16] = ACTIONS(2099), - [anon_sym_u32] = ACTIONS(2099), - [anon_sym_i32] = ACTIONS(2099), - [anon_sym_u64] = ACTIONS(2099), - [anon_sym_i64] = ACTIONS(2099), - [anon_sym_u128] = ACTIONS(2099), - [anon_sym_i128] = ACTIONS(2099), - [anon_sym_isize] = ACTIONS(2099), - [anon_sym_usize] = ACTIONS(2099), - [anon_sym_f32] = ACTIONS(2099), - [anon_sym_f64] = ACTIONS(2099), - [anon_sym_bool] = ACTIONS(2099), - [anon_sym_str] = ACTIONS(2099), - [anon_sym_char] = ACTIONS(2099), - [aux_sym__non_special_token_token1] = ACTIONS(2099), - [anon_sym_SQUOTE] = ACTIONS(2099), - [anon_sym_as] = ACTIONS(2099), - [anon_sym_async] = ACTIONS(2099), - [anon_sym_await] = ACTIONS(2099), - [anon_sym_break] = ACTIONS(2099), - [anon_sym_const] = ACTIONS(2099), - [anon_sym_continue] = ACTIONS(2099), - [anon_sym_default] = ACTIONS(2099), - [anon_sym_enum] = ACTIONS(2099), - [anon_sym_fn] = ACTIONS(2099), - [anon_sym_for] = ACTIONS(2099), - [anon_sym_if] = ACTIONS(2099), - [anon_sym_impl] = ACTIONS(2099), - [anon_sym_let] = ACTIONS(2099), - [anon_sym_loop] = ACTIONS(2099), - [anon_sym_match] = ACTIONS(2099), - [anon_sym_mod] = ACTIONS(2099), - [anon_sym_pub] = ACTIONS(2099), - [anon_sym_return] = ACTIONS(2099), - [anon_sym_static] = ACTIONS(2099), - [anon_sym_struct] = ACTIONS(2099), - [anon_sym_trait] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_union] = ACTIONS(2099), - [anon_sym_unsafe] = ACTIONS(2099), - [anon_sym_use] = ACTIONS(2099), - [anon_sym_where] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2099), - [sym_mutable_specifier] = ACTIONS(2099), - [sym_integer_literal] = ACTIONS(2101), - [aux_sym_string_literal_token1] = ACTIONS(2101), - [sym_char_literal] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2099), - [anon_sym_false] = ACTIONS(2099), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2099), - [sym_super] = ACTIONS(2099), - [sym_crate] = ACTIONS(2099), - [sym_metavariable] = ACTIONS(2101), - [sym_raw_string_literal] = ACTIONS(2101), - [sym_float_literal] = ACTIONS(2101), - [sym_block_comment] = ACTIONS(3), - }, - [505] = { - [sym_attribute_item] = STATE(1069), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(615), - [sym__type] = STATE(1658), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(1069), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [506] = { - [sym_identifier] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_RBRACK] = ACTIONS(578), - [anon_sym_DOLLAR] = ACTIONS(580), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_async] = ACTIONS(580), - [anon_sym_await] = 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_where] = ACTIONS(580), - [anon_sym_while] = ACTIONS(580), - [sym_mutable_specifier] = 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(898), - [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), - }, - [507] = { - [sym_identifier] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_RBRACK] = ACTIONS(2105), - [anon_sym_DOLLAR] = ACTIONS(2103), - [anon_sym_u8] = ACTIONS(2103), - [anon_sym_i8] = ACTIONS(2103), - [anon_sym_u16] = ACTIONS(2103), - [anon_sym_i16] = ACTIONS(2103), - [anon_sym_u32] = ACTIONS(2103), - [anon_sym_i32] = ACTIONS(2103), - [anon_sym_u64] = ACTIONS(2103), - [anon_sym_i64] = ACTIONS(2103), - [anon_sym_u128] = ACTIONS(2103), - [anon_sym_i128] = ACTIONS(2103), - [anon_sym_isize] = ACTIONS(2103), - [anon_sym_usize] = ACTIONS(2103), - [anon_sym_f32] = ACTIONS(2103), - [anon_sym_f64] = ACTIONS(2103), - [anon_sym_bool] = ACTIONS(2103), - [anon_sym_str] = ACTIONS(2103), - [anon_sym_char] = ACTIONS(2103), - [aux_sym__non_special_token_token1] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_as] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_default] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [anon_sym_fn] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_impl] = ACTIONS(2103), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_loop] = ACTIONS(2103), - [anon_sym_match] = ACTIONS(2103), - [anon_sym_mod] = ACTIONS(2103), - [anon_sym_pub] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_struct] = ACTIONS(2103), - [anon_sym_trait] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2103), - [anon_sym_union] = ACTIONS(2103), - [anon_sym_unsafe] = ACTIONS(2103), - [anon_sym_use] = ACTIONS(2103), - [anon_sym_where] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [sym_mutable_specifier] = ACTIONS(2103), - [sym_integer_literal] = ACTIONS(2105), - [aux_sym_string_literal_token1] = ACTIONS(2105), - [sym_char_literal] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2103), - [anon_sym_false] = ACTIONS(2103), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_crate] = ACTIONS(2103), - [sym_metavariable] = ACTIONS(2105), - [sym_raw_string_literal] = ACTIONS(2105), - [sym_float_literal] = ACTIONS(2105), - [sym_block_comment] = ACTIONS(3), - }, - [508] = { - [sym_identifier] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_RBRACK] = ACTIONS(2109), - [anon_sym_DOLLAR] = ACTIONS(2107), - [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(2109), - [aux_sym_string_literal_token1] = ACTIONS(2109), - [sym_char_literal] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(2107), - [anon_sym_false] = ACTIONS(2107), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2107), - [sym_super] = ACTIONS(2107), - [sym_crate] = ACTIONS(2107), - [sym_metavariable] = ACTIONS(2109), - [sym_raw_string_literal] = ACTIONS(2109), - [sym_float_literal] = ACTIONS(2109), - [sym_block_comment] = ACTIONS(3), - }, - [509] = { - [sym_identifier] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_RPAREN] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2111), - [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(2113), - [aux_sym_string_literal_token1] = ACTIONS(2113), - [sym_char_literal] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(2111), - [anon_sym_false] = ACTIONS(2111), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(2113), - [sym_raw_string_literal] = ACTIONS(2113), - [sym_float_literal] = ACTIONS(2113), - [sym_block_comment] = ACTIONS(3), - }, - [510] = { - [sym_identifier] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_RPAREN] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_RBRACK] = ACTIONS(2117), - [anon_sym_DOLLAR] = ACTIONS(2115), - [anon_sym_u8] = ACTIONS(2115), - [anon_sym_i8] = ACTIONS(2115), - [anon_sym_u16] = ACTIONS(2115), - [anon_sym_i16] = ACTIONS(2115), - [anon_sym_u32] = ACTIONS(2115), - [anon_sym_i32] = ACTIONS(2115), - [anon_sym_u64] = ACTIONS(2115), - [anon_sym_i64] = ACTIONS(2115), - [anon_sym_u128] = ACTIONS(2115), - [anon_sym_i128] = ACTIONS(2115), - [anon_sym_isize] = ACTIONS(2115), - [anon_sym_usize] = ACTIONS(2115), - [anon_sym_f32] = ACTIONS(2115), - [anon_sym_f64] = ACTIONS(2115), - [anon_sym_bool] = ACTIONS(2115), - [anon_sym_str] = ACTIONS(2115), - [anon_sym_char] = ACTIONS(2115), - [aux_sym__non_special_token_token1] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2115), - [anon_sym_as] = ACTIONS(2115), - [anon_sym_async] = ACTIONS(2115), - [anon_sym_await] = ACTIONS(2115), - [anon_sym_break] = ACTIONS(2115), - [anon_sym_const] = ACTIONS(2115), - [anon_sym_continue] = ACTIONS(2115), - [anon_sym_default] = ACTIONS(2115), - [anon_sym_enum] = ACTIONS(2115), - [anon_sym_fn] = ACTIONS(2115), - [anon_sym_for] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2115), - [anon_sym_impl] = ACTIONS(2115), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_loop] = ACTIONS(2115), - [anon_sym_match] = ACTIONS(2115), - [anon_sym_mod] = ACTIONS(2115), - [anon_sym_pub] = ACTIONS(2115), - [anon_sym_return] = ACTIONS(2115), - [anon_sym_static] = ACTIONS(2115), - [anon_sym_struct] = ACTIONS(2115), - [anon_sym_trait] = ACTIONS(2115), - [anon_sym_type] = ACTIONS(2115), - [anon_sym_union] = ACTIONS(2115), - [anon_sym_unsafe] = ACTIONS(2115), - [anon_sym_use] = ACTIONS(2115), - [anon_sym_where] = ACTIONS(2115), - [anon_sym_while] = ACTIONS(2115), - [sym_mutable_specifier] = ACTIONS(2115), - [sym_integer_literal] = ACTIONS(2117), - [aux_sym_string_literal_token1] = ACTIONS(2117), - [sym_char_literal] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2115), - [sym_super] = ACTIONS(2115), - [sym_crate] = ACTIONS(2115), - [sym_metavariable] = ACTIONS(2117), - [sym_raw_string_literal] = ACTIONS(2117), - [sym_float_literal] = ACTIONS(2117), - [sym_block_comment] = ACTIONS(3), - }, - [511] = { - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_RBRACK] = ACTIONS(2121), - [anon_sym_DOLLAR] = ACTIONS(2119), - [anon_sym_u8] = ACTIONS(2119), - [anon_sym_i8] = ACTIONS(2119), - [anon_sym_u16] = ACTIONS(2119), - [anon_sym_i16] = ACTIONS(2119), - [anon_sym_u32] = ACTIONS(2119), - [anon_sym_i32] = ACTIONS(2119), - [anon_sym_u64] = ACTIONS(2119), - [anon_sym_i64] = ACTIONS(2119), - [anon_sym_u128] = ACTIONS(2119), - [anon_sym_i128] = ACTIONS(2119), - [anon_sym_isize] = ACTIONS(2119), - [anon_sym_usize] = ACTIONS(2119), - [anon_sym_f32] = ACTIONS(2119), - [anon_sym_f64] = ACTIONS(2119), - [anon_sym_bool] = ACTIONS(2119), - [anon_sym_str] = ACTIONS(2119), - [anon_sym_char] = ACTIONS(2119), - [aux_sym__non_special_token_token1] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [anon_sym_as] = ACTIONS(2119), - [anon_sym_async] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_break] = ACTIONS(2119), - [anon_sym_const] = ACTIONS(2119), - [anon_sym_continue] = ACTIONS(2119), - [anon_sym_default] = ACTIONS(2119), - [anon_sym_enum] = ACTIONS(2119), - [anon_sym_fn] = ACTIONS(2119), - [anon_sym_for] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_impl] = ACTIONS(2119), - [anon_sym_let] = ACTIONS(2119), - [anon_sym_loop] = ACTIONS(2119), - [anon_sym_match] = ACTIONS(2119), - [anon_sym_mod] = ACTIONS(2119), - [anon_sym_pub] = ACTIONS(2119), - [anon_sym_return] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2119), - [anon_sym_struct] = ACTIONS(2119), - [anon_sym_trait] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2119), - [anon_sym_union] = ACTIONS(2119), - [anon_sym_unsafe] = ACTIONS(2119), - [anon_sym_use] = ACTIONS(2119), - [anon_sym_where] = ACTIONS(2119), - [anon_sym_while] = ACTIONS(2119), - [sym_mutable_specifier] = ACTIONS(2119), - [sym_integer_literal] = ACTIONS(2121), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2119), - [sym_super] = ACTIONS(2119), - [sym_crate] = ACTIONS(2119), - [sym_metavariable] = ACTIONS(2121), - [sym_raw_string_literal] = ACTIONS(2121), - [sym_float_literal] = ACTIONS(2121), - [sym_block_comment] = ACTIONS(3), - }, - [512] = { - [sym_identifier] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_RPAREN] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_RBRACK] = ACTIONS(2125), - [anon_sym_DOLLAR] = ACTIONS(2123), - [anon_sym_u8] = ACTIONS(2123), - [anon_sym_i8] = ACTIONS(2123), - [anon_sym_u16] = ACTIONS(2123), - [anon_sym_i16] = ACTIONS(2123), - [anon_sym_u32] = ACTIONS(2123), - [anon_sym_i32] = ACTIONS(2123), - [anon_sym_u64] = ACTIONS(2123), - [anon_sym_i64] = ACTIONS(2123), - [anon_sym_u128] = ACTIONS(2123), - [anon_sym_i128] = ACTIONS(2123), - [anon_sym_isize] = ACTIONS(2123), - [anon_sym_usize] = ACTIONS(2123), - [anon_sym_f32] = ACTIONS(2123), - [anon_sym_f64] = ACTIONS(2123), - [anon_sym_bool] = ACTIONS(2123), - [anon_sym_str] = ACTIONS(2123), - [anon_sym_char] = ACTIONS(2123), - [aux_sym__non_special_token_token1] = ACTIONS(2123), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_as] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(2123), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_break] = ACTIONS(2123), - [anon_sym_const] = ACTIONS(2123), - [anon_sym_continue] = ACTIONS(2123), - [anon_sym_default] = ACTIONS(2123), - [anon_sym_enum] = ACTIONS(2123), - [anon_sym_fn] = ACTIONS(2123), - [anon_sym_for] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_impl] = ACTIONS(2123), - [anon_sym_let] = ACTIONS(2123), - [anon_sym_loop] = ACTIONS(2123), - [anon_sym_match] = ACTIONS(2123), - [anon_sym_mod] = ACTIONS(2123), - [anon_sym_pub] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2123), - [anon_sym_static] = ACTIONS(2123), - [anon_sym_struct] = ACTIONS(2123), - [anon_sym_trait] = ACTIONS(2123), - [anon_sym_type] = ACTIONS(2123), - [anon_sym_union] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2123), - [anon_sym_use] = ACTIONS(2123), - [anon_sym_where] = ACTIONS(2123), - [anon_sym_while] = ACTIONS(2123), - [sym_mutable_specifier] = ACTIONS(2123), - [sym_integer_literal] = ACTIONS(2125), - [aux_sym_string_literal_token1] = ACTIONS(2125), - [sym_char_literal] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2123), - [sym_super] = ACTIONS(2123), - [sym_crate] = ACTIONS(2123), - [sym_metavariable] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2125), - [sym_float_literal] = ACTIONS(2125), - [sym_block_comment] = ACTIONS(3), - }, - [513] = { - [sym_identifier] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_RPAREN] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_RBRACK] = ACTIONS(2129), - [anon_sym_DOLLAR] = ACTIONS(2127), - [anon_sym_u8] = ACTIONS(2127), - [anon_sym_i8] = ACTIONS(2127), - [anon_sym_u16] = ACTIONS(2127), - [anon_sym_i16] = ACTIONS(2127), - [anon_sym_u32] = ACTIONS(2127), - [anon_sym_i32] = ACTIONS(2127), - [anon_sym_u64] = ACTIONS(2127), - [anon_sym_i64] = ACTIONS(2127), - [anon_sym_u128] = ACTIONS(2127), - [anon_sym_i128] = ACTIONS(2127), - [anon_sym_isize] = ACTIONS(2127), - [anon_sym_usize] = ACTIONS(2127), - [anon_sym_f32] = ACTIONS(2127), - [anon_sym_f64] = ACTIONS(2127), - [anon_sym_bool] = ACTIONS(2127), - [anon_sym_str] = ACTIONS(2127), - [anon_sym_char] = ACTIONS(2127), - [aux_sym__non_special_token_token1] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_as] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [anon_sym_fn] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_impl] = ACTIONS(2127), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_loop] = ACTIONS(2127), - [anon_sym_match] = ACTIONS(2127), - [anon_sym_mod] = ACTIONS(2127), - [anon_sym_pub] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_struct] = ACTIONS(2127), - [anon_sym_trait] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_union] = ACTIONS(2127), - [anon_sym_unsafe] = ACTIONS(2127), - [anon_sym_use] = ACTIONS(2127), - [anon_sym_where] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2127), - [sym_mutable_specifier] = ACTIONS(2127), - [sym_integer_literal] = ACTIONS(2129), - [aux_sym_string_literal_token1] = ACTIONS(2129), - [sym_char_literal] = ACTIONS(2129), - [anon_sym_true] = ACTIONS(2127), - [anon_sym_false] = ACTIONS(2127), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2127), - [sym_super] = ACTIONS(2127), - [sym_crate] = ACTIONS(2127), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2129), - [sym_float_literal] = ACTIONS(2129), - [sym_block_comment] = ACTIONS(3), - }, - [514] = { - [sym_attribute_item] = STATE(1069), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(604), - [sym__type] = STATE(1959), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(1069), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [515] = { - [sym_identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2133), - [anon_sym_RBRACK] = ACTIONS(2133), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_u8] = ACTIONS(2131), - [anon_sym_i8] = ACTIONS(2131), - [anon_sym_u16] = ACTIONS(2131), - [anon_sym_i16] = ACTIONS(2131), - [anon_sym_u32] = ACTIONS(2131), - [anon_sym_i32] = ACTIONS(2131), - [anon_sym_u64] = ACTIONS(2131), - [anon_sym_i64] = ACTIONS(2131), - [anon_sym_u128] = ACTIONS(2131), - [anon_sym_i128] = ACTIONS(2131), - [anon_sym_isize] = ACTIONS(2131), - [anon_sym_usize] = ACTIONS(2131), - [anon_sym_f32] = ACTIONS(2131), - [anon_sym_f64] = ACTIONS(2131), - [anon_sym_bool] = ACTIONS(2131), - [anon_sym_str] = ACTIONS(2131), - [anon_sym_char] = ACTIONS(2131), - [aux_sym__non_special_token_token1] = ACTIONS(2131), - [anon_sym_SQUOTE] = ACTIONS(2131), - [anon_sym_as] = ACTIONS(2131), - [anon_sym_async] = ACTIONS(2131), - [anon_sym_await] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_default] = ACTIONS(2131), - [anon_sym_enum] = ACTIONS(2131), - [anon_sym_fn] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_impl] = ACTIONS(2131), - [anon_sym_let] = ACTIONS(2131), - [anon_sym_loop] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2131), - [anon_sym_mod] = ACTIONS(2131), - [anon_sym_pub] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_static] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2131), - [anon_sym_trait] = ACTIONS(2131), - [anon_sym_type] = ACTIONS(2131), - [anon_sym_union] = ACTIONS(2131), - [anon_sym_unsafe] = ACTIONS(2131), - [anon_sym_use] = ACTIONS(2131), - [anon_sym_where] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [sym_mutable_specifier] = ACTIONS(2131), - [sym_integer_literal] = ACTIONS(2133), - [aux_sym_string_literal_token1] = ACTIONS(2133), - [sym_char_literal] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2131), - [anon_sym_false] = ACTIONS(2131), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2131), - [sym_super] = ACTIONS(2131), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(2133), - [sym_raw_string_literal] = ACTIONS(2133), - [sym_float_literal] = ACTIONS(2133), - [sym_block_comment] = ACTIONS(3), - }, - [516] = { - [sym_identifier] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_RBRACK] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_u8] = ACTIONS(409), - [anon_sym_i8] = ACTIONS(409), - [anon_sym_u16] = ACTIONS(409), - [anon_sym_i16] = ACTIONS(409), - [anon_sym_u32] = ACTIONS(409), - [anon_sym_i32] = ACTIONS(409), - [anon_sym_u64] = ACTIONS(409), - [anon_sym_i64] = ACTIONS(409), - [anon_sym_u128] = ACTIONS(409), - [anon_sym_i128] = ACTIONS(409), - [anon_sym_isize] = ACTIONS(409), - [anon_sym_usize] = ACTIONS(409), - [anon_sym_f32] = ACTIONS(409), - [anon_sym_f64] = ACTIONS(409), - [anon_sym_bool] = ACTIONS(409), - [anon_sym_str] = ACTIONS(409), - [anon_sym_char] = ACTIONS(409), - [aux_sym__non_special_token_token1] = ACTIONS(409), - [anon_sym_SQUOTE] = ACTIONS(409), - [anon_sym_as] = ACTIONS(409), - [anon_sym_async] = ACTIONS(409), - [anon_sym_await] = ACTIONS(409), - [anon_sym_break] = ACTIONS(409), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(409), - [anon_sym_default] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(409), - [anon_sym_fn] = ACTIONS(409), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(409), - [anon_sym_impl] = ACTIONS(409), - [anon_sym_let] = ACTIONS(409), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_match] = ACTIONS(409), - [anon_sym_mod] = ACTIONS(409), - [anon_sym_pub] = ACTIONS(409), - [anon_sym_return] = ACTIONS(409), - [anon_sym_static] = ACTIONS(409), - [anon_sym_struct] = ACTIONS(409), - [anon_sym_trait] = ACTIONS(409), - [anon_sym_type] = ACTIONS(409), - [anon_sym_union] = ACTIONS(409), - [anon_sym_unsafe] = ACTIONS(409), - [anon_sym_use] = ACTIONS(409), - [anon_sym_where] = ACTIONS(409), - [anon_sym_while] = ACTIONS(409), - [sym_mutable_specifier] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(407), - [aux_sym_string_literal_token1] = ACTIONS(407), - [sym_char_literal] = ACTIONS(407), - [anon_sym_true] = ACTIONS(409), - [anon_sym_false] = ACTIONS(409), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(409), - [sym_super] = ACTIONS(409), - [sym_crate] = ACTIONS(409), - [sym_metavariable] = ACTIONS(407), - [sym_raw_string_literal] = ACTIONS(407), - [sym_float_literal] = ACTIONS(407), - [sym_block_comment] = ACTIONS(3), - }, - [517] = { - [sym_identifier] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_RPAREN] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_RBRACK] = ACTIONS(2137), - [anon_sym_DOLLAR] = ACTIONS(2135), - [anon_sym_u8] = ACTIONS(2135), - [anon_sym_i8] = ACTIONS(2135), - [anon_sym_u16] = ACTIONS(2135), - [anon_sym_i16] = ACTIONS(2135), - [anon_sym_u32] = ACTIONS(2135), - [anon_sym_i32] = ACTIONS(2135), - [anon_sym_u64] = ACTIONS(2135), - [anon_sym_i64] = ACTIONS(2135), - [anon_sym_u128] = ACTIONS(2135), - [anon_sym_i128] = ACTIONS(2135), - [anon_sym_isize] = ACTIONS(2135), - [anon_sym_usize] = ACTIONS(2135), - [anon_sym_f32] = ACTIONS(2135), - [anon_sym_f64] = ACTIONS(2135), - [anon_sym_bool] = ACTIONS(2135), - [anon_sym_str] = ACTIONS(2135), - [anon_sym_char] = ACTIONS(2135), - [aux_sym__non_special_token_token1] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_as] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_default] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [anon_sym_fn] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_impl] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_loop] = ACTIONS(2135), - [anon_sym_match] = ACTIONS(2135), - [anon_sym_mod] = ACTIONS(2135), - [anon_sym_pub] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2135), - [anon_sym_trait] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_union] = ACTIONS(2135), - [anon_sym_unsafe] = ACTIONS(2135), - [anon_sym_use] = ACTIONS(2135), - [anon_sym_where] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [sym_mutable_specifier] = ACTIONS(2135), - [sym_integer_literal] = ACTIONS(2137), - [aux_sym_string_literal_token1] = ACTIONS(2137), - [sym_char_literal] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(2135), - [anon_sym_false] = ACTIONS(2135), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_crate] = ACTIONS(2135), - [sym_metavariable] = ACTIONS(2137), - [sym_raw_string_literal] = ACTIONS(2137), - [sym_float_literal] = ACTIONS(2137), - [sym_block_comment] = ACTIONS(3), - }, - [518] = { - [sym_parameter] = STATE(1901), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(682), - [anon_sym_union] = ACTIONS(682), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(2141), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [anon_sym_PIPE] = ACTIONS(2143), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2145), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [519] = { - [sym_identifier] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2149), - [aux_sym_string_literal_token1] = ACTIONS(2149), - [sym_char_literal] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(2147), - [anon_sym_false] = ACTIONS(2147), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2149), - [sym_float_literal] = ACTIONS(2149), - [sym_block_comment] = ACTIONS(3), - }, - [520] = { - [sym_identifier] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [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(898), - [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), - [sym_block_comment] = ACTIONS(3), - }, - [521] = { - [sym_attribute_item] = STATE(514), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(600), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(514), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [522] = { - [sym_identifier] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2157), - [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_u8] = ACTIONS(2155), - [anon_sym_i8] = ACTIONS(2155), - [anon_sym_u16] = ACTIONS(2155), - [anon_sym_i16] = ACTIONS(2155), - [anon_sym_u32] = ACTIONS(2155), - [anon_sym_i32] = ACTIONS(2155), - [anon_sym_u64] = ACTIONS(2155), - [anon_sym_i64] = ACTIONS(2155), - [anon_sym_u128] = ACTIONS(2155), - [anon_sym_i128] = ACTIONS(2155), - [anon_sym_isize] = ACTIONS(2155), - [anon_sym_usize] = ACTIONS(2155), - [anon_sym_f32] = ACTIONS(2155), - [anon_sym_f64] = ACTIONS(2155), - [anon_sym_bool] = ACTIONS(2155), - [anon_sym_str] = ACTIONS(2155), - [anon_sym_char] = ACTIONS(2155), - [aux_sym__non_special_token_token1] = ACTIONS(2155), - [anon_sym_SQUOTE] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_async] = ACTIONS(2155), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_default] = ACTIONS(2155), - [anon_sym_enum] = ACTIONS(2155), - [anon_sym_fn] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_impl] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_mod] = ACTIONS(2155), - [anon_sym_pub] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_static] = ACTIONS(2155), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_trait] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_union] = ACTIONS(2155), - [anon_sym_unsafe] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [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(898), - [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_block_comment] = ACTIONS(3), - }, - [523] = { - [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(898), - [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), - [sym_block_comment] = ACTIONS(3), - }, - [524] = { - [sym_function_modifiers] = STATE(2206), - [sym_const_parameter] = STATE(1804), - [sym_constrained_type_parameter] = STATE(1737), - [sym_optional_type_parameter] = STATE(1804), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1937), - [sym_bracketed_type] = STATE(2241), - [sym_qualified_type] = STATE(2327), - [sym_lifetime] = STATE(1546), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(2167), - [sym_block_comment] = ACTIONS(3), - }, - [525] = { - [sym_parameter] = STATE(2055), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1784), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(682), - [anon_sym_union] = ACTIONS(682), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(2141), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2145), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [526] = { - [sym_function_modifiers] = STATE(2206), - [sym_higher_ranked_trait_bound] = STATE(1464), - [sym_removed_trait_bound] = STATE(1464), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1468), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1469), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(2169), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [527] = { - [sym_function_modifiers] = STATE(2206), - [sym_higher_ranked_trait_bound] = STATE(1502), - [sym_removed_trait_bound] = STATE(1502), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1492), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1490), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(2169), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [528] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(780), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [529] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1678), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2175), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [530] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1685), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [531] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1731), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [532] = { - [sym_function_modifiers] = STATE(2206), - [sym_higher_ranked_trait_bound] = STATE(1502), - [sym_removed_trait_bound] = STATE(1502), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1501), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1497), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(2169), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [533] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1678), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2175), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2183), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [534] = { - [sym_function_modifiers] = STATE(2206), - [sym_higher_ranked_trait_bound] = STATE(1502), - [sym_removed_trait_bound] = STATE(1502), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1492), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1497), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(2169), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [535] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(2042), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(664), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(2187), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [536] = { - [sym_function_modifiers] = STATE(2243), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(965), - [sym_bracketed_type] = STATE(2331), - [sym_lifetime] = STATE(2200), - [sym_array_type] = STATE(977), - [sym_for_lifetimes] = STATE(1220), - [sym_function_type] = STATE(977), - [sym_tuple_type] = STATE(977), - [sym_unit_type] = STATE(977), - [sym_generic_type] = STATE(894), - [sym_generic_type_with_turbofish] = STATE(2332), - [sym_bounded_type] = STATE(977), - [sym_reference_type] = STATE(977), - [sym_pointer_type] = STATE(977), - [sym_empty_type] = STATE(977), - [sym_abstract_type] = STATE(977), - [sym_dynamic_type] = STATE(977), - [sym_macro_invocation] = STATE(977), - [sym_scoped_identifier] = STATE(2174), - [sym_scoped_type_identifier] = STATE(712), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2195), - [anon_sym_STAR] = ACTIONS(2197), - [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), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_dyn] = ACTIONS(2211), - [sym_mutable_specifier] = ACTIONS(2213), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2215), - [sym_super] = ACTIONS(2215), - [sym_crate] = ACTIONS(2215), - [sym_metavariable] = ACTIONS(2217), - [sym_block_comment] = ACTIONS(3), - }, - [537] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(2219), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [538] = { - [sym_attribute_item] = STATE(538), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_RBRACK] = ACTIONS(2223), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_u8] = ACTIONS(2221), - [anon_sym_i8] = ACTIONS(2221), - [anon_sym_u16] = ACTIONS(2221), - [anon_sym_i16] = ACTIONS(2221), - [anon_sym_u32] = ACTIONS(2221), - [anon_sym_i32] = ACTIONS(2221), - [anon_sym_u64] = ACTIONS(2221), - [anon_sym_i64] = ACTIONS(2221), - [anon_sym_u128] = ACTIONS(2221), - [anon_sym_i128] = ACTIONS(2221), - [anon_sym_isize] = ACTIONS(2221), - [anon_sym_usize] = ACTIONS(2221), - [anon_sym_f32] = ACTIONS(2221), - [anon_sym_f64] = ACTIONS(2221), - [anon_sym_bool] = ACTIONS(2221), - [anon_sym_str] = ACTIONS(2221), - [anon_sym_char] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_loop] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_union] = ACTIONS(2221), - [anon_sym_unsafe] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_POUND] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2223), - [anon_sym_ref] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_COLON_COLON] = ACTIONS(2223), - [anon_sym__] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2221), - [anon_sym_DOT_DOT] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2223), - [anon_sym_move] = ACTIONS(2221), - [sym_integer_literal] = ACTIONS(2223), - [aux_sym_string_literal_token1] = ACTIONS(2223), - [sym_char_literal] = ACTIONS(2223), - [anon_sym_true] = ACTIONS(2221), - [anon_sym_false] = ACTIONS(2221), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_crate] = ACTIONS(2221), - [sym_metavariable] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2223), - [sym_float_literal] = ACTIONS(2223), - [sym_block_comment] = ACTIONS(3), - }, - [539] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [540] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1331), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(664), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(2230), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2232), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [541] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1331), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(664), - [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(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(2234), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [542] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2236), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [543] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(2238), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [544] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [545] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, -}; - -static uint16_t ts_small_parse_table[] = { - [0] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2054), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [121] = 31, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2244), 1, - sym_identifier, - ACTIONS(2246), 1, - anon_sym_LT, - STATE(673), 1, - sym_type_parameters, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1486), 1, - sym_scoped_type_identifier, - STATE(1600), 1, - sym_generic_type, - STATE(1601), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 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, - [248] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2017), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [369] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, - anon_sym_COLON_COLON, - ACTIONS(2209), 1, - anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, - sym_metavariable, - ACTIONS(2248), 1, - anon_sym_SQUOTE, - ACTIONS(2250), 1, - sym_mutable_specifier, - STATE(536), 1, - sym_lifetime, - STATE(712), 1, - sym_scoped_type_identifier, - STATE(894), 1, - sym_generic_type, - STATE(1013), 1, - sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, - sym_scoped_identifier, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, - sym_bracketed_type, - STATE(2332), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(977), 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(2199), 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, - [496] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1705), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [617] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(1981), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [738] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1754), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [859] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1689), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [980] = 31, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2246), 1, - anon_sym_LT, - ACTIONS(2252), 1, - sym_identifier, - STATE(663), 1, - sym_type_parameters, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1447), 1, - sym_scoped_type_identifier, - STATE(1603), 1, - sym__type, - STATE(1648), 1, - sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 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, - [1107] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2050), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [1228] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1374), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [1349] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2254), 1, - anon_sym_RPAREN, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1744), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 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, - [1476] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - ACTIONS(2256), 1, - sym_mutable_specifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1369), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [1597] = 31, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2246), 1, - anon_sym_LT, - ACTIONS(2258), 1, - sym_identifier, - STATE(681), 1, - sym_type_parameters, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1446), 1, - sym_scoped_type_identifier, - STATE(1602), 1, - sym__type, - STATE(1651), 1, - sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 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, - [1724] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2260), 1, - anon_sym_RPAREN, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1886), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 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, - [1851] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2248), 1, - anon_sym_SQUOTE, - ACTIONS(2262), 1, - sym_mutable_specifier, - STATE(541), 1, - sym_lifetime, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1311), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 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, - [1978] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2012), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [2099] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1364), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [2220] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1732), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [2341] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1387), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [2462] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2264), 1, - anon_sym_RPAREN, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1886), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 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, - [2589] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - ACTIONS(2266), 1, - sym_mutable_specifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1712), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [2710] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2003), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [2831] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2268), 1, - anon_sym_RPAREN, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1886), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 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, - [2958] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1382), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [3079] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2060), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [3200] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1937), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - STATE(2327), 1, - sym_qualified_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 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, - [3327] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2248), 1, - anon_sym_SQUOTE, - ACTIONS(2270), 1, - sym_mutable_specifier, - STATE(535), 1, - sym_lifetime, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(2030), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 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, - [3454] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2272), 1, - anon_sym_RPAREN, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1699), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 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, - [3581] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - ACTIONS(2274), 1, - sym_mutable_specifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1694), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [3702] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2276), 1, - anon_sym_RPAREN, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1886), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 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, - [3829] = 31, - ACTIONS(664), 1, +static inline bool sym_identifier_character_set_3(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 <= 'Z') + : 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_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) { + 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 >= 'b' && 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 bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(58); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '"') ADVANCE(148); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(71); + if (lookahead == '%') ADVANCE(125); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(77); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(111); + if (lookahead == '.') ADVANCE(136); + if (lookahead == '/') ADVANCE(124); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(104); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(99); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(66); + if (lookahead == '\\') ADVANCE(35); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '^') ADVANCE(117); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'm') ADVANCE(157); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(55) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); + END_STATE(); + case 1: + if (lookahead == '!') ADVANCE(89); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '%') ADVANCE(125); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(77); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(110); + if (lookahead == '.') ADVANCE(136); + if (lookahead == '/') ADVANCE(124); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(97); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(99); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '^') ADVANCE(117); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(1) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 2: + if (lookahead == '!') ADVANCE(89); + if (lookahead == '%') ADVANCE(125); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '\'') ADVANCE(85); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(77); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(111); + if (lookahead == '.') ADVANCE(136); + if (lookahead == '/') ADVANCE(124); + if (lookahead == ':') ADVANCE(30); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(97); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(99); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '^') ADVANCE(117); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(2) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 3: + if (lookahead == '!') ADVANCE(89); + if (lookahead == '%') ADVANCE(125); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(77); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(110); + if (lookahead == '.') ADVANCE(136); + if (lookahead == '/') ADVANCE(124); + if (lookahead == ':') ADVANCE(30); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(104); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(99); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '^') ADVANCE(117); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(3) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 4: + if (lookahead == '!') ADVANCE(88); + if (lookahead == '"') ADVANCE(148); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '\'') ADVANCE(85); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '+') ADVANCE(76); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(23); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '=') ADVANCE(90); + if (lookahead == '>') ADVANCE(98); + if (lookahead == '\\') ADVANCE(35); + if (lookahead == ']') ADVANCE(67); + if (lookahead == 'm') ADVANCE(157); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(8) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 5: + if (lookahead == '!') ADVANCE(88); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(78); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(112); + if (lookahead == '.') ADVANCE(20); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(30); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '>') ADVANCE(98); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(5) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 6: + if (lookahead == '!') ADVANCE(88); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(78); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(109); + if (lookahead == '.') ADVANCE(21); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(30); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '[') ADVANCE(66); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(6) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 7: + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '\'') ADVANCE(85); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(78); + if (lookahead == '+') ADVANCE(76); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(32); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(98); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(7) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 8: + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '\'') ADVANCE(85); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '+') ADVANCE(76); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(23); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '=') ADVANCE(90); + if (lookahead == '>') ADVANCE(98); + if (lookahead == ']') ADVANCE(67); + if (lookahead == 'm') ADVANCE(157); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(8) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 9: + if (lookahead == '!') ADVANCE(88); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '+') ADVANCE(76); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(23); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(104); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(98); + if (lookahead == '@') ADVANCE(137); + if (lookahead == ']') ADVANCE(67); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(9) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 10: + if (lookahead == '!') ADVANCE(31); + if (lookahead == '%') ADVANCE(125); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(77); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(110); + if (lookahead == '.') ADVANCE(136); + if (lookahead == '/') ADVANCE(124); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(97); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(99); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '^') ADVANCE(117); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(10) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 11: + if (lookahead == '"') ADVANCE(147); + if (lookahead == '$') ADVANCE(71); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '/') ADVANCE(81); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(70); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '_') ADVANCE(82); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(11) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (('!' <= lookahead && lookahead <= '@') || + lookahead == '^' || + ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + END_STATE(); + case 12: + if (lookahead == '"') ADVANCE(147); + if (lookahead == '$') ADVANCE(71); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '/') ADVANCE(81); + if (lookahead == '0') ADVANCE(142); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '_') ADVANCE(82); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(12) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (('!' <= lookahead && lookahead <= '@') || + lookahead == '^' || + ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + END_STATE(); + case 13: + if (lookahead == '"') ADVANCE(147); + if (lookahead == '/') ADVANCE(23); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '=') ADVANCE(90); + if (lookahead == 'b') ADVANCE(154); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(13) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 14: + if (lookahead == '#') ADVANCE(87); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '.') ADVANCE(20); + if (lookahead == '/') ADVANCE(23); + if (lookahead == ':') ADVANCE(68); + if (lookahead == '<') ADVANCE(96); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(14) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 15: + if (lookahead == '\'') ADVANCE(149); + END_STATE(); + case 16: + if (lookahead == '\'') ADVANCE(149); + if (lookahead == '\\') ADVANCE(36); + if (lookahead != 0) ADVANCE(15); + END_STATE(); + case 17: + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(78); + if (lookahead == '+') ADVANCE(76); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(32); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(23); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(104); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(98); + if (lookahead == ']') ADVANCE(67); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(17) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 18: + if (lookahead == '*') ADVANCE(78); + if (lookahead == '+') ADVANCE(76); + if (lookahead == '/') ADVANCE(74); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(73); + if (lookahead != 0) ADVANCE(75); + END_STATE(); + case 19: + if (lookahead == '.') ADVANCE(103); + if (lookahead == '=') ADVANCE(108); + END_STATE(); + case 20: + if (lookahead == '.') ADVANCE(105); + END_STATE(); + case 21: + if (lookahead == '.') ADVANCE(106); + END_STATE(); + case 22: + if (lookahead == '.') ADVANCE(19); + END_STATE(); + case 23: + if (lookahead == '/') ADVANCE(151); + END_STATE(); + case 24: + if (lookahead == '1') ADVANCE(26); + if (lookahead == '3') ADVANCE(25); + if (lookahead == '6') ADVANCE(28); + if (lookahead == '8') ADVANCE(138); + if (lookahead == 's') ADVANCE(34); + END_STATE(); + case 25: + if (lookahead == '2') ADVANCE(138); + END_STATE(); + case 26: + if (lookahead == '2') ADVANCE(29); + if (lookahead == '6') ADVANCE(138); + END_STATE(); + case 27: + if (lookahead == '3') ADVANCE(25); + if (lookahead == '6') ADVANCE(28); + END_STATE(); + case 28: + if (lookahead == '4') ADVANCE(138); + END_STATE(); + case 29: + if (lookahead == '8') ADVANCE(138); + END_STATE(); + case 30: + if (lookahead == ':') ADVANCE(100); + END_STATE(); + case 31: + if (lookahead == '=') ADVANCE(119); + END_STATE(); + case 32: + if (lookahead == '>') ADVANCE(95); + END_STATE(); + case 33: + if (lookahead == 'e') ADVANCE(138); + END_STATE(); + case 34: + if (lookahead == 'i') ADVANCE(37); + END_STATE(); + case 35: + if (lookahead == 'u') ADVANCE(38); + if (lookahead == 'x') ADVANCE(49); + if (lookahead != 0) ADVANCE(150); + END_STATE(); + case 36: + if (lookahead == 'u') ADVANCE(39); + if (lookahead == 'x') ADVANCE(50); + if (lookahead != 0) ADVANCE(15); + END_STATE(); + case 37: + if (lookahead == 'z') ADVANCE(33); + END_STATE(); + case 38: + if (lookahead == '{') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + END_STATE(); + case 39: + if (lookahead == '{') ADVANCE(48); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + END_STATE(); + case 40: + if (lookahead == '}') ADVANCE(15); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + END_STATE(); + case 41: + if (lookahead == '}') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + END_STATE(); + case 42: + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(143); + END_STATE(); + case 43: + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(144); + END_STATE(); + case 44: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(15); + END_STATE(); + case 45: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); + END_STATE(); + case 46: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); + END_STATE(); + case 47: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + END_STATE(); + case 48: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + END_STATE(); + case 49: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + END_STATE(); + case 50: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + END_STATE(); + case 51: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); + END_STATE(); + case 52: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(146); + END_STATE(); + case 53: + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + END_STATE(); + case 54: + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 55: + if (eof) ADVANCE(58); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(71); + if (lookahead == '%') ADVANCE(125); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(77); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(111); + if (lookahead == '.') ADVANCE(136); + if (lookahead == '/') ADVANCE(124); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(104); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(99); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '^') ADVANCE(117); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'm') ADVANCE(157); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(55) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 56: + if (eof) ADVANCE(58); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '%') ADVANCE(125); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(77); + if (lookahead == '-') ADVANCE(110); + if (lookahead == '.') ADVANCE(136); + if (lookahead == '/') ADVANCE(124); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(30); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(97); + if (lookahead == '=') ADVANCE(91); + if (lookahead == '>') ADVANCE(99); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '[') ADVANCE(66); + if (lookahead == '^') ADVANCE(117); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'm') ADVANCE(157); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(56) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 57: + if (eof) ADVANCE(58); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(78); + if (lookahead == '+') ADVANCE(76); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(112); + if (lookahead == '.') ADVANCE(20); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(30); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '=') ADVANCE(90); + if (lookahead == '>') ADVANCE(98); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'm') ADVANCE(157); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(57) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 58: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 59: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 60: + ACCEPT_TOKEN(anon_sym_macro_rules_BANG); + END_STATE(); + case 61: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 62: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 63: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 64: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 66: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 67: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 69: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(100); + END_STATE(); + case 70: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '!' || + lookahead == '#' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '_' || + lookahead == '|' || + lookahead == '~') ADVANCE(83); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + END_STATE(); + case 72: + ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); + if (lookahead == '\n') ADVANCE(75); + if (lookahead == '*' || + lookahead == '+' || + lookahead == '?') ADVANCE(151); + if (lookahead != 0) ADVANCE(72); + END_STATE(); + case 73: + ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); + if (lookahead == '/') ADVANCE(74); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(73); + if (lookahead != 0 && + lookahead != '*' && + lookahead != '+' && + lookahead != '?') ADVANCE(75); + END_STATE(); + case 74: + ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); + if (lookahead == '/') ADVANCE(72); + if (lookahead != 0 && + lookahead != '*' && + lookahead != '+' && + lookahead != '?') ADVANCE(75); + END_STATE(); + case 75: + ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); + if (lookahead != 0 && + lookahead != '*' && + lookahead != '+' && + lookahead != '?') ADVANCE(75); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(126); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(128); + END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 81: + ACCEPT_TOKEN(aux_sym__non_special_token_token1); + if (lookahead == '/') ADVANCE(84); + if (lookahead == '!' || + lookahead == '#' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '_' || + lookahead == '|' || + lookahead == '~') ADVANCE(83); + END_STATE(); + case 82: + ACCEPT_TOKEN(aux_sym__non_special_token_token1); + if (lookahead == '_') ADVANCE(82); + if (lookahead == '!' || + lookahead == '#' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(83); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(166); + END_STATE(); + case 83: + ACCEPT_TOKEN(aux_sym__non_special_token_token1); + if (lookahead == '!' || + lookahead == '#' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '_' || + lookahead == '|' || + lookahead == '~') ADVANCE(83); + END_STATE(); + case 84: + ACCEPT_TOKEN(aux_sym__non_special_token_token1); + if (lookahead == '!' || + lookahead == '#' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '_' || + lookahead == '|' || + lookahead == '~') ADVANCE(84); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(151); + END_STATE(); + case 85: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(149); + if (lookahead == '\\') ADVANCE(36); + if (lookahead != 0) ADVANCE(15); + END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_POUND); + END_STATE(); + case 88: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(119); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 91: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(118); + END_STATE(); + case 92: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(118); + if (lookahead == '>') ADVANCE(65); + END_STATE(); + case 93: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(65); + END_STATE(); + case 94: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 95: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 96: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 97: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(122); + if (lookahead == '=') ADVANCE(120); + END_STATE(); + case 98: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 99: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(121); + if (lookahead == '>') ADVANCE(123); + END_STATE(); + case 100: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 101: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 102: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '=') ADVANCE(131); + END_STATE(); + case 103: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 104: + ACCEPT_TOKEN(anon_sym_LT2); + END_STATE(); + case 105: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(103); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(103); + if (lookahead == '=') ADVANCE(108); + END_STATE(); + case 108: + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + END_STATE(); + case 109: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 110: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(127); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(127); + if (lookahead == '>') ADVANCE(95); + END_STATE(); + case 112: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(95); + END_STATE(); + case 113: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 114: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(132); + if (lookahead == '|') ADVANCE(114); + END_STATE(); + case 117: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(133); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 121: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(134); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(135); + END_STATE(); + case 124: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(151); + if (lookahead == '=') ADVANCE(129); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(130); + END_STATE(); + case 126: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 128: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 129: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 130: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 133: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 134: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 136: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(107); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 138: + ACCEPT_TOKEN(sym_integer_literal); + END_STATE(); + case 139: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '2') ADVANCE(146); + if (lookahead == 'f') ADVANCE(140); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'u') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + END_STATE(); + case 140: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '3') ADVANCE(139); + if (lookahead == '6') ADVANCE(141); + if (lookahead == 'f') ADVANCE(140); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'u') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + END_STATE(); + case 141: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '4') ADVANCE(146); + if (lookahead == 'f') ADVANCE(140); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'u') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + END_STATE(); + case 142: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'b') ADVANCE(42); + if (lookahead == 'f') ADVANCE(27); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'o') ADVANCE(43); + if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'x') ADVANCE(52); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(145); + END_STATE(); + case 143: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'f') ADVANCE(27); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'u') ADVANCE(24); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(143); + END_STATE(); + case 144: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'f') ADVANCE(27); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'u') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(144); + END_STATE(); + case 145: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'f') ADVANCE(27); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'u') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(145); + END_STATE(); + case 146: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'f') ADVANCE(140); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'u') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + END_STATE(); + case 147: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 149: + ACCEPT_TOKEN(sym_char_literal); + END_STATE(); + case 150: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 151: + ACCEPT_TOKEN(sym_line_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(151); + END_STATE(); + case 152: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '!') ADVANCE(60); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 153: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '\'') ADVANCE(16); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 154: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(147); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 155: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '#') ADVANCE(54); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 156: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(163); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(166); + END_STATE(); + case 157: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(158); + if (sym_identifier_character_set_7(lookahead)) ADVANCE(166); + END_STATE(); + case 158: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(162); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 159: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(164); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 160: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(159); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 161: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(156); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 162: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(161); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 163: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(165); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 164: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(152); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 165: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(160); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 166: + ACCEPT_TOKEN(sym_identifier); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 167: + ACCEPT_TOKEN(sym_metavariable); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == '_') ADVANCE(1); + if (lookahead == 'a') ADVANCE(2); + if (lookahead == 'b') ADVANCE(3); + if (lookahead == 'c') ADVANCE(4); + if (lookahead == 'd') ADVANCE(5); + if (lookahead == 'e') ADVANCE(6); + if (lookahead == 'f') ADVANCE(7); + if (lookahead == 'i') ADVANCE(8); + if (lookahead == 'l') ADVANCE(9); + if (lookahead == 'm') ADVANCE(10); + if (lookahead == 'p') ADVANCE(11); + if (lookahead == 'r') ADVANCE(12); + if (lookahead == 's') ADVANCE(13); + if (lookahead == 't') ADVANCE(14); + if (lookahead == 'u') ADVANCE(15); + if (lookahead == 'v') ADVANCE(16); + if (lookahead == 'w') ADVANCE(17); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(0) + END_STATE(); + case 1: + ACCEPT_TOKEN(anon_sym__); + END_STATE(); + case 2: + if (lookahead == 's') ADVANCE(18); + if (lookahead == 'w') ADVANCE(19); + END_STATE(); + case 3: + if (lookahead == 'l') ADVANCE(20); + if (lookahead == 'o') ADVANCE(21); + if (lookahead == 'r') ADVANCE(22); + END_STATE(); + case 4: + if (lookahead == 'h') ADVANCE(23); + if (lookahead == 'o') ADVANCE(24); + if (lookahead == 'r') ADVANCE(25); + END_STATE(); + case 5: + if (lookahead == 'e') ADVANCE(26); + if (lookahead == 'y') ADVANCE(27); + END_STATE(); + case 6: + if (lookahead == 'l') ADVANCE(28); + if (lookahead == 'n') ADVANCE(29); + if (lookahead == 'x') ADVANCE(30); + END_STATE(); + case 7: + if (lookahead == '3') ADVANCE(31); + if (lookahead == '6') ADVANCE(32); + if (lookahead == 'a') ADVANCE(33); + if (lookahead == 'n') ADVANCE(34); + if (lookahead == 'o') ADVANCE(35); + END_STATE(); + case 8: + if (lookahead == '1') ADVANCE(36); + if (lookahead == '3') ADVANCE(37); + if (lookahead == '6') ADVANCE(38); + if (lookahead == '8') ADVANCE(39); + if (lookahead == 'd') ADVANCE(40); + if (lookahead == 'f') ADVANCE(41); + if (lookahead == 'm') ADVANCE(42); + if (lookahead == 'n') ADVANCE(43); + if (lookahead == 's') ADVANCE(44); + if (lookahead == 't') ADVANCE(45); + END_STATE(); + case 9: + if (lookahead == 'e') ADVANCE(46); + if (lookahead == 'i') ADVANCE(47); + if (lookahead == 'o') ADVANCE(48); + END_STATE(); + case 10: + if (lookahead == 'a') ADVANCE(49); + if (lookahead == 'e') ADVANCE(50); + if (lookahead == 'o') ADVANCE(51); + if (lookahead == 'u') ADVANCE(52); + END_STATE(); + case 11: + if (lookahead == 'a') ADVANCE(53); + if (lookahead == 'u') ADVANCE(54); + END_STATE(); + case 12: + if (lookahead == 'e') ADVANCE(55); + END_STATE(); + case 13: + if (lookahead == 'e') ADVANCE(56); + if (lookahead == 't') ADVANCE(57); + if (lookahead == 'u') ADVANCE(58); + END_STATE(); + case 14: + if (lookahead == 'r') ADVANCE(59); + if (lookahead == 't') ADVANCE(60); + if (lookahead == 'y') ADVANCE(61); + END_STATE(); + case 15: + if (lookahead == '1') ADVANCE(62); + if (lookahead == '3') ADVANCE(63); + if (lookahead == '6') ADVANCE(64); + if (lookahead == '8') ADVANCE(65); + if (lookahead == 'n') ADVANCE(66); + if (lookahead == 's') ADVANCE(67); + END_STATE(); + case 16: + if (lookahead == 'i') ADVANCE(68); + END_STATE(); + case 17: + if (lookahead == 'h') ADVANCE(69); + END_STATE(); + case 18: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(70); + END_STATE(); + case 19: + if (lookahead == 'a') ADVANCE(71); + END_STATE(); + case 20: + if (lookahead == 'o') ADVANCE(72); + END_STATE(); + case 21: + if (lookahead == 'o') ADVANCE(73); + END_STATE(); + case 22: + if (lookahead == 'e') ADVANCE(74); + END_STATE(); + case 23: + if (lookahead == 'a') ADVANCE(75); + END_STATE(); + case 24: + if (lookahead == 'n') ADVANCE(76); + END_STATE(); + case 25: + if (lookahead == 'a') ADVANCE(77); + END_STATE(); + case 26: + if (lookahead == 'f') ADVANCE(78); + END_STATE(); + case 27: + if (lookahead == 'n') ADVANCE(79); + END_STATE(); + case 28: + if (lookahead == 's') ADVANCE(80); + END_STATE(); + case 29: + if (lookahead == 'u') ADVANCE(81); + END_STATE(); + case 30: + if (lookahead == 'p') ADVANCE(82); + if (lookahead == 't') ADVANCE(83); + END_STATE(); + case 31: + if (lookahead == '2') ADVANCE(84); + END_STATE(); + case 32: + if (lookahead == '4') ADVANCE(85); + END_STATE(); + case 33: + if (lookahead == 'l') ADVANCE(86); + END_STATE(); + case 34: + ACCEPT_TOKEN(anon_sym_fn); + END_STATE(); + case 35: + if (lookahead == 'r') ADVANCE(87); + END_STATE(); + case 36: + if (lookahead == '2') ADVANCE(88); + if (lookahead == '6') ADVANCE(89); + END_STATE(); + case 37: + if (lookahead == '2') ADVANCE(90); + END_STATE(); + case 38: + if (lookahead == '4') ADVANCE(91); + END_STATE(); + case 39: + ACCEPT_TOKEN(anon_sym_i8); + END_STATE(); + case 40: + if (lookahead == 'e') ADVANCE(92); + END_STATE(); + case 41: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 42: + if (lookahead == 'p') ADVANCE(93); + END_STATE(); + case 43: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 44: + if (lookahead == 'i') ADVANCE(94); + END_STATE(); + case 45: + if (lookahead == 'e') ADVANCE(95); + END_STATE(); + case 46: + if (lookahead == 't') ADVANCE(96); + END_STATE(); + case 47: + if (lookahead == 'f') ADVANCE(97); + if (lookahead == 't') ADVANCE(98); + END_STATE(); + case 48: + if (lookahead == 'o') ADVANCE(99); + END_STATE(); + case 49: + if (lookahead == 't') ADVANCE(100); + END_STATE(); + case 50: + if (lookahead == 't') ADVANCE(101); + END_STATE(); + case 51: + if (lookahead == 'd') ADVANCE(102); + if (lookahead == 'v') ADVANCE(103); + END_STATE(); + case 52: + if (lookahead == 't') ADVANCE(104); + END_STATE(); + case 53: + if (lookahead == 't') ADVANCE(105); + END_STATE(); + case 54: + if (lookahead == 'b') ADVANCE(106); + END_STATE(); + case 55: + if (lookahead == 'f') ADVANCE(107); + if (lookahead == 't') ADVANCE(108); + END_STATE(); + case 56: + if (lookahead == 'l') ADVANCE(109); + END_STATE(); + case 57: + if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'm') ADVANCE(111); + if (lookahead == 'r') ADVANCE(112); + END_STATE(); + case 58: + if (lookahead == 'p') ADVANCE(113); + END_STATE(); + case 59: + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'u') ADVANCE(115); + END_STATE(); + case 60: + ACCEPT_TOKEN(anon_sym_tt); + END_STATE(); + case 61: + ACCEPT_TOKEN(anon_sym_ty); + if (lookahead == 'p') ADVANCE(116); + END_STATE(); + case 62: + if (lookahead == '2') ADVANCE(117); + if (lookahead == '6') ADVANCE(118); + END_STATE(); + case 63: + if (lookahead == '2') ADVANCE(119); + END_STATE(); + case 64: + if (lookahead == '4') ADVANCE(120); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_u8); + END_STATE(); + case 66: + if (lookahead == 'i') ADVANCE(121); + if (lookahead == 's') ADVANCE(122); + END_STATE(); + case 67: + if (lookahead == 'e') ADVANCE(123); + if (lookahead == 'i') ADVANCE(124); + END_STATE(); + case 68: + if (lookahead == 's') ADVANCE(125); + END_STATE(); + case 69: + if (lookahead == 'e') ADVANCE(126); + if (lookahead == 'i') ADVANCE(127); + END_STATE(); + case 70: + if (lookahead == 'n') ADVANCE(128); + END_STATE(); + case 71: + if (lookahead == 'i') ADVANCE(129); + END_STATE(); + case 72: + if (lookahead == 'c') ADVANCE(130); + END_STATE(); + case 73: + if (lookahead == 'l') ADVANCE(131); + END_STATE(); + case 74: + if (lookahead == 'a') ADVANCE(132); + END_STATE(); + case 75: + if (lookahead == 'r') ADVANCE(133); + END_STATE(); + case 76: + if (lookahead == 's') ADVANCE(134); + if (lookahead == 't') ADVANCE(135); + END_STATE(); + case 77: + if (lookahead == 't') ADVANCE(136); + END_STATE(); + case 78: + if (lookahead == 'a') ADVANCE(137); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_dyn); + END_STATE(); + case 80: + if (lookahead == 'e') ADVANCE(138); + END_STATE(); + case 81: + if (lookahead == 'm') ADVANCE(139); + END_STATE(); + case 82: + if (lookahead == 'r') ADVANCE(140); + END_STATE(); + case 83: + if (lookahead == 'e') ADVANCE(141); + END_STATE(); + case 84: + ACCEPT_TOKEN(anon_sym_f32); + END_STATE(); + case 85: + ACCEPT_TOKEN(anon_sym_f64); + END_STATE(); + case 86: + if (lookahead == 's') ADVANCE(142); + END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 88: + if (lookahead == '8') ADVANCE(143); + END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_i16); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_i32); + END_STATE(); + case 91: + ACCEPT_TOKEN(anon_sym_i64); + END_STATE(); + case 92: + if (lookahead == 'n') ADVANCE(144); + END_STATE(); + case 93: + if (lookahead == 'l') ADVANCE(145); + END_STATE(); + case 94: + if (lookahead == 'z') ADVANCE(146); + END_STATE(); + case 95: + if (lookahead == 'm') ADVANCE(147); + END_STATE(); + case 96: + ACCEPT_TOKEN(anon_sym_let); + END_STATE(); + case 97: + if (lookahead == 'e') ADVANCE(148); + END_STATE(); + case 98: + if (lookahead == 'e') ADVANCE(149); + END_STATE(); + case 99: + if (lookahead == 'p') ADVANCE(150); + END_STATE(); + case 100: + if (lookahead == 'c') ADVANCE(151); + END_STATE(); + case 101: + if (lookahead == 'a') ADVANCE(152); + END_STATE(); + case 102: + ACCEPT_TOKEN(anon_sym_mod); + END_STATE(); + case 103: + if (lookahead == 'e') ADVANCE(153); + END_STATE(); + case 104: + ACCEPT_TOKEN(sym_mutable_specifier); + END_STATE(); + case 105: + ACCEPT_TOKEN(anon_sym_pat); + if (lookahead == 'h') ADVANCE(154); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_pub); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_ref); + END_STATE(); + case 108: + if (lookahead == 'u') ADVANCE(155); + END_STATE(); + case 109: + if (lookahead == 'f') ADVANCE(156); + END_STATE(); + case 110: + if (lookahead == 't') ADVANCE(157); + END_STATE(); + case 111: + if (lookahead == 't') ADVANCE(158); + END_STATE(); + case 112: + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(159); + END_STATE(); + case 113: + if (lookahead == 'e') ADVANCE(160); + END_STATE(); + case 114: + if (lookahead == 'i') ADVANCE(161); + END_STATE(); + case 115: + if (lookahead == 'e') ADVANCE(162); + END_STATE(); + case 116: + if (lookahead == 'e') ADVANCE(163); + END_STATE(); + case 117: + if (lookahead == '8') ADVANCE(164); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_u16); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_u32); + END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_u64); + END_STATE(); + case 121: + if (lookahead == 'o') ADVANCE(165); + END_STATE(); + case 122: + if (lookahead == 'a') ADVANCE(166); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_use); + END_STATE(); + case 124: + if (lookahead == 'z') ADVANCE(167); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_vis); + END_STATE(); + case 126: + if (lookahead == 'r') ADVANCE(168); + END_STATE(); + case 127: + if (lookahead == 'l') ADVANCE(169); + END_STATE(); + case 128: + if (lookahead == 'c') ADVANCE(170); + END_STATE(); + case 129: + if (lookahead == 't') ADVANCE(171); + END_STATE(); + case 130: + if (lookahead == 'k') ADVANCE(172); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_bool); + END_STATE(); + case 132: + if (lookahead == 'k') ADVANCE(173); + END_STATE(); + case 133: + ACCEPT_TOKEN(anon_sym_char); + END_STATE(); + case 134: + if (lookahead == 't') ADVANCE(174); + END_STATE(); + case 135: + if (lookahead == 'i') ADVANCE(175); + END_STATE(); + case 136: + if (lookahead == 'e') ADVANCE(176); + END_STATE(); + case 137: + if (lookahead == 'u') ADVANCE(177); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 139: + ACCEPT_TOKEN(anon_sym_enum); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_expr); + END_STATE(); + case 141: + if (lookahead == 'r') ADVANCE(178); + END_STATE(); + case 142: + if (lookahead == 'e') ADVANCE(179); + END_STATE(); + case 143: + ACCEPT_TOKEN(anon_sym_i128); + END_STATE(); + case 144: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 145: + ACCEPT_TOKEN(anon_sym_impl); + END_STATE(); + case 146: + if (lookahead == 'e') ADVANCE(181); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_item); + END_STATE(); + case 148: + if (lookahead == 't') ADVANCE(182); + END_STATE(); + case 149: + if (lookahead == 'r') ADVANCE(183); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_loop); + END_STATE(); + case 151: + if (lookahead == 'h') ADVANCE(184); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_meta); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_move); + END_STATE(); + case 154: + ACCEPT_TOKEN(anon_sym_path); + END_STATE(); + case 155: + if (lookahead == 'r') ADVANCE(185); + END_STATE(); + case 156: + ACCEPT_TOKEN(sym_self); + END_STATE(); + case 157: + if (lookahead == 'i') ADVANCE(186); + END_STATE(); + case 158: + ACCEPT_TOKEN(anon_sym_stmt); + END_STATE(); + case 159: + if (lookahead == 'c') ADVANCE(187); + END_STATE(); + case 160: + if (lookahead == 'r') ADVANCE(188); + END_STATE(); + case 161: + if (lookahead == 't') ADVANCE(189); + END_STATE(); + case 162: + ACCEPT_TOKEN(anon_sym_true); + END_STATE(); + case 163: + ACCEPT_TOKEN(anon_sym_type); + END_STATE(); + case 164: + ACCEPT_TOKEN(anon_sym_u128); + END_STATE(); + case 165: + if (lookahead == 'n') ADVANCE(190); + END_STATE(); + case 166: + if (lookahead == 'f') ADVANCE(191); + END_STATE(); + case 167: + if (lookahead == 'e') ADVANCE(192); + END_STATE(); + case 168: + if (lookahead == 'e') ADVANCE(193); + END_STATE(); + case 169: + if (lookahead == 'e') ADVANCE(194); + END_STATE(); + case 170: + ACCEPT_TOKEN(anon_sym_async); + END_STATE(); + case 171: + ACCEPT_TOKEN(anon_sym_await); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_block); + END_STATE(); + case 173: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 174: + ACCEPT_TOKEN(anon_sym_const); + END_STATE(); + case 175: + if (lookahead == 'n') ADVANCE(195); + END_STATE(); + case 176: + ACCEPT_TOKEN(sym_crate); + END_STATE(); + case 177: + if (lookahead == 'l') ADVANCE(196); + END_STATE(); + case 178: + if (lookahead == 'n') ADVANCE(197); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_ident); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_isize); + END_STATE(); + case 182: + if (lookahead == 'i') ADVANCE(198); + END_STATE(); + case 183: + if (lookahead == 'a') ADVANCE(199); + END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_match); + END_STATE(); + case 185: + if (lookahead == 'n') ADVANCE(200); + END_STATE(); + case 186: + if (lookahead == 'c') ADVANCE(201); + END_STATE(); + case 187: + if (lookahead == 't') ADVANCE(202); + END_STATE(); + case 188: + ACCEPT_TOKEN(sym_super); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_trait); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_union); + END_STATE(); + case 191: + if (lookahead == 'e') ADVANCE(203); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_usize); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_where); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 195: + if (lookahead == 'u') ADVANCE(204); + END_STATE(); + case 196: + if (lookahead == 't') ADVANCE(205); + END_STATE(); + case 197: + ACCEPT_TOKEN(anon_sym_extern); + END_STATE(); + case 198: + if (lookahead == 'm') ADVANCE(206); + END_STATE(); + case 199: + if (lookahead == 'l') ADVANCE(207); + END_STATE(); + case 200: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 201: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 202: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 203: + ACCEPT_TOKEN(anon_sym_unsafe); + END_STATE(); + case 204: + if (lookahead == 'e') ADVANCE(208); + END_STATE(); + case 205: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 206: + if (lookahead == 'e') ADVANCE(209); + END_STATE(); + case 207: + ACCEPT_TOKEN(anon_sym_literal); + END_STATE(); + case 208: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 209: + ACCEPT_TOKEN(anon_sym_lifetime); + END_STATE(); + default: + return false; + } +} + +static TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 57, .external_lex_state = 2}, + [2] = {.lex_state = 57, .external_lex_state = 2}, + [3] = {.lex_state = 57, .external_lex_state = 2}, + [4] = {.lex_state = 57, .external_lex_state = 2}, + [5] = {.lex_state = 57, .external_lex_state = 2}, + [6] = {.lex_state = 57, .external_lex_state = 2}, + [7] = {.lex_state = 57, .external_lex_state = 2}, + [8] = {.lex_state = 57, .external_lex_state = 2}, + [9] = {.lex_state = 57, .external_lex_state = 2}, + [10] = {.lex_state = 57, .external_lex_state = 2}, + [11] = {.lex_state = 57, .external_lex_state = 2}, + [12] = {.lex_state = 57, .external_lex_state = 2}, + [13] = {.lex_state = 57, .external_lex_state = 2}, + [14] = {.lex_state = 57, .external_lex_state = 2}, + [15] = {.lex_state = 57, .external_lex_state = 2}, + [16] = {.lex_state = 57, .external_lex_state = 2}, + [17] = {.lex_state = 1, .external_lex_state = 2}, + [18] = {.lex_state = 1, .external_lex_state = 2}, + [19] = {.lex_state = 1, .external_lex_state = 2}, + [20] = {.lex_state = 1, .external_lex_state = 2}, + [21] = {.lex_state = 1, .external_lex_state = 2}, + [22] = {.lex_state = 1, .external_lex_state = 2}, + [23] = {.lex_state = 1, .external_lex_state = 2}, + [24] = {.lex_state = 1, .external_lex_state = 2}, + [25] = {.lex_state = 1, .external_lex_state = 2}, + [26] = {.lex_state = 1, .external_lex_state = 2}, + [27] = {.lex_state = 5, .external_lex_state = 2}, + [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}, + [35] = {.lex_state = 5, .external_lex_state = 2}, + [36] = {.lex_state = 56, .external_lex_state = 2}, + [37] = {.lex_state = 5, .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}, + [41] = {.lex_state = 5, .external_lex_state = 2}, + [42] = {.lex_state = 5, .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}, + [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}, + [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}, + [57] = {.lex_state = 56, .external_lex_state = 2}, + [58] = {.lex_state = 56, .external_lex_state = 2}, + [59] = {.lex_state = 56, .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}, + [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}, + [75] = {.lex_state = 5, .external_lex_state = 2}, + [76] = {.lex_state = 5, .external_lex_state = 2}, + [77] = {.lex_state = 5, .external_lex_state = 2}, + [78] = {.lex_state = 5, .external_lex_state = 2}, + [79] = {.lex_state = 5, .external_lex_state = 2}, + [80] = {.lex_state = 5, .external_lex_state = 2}, + [81] = {.lex_state = 5, .external_lex_state = 2}, + [82] = {.lex_state = 5, .external_lex_state = 2}, + [83] = {.lex_state = 5, .external_lex_state = 2}, + [84] = {.lex_state = 5, .external_lex_state = 2}, + [85] = {.lex_state = 5, .external_lex_state = 2}, + [86] = {.lex_state = 5, .external_lex_state = 2}, + [87] = {.lex_state = 5, .external_lex_state = 2}, + [88] = {.lex_state = 5, .external_lex_state = 2}, + [89] = {.lex_state = 5, .external_lex_state = 2}, + [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}, + [95] = {.lex_state = 5, .external_lex_state = 2}, + [96] = {.lex_state = 5, .external_lex_state = 2}, + [97] = {.lex_state = 5, .external_lex_state = 2}, + [98] = {.lex_state = 5, .external_lex_state = 2}, + [99] = {.lex_state = 5, .external_lex_state = 2}, + [100] = {.lex_state = 5, .external_lex_state = 2}, + [101] = {.lex_state = 5, .external_lex_state = 2}, + [102] = {.lex_state = 5, .external_lex_state = 2}, + [103] = {.lex_state = 5, .external_lex_state = 2}, + [104] = {.lex_state = 5, .external_lex_state = 2}, + [105] = {.lex_state = 5, .external_lex_state = 2}, + [106] = {.lex_state = 5, .external_lex_state = 2}, + [107] = {.lex_state = 5, .external_lex_state = 2}, + [108] = {.lex_state = 5, .external_lex_state = 2}, + [109] = {.lex_state = 5, .external_lex_state = 2}, + [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}, + [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}, + [118] = {.lex_state = 5, .external_lex_state = 2}, + [119] = {.lex_state = 5, .external_lex_state = 2}, + [120] = {.lex_state = 5, .external_lex_state = 2}, + [121] = {.lex_state = 5, .external_lex_state = 2}, + [122] = {.lex_state = 5, .external_lex_state = 2}, + [123] = {.lex_state = 5, .external_lex_state = 2}, + [124] = {.lex_state = 5, .external_lex_state = 2}, + [125] = {.lex_state = 5, .external_lex_state = 2}, + [126] = {.lex_state = 5, .external_lex_state = 2}, + [127] = {.lex_state = 5, .external_lex_state = 2}, + [128] = {.lex_state = 5, .external_lex_state = 2}, + [129] = {.lex_state = 5, .external_lex_state = 2}, + [130] = {.lex_state = 5, .external_lex_state = 2}, + [131] = {.lex_state = 5, .external_lex_state = 2}, + [132] = {.lex_state = 5, .external_lex_state = 2}, + [133] = {.lex_state = 5, .external_lex_state = 2}, + [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}, + [140] = {.lex_state = 5, .external_lex_state = 2}, + [141] = {.lex_state = 5, .external_lex_state = 2}, + [142] = {.lex_state = 5, .external_lex_state = 2}, + [143] = {.lex_state = 5, .external_lex_state = 2}, + [144] = {.lex_state = 5, .external_lex_state = 2}, + [145] = {.lex_state = 5, .external_lex_state = 2}, + [146] = {.lex_state = 5, .external_lex_state = 2}, + [147] = {.lex_state = 5, .external_lex_state = 2}, + [148] = {.lex_state = 5, .external_lex_state = 2}, + [149] = {.lex_state = 5, .external_lex_state = 2}, + [150] = {.lex_state = 5, .external_lex_state = 2}, + [151] = {.lex_state = 5, .external_lex_state = 2}, + [152] = {.lex_state = 5, .external_lex_state = 2}, + [153] = {.lex_state = 5, .external_lex_state = 2}, + [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}, + [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}, + [165] = {.lex_state = 5, .external_lex_state = 2}, + [166] = {.lex_state = 5, .external_lex_state = 2}, + [167] = {.lex_state = 5, .external_lex_state = 2}, + [168] = {.lex_state = 5, .external_lex_state = 2}, + [169] = {.lex_state = 5, .external_lex_state = 2}, + [170] = {.lex_state = 5, .external_lex_state = 2}, + [171] = {.lex_state = 5, .external_lex_state = 2}, + [172] = {.lex_state = 5, .external_lex_state = 2}, + [173] = {.lex_state = 5, .external_lex_state = 2}, + [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}, + [178] = {.lex_state = 5, .external_lex_state = 2}, + [179] = {.lex_state = 5, .external_lex_state = 2}, + [180] = {.lex_state = 5, .external_lex_state = 2}, + [181] = {.lex_state = 6, .external_lex_state = 2}, + [182] = {.lex_state = 6, .external_lex_state = 2}, + [183] = {.lex_state = 6, .external_lex_state = 2}, + [184] = {.lex_state = 6, .external_lex_state = 2}, + [185] = {.lex_state = 6, .external_lex_state = 2}, + [186] = {.lex_state = 6, .external_lex_state = 2}, + [187] = {.lex_state = 6, .external_lex_state = 2}, + [188] = {.lex_state = 6, .external_lex_state = 2}, + [189] = {.lex_state = 6, .external_lex_state = 2}, + [190] = {.lex_state = 6, .external_lex_state = 2}, + [191] = {.lex_state = 5, .external_lex_state = 2}, + [192] = {.lex_state = 5, .external_lex_state = 2}, + [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}, + [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}, + [204] = {.lex_state = 5, .external_lex_state = 2}, + [205] = {.lex_state = 5, .external_lex_state = 2}, + [206] = {.lex_state = 5, .external_lex_state = 2}, + [207] = {.lex_state = 1, .external_lex_state = 2}, + [208] = {.lex_state = 1, .external_lex_state = 2}, + [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}, + [213] = {.lex_state = 1, .external_lex_state = 2}, + [214] = {.lex_state = 1, .external_lex_state = 2}, + [215] = {.lex_state = 1, .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}, + [219] = {.lex_state = 1, .external_lex_state = 2}, + [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}, + [224] = {.lex_state = 1, .external_lex_state = 2}, + [225] = {.lex_state = 1, .external_lex_state = 2}, + [226] = {.lex_state = 1, .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}, + [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}, + [235] = {.lex_state = 1, .external_lex_state = 2}, + [236] = {.lex_state = 1, .external_lex_state = 2}, + [237] = {.lex_state = 5, .external_lex_state = 2}, + [238] = {.lex_state = 5, .external_lex_state = 2}, + [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}, + [244] = {.lex_state = 4, .external_lex_state = 3}, + [245] = {.lex_state = 4, .external_lex_state = 3}, + [246] = {.lex_state = 5, .external_lex_state = 2}, + [247] = {.lex_state = 5, .external_lex_state = 2}, + [248] = {.lex_state = 5, .external_lex_state = 2}, + [249] = {.lex_state = 57, .external_lex_state = 2}, + [250] = {.lex_state = 57, .external_lex_state = 2}, + [251] = {.lex_state = 57, .external_lex_state = 2}, + [252] = {.lex_state = 57, .external_lex_state = 2}, + [253] = {.lex_state = 57, .external_lex_state = 2}, + [254] = {.lex_state = 57, .external_lex_state = 2}, + [255] = {.lex_state = 57, .external_lex_state = 2}, + [256] = {.lex_state = 57, .external_lex_state = 2}, + [257] = {.lex_state = 57, .external_lex_state = 2}, + [258] = {.lex_state = 57, .external_lex_state = 2}, + [259] = {.lex_state = 57, .external_lex_state = 2}, + [260] = {.lex_state = 57, .external_lex_state = 2}, + [261] = {.lex_state = 57, .external_lex_state = 2}, + [262] = {.lex_state = 57, .external_lex_state = 2}, + [263] = {.lex_state = 57, .external_lex_state = 2}, + [264] = {.lex_state = 57, .external_lex_state = 2}, + [265] = {.lex_state = 57, .external_lex_state = 2}, + [266] = {.lex_state = 57, .external_lex_state = 2}, + [267] = {.lex_state = 57, .external_lex_state = 2}, + [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}, + [272] = {.lex_state = 57, .external_lex_state = 2}, + [273] = {.lex_state = 12, .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}, + [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}, + [288] = {.lex_state = 57, .external_lex_state = 2}, + [289] = {.lex_state = 57, .external_lex_state = 2}, + [290] = {.lex_state = 5, .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}, + [294] = {.lex_state = 57, .external_lex_state = 2}, + [295] = {.lex_state = 57, .external_lex_state = 2}, + [296] = {.lex_state = 57, .external_lex_state = 2}, + [297] = {.lex_state = 57, .external_lex_state = 2}, + [298] = {.lex_state = 57, .external_lex_state = 2}, + [299] = {.lex_state = 57, .external_lex_state = 2}, + [300] = {.lex_state = 57, .external_lex_state = 2}, + [301] = {.lex_state = 57, .external_lex_state = 2}, + [302] = {.lex_state = 57, .external_lex_state = 2}, + [303] = {.lex_state = 57, .external_lex_state = 2}, + [304] = {.lex_state = 57, .external_lex_state = 2}, + [305] = {.lex_state = 57, .external_lex_state = 2}, + [306] = {.lex_state = 57, .external_lex_state = 2}, + [307] = {.lex_state = 57, .external_lex_state = 2}, + [308] = {.lex_state = 57, .external_lex_state = 2}, + [309] = {.lex_state = 57, .external_lex_state = 2}, + [310] = {.lex_state = 57, .external_lex_state = 2}, + [311] = {.lex_state = 57, .external_lex_state = 2}, + [312] = {.lex_state = 57, .external_lex_state = 2}, + [313] = {.lex_state = 57, .external_lex_state = 2}, + [314] = {.lex_state = 57, .external_lex_state = 2}, + [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}, + [321] = {.lex_state = 57, .external_lex_state = 2}, + [322] = {.lex_state = 57, .external_lex_state = 2}, + [323] = {.lex_state = 57, .external_lex_state = 2}, + [324] = {.lex_state = 57, .external_lex_state = 2}, + [325] = {.lex_state = 57, .external_lex_state = 2}, + [326] = {.lex_state = 57, .external_lex_state = 2}, + [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}, + [332] = {.lex_state = 57, .external_lex_state = 2}, + [333] = {.lex_state = 12, .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}, + [337] = {.lex_state = 57, .external_lex_state = 2}, + [338] = {.lex_state = 57, .external_lex_state = 2}, + [339] = {.lex_state = 57, .external_lex_state = 2}, + [340] = {.lex_state = 57, .external_lex_state = 2}, + [341] = {.lex_state = 57, .external_lex_state = 2}, + [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}, + [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}, + [352] = {.lex_state = 57, .external_lex_state = 2}, + [353] = {.lex_state = 5, .external_lex_state = 2}, + [354] = {.lex_state = 57, .external_lex_state = 2}, + [355] = {.lex_state = 57, .external_lex_state = 2}, + [356] = {.lex_state = 57, .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}, + [360] = {.lex_state = 57, .external_lex_state = 2}, + [361] = {.lex_state = 57, .external_lex_state = 2}, + [362] = {.lex_state = 57, .external_lex_state = 2}, + [363] = {.lex_state = 57, .external_lex_state = 2}, + [364] = {.lex_state = 57, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [380] = {.lex_state = 57, .external_lex_state = 2}, + [381] = {.lex_state = 57, .external_lex_state = 2}, + [382] = {.lex_state = 57, .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}, + [386] = {.lex_state = 57, .external_lex_state = 2}, + [387] = {.lex_state = 57, .external_lex_state = 2}, + [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}, + [393] = {.lex_state = 57, .external_lex_state = 2}, + [394] = {.lex_state = 57, .external_lex_state = 2}, + [395] = {.lex_state = 57, .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}, + [399] = {.lex_state = 57, .external_lex_state = 2}, + [400] = {.lex_state = 57, .external_lex_state = 2}, + [401] = {.lex_state = 57, .external_lex_state = 2}, + [402] = {.lex_state = 57, .external_lex_state = 2}, + [403] = {.lex_state = 57, .external_lex_state = 2}, + [404] = {.lex_state = 57, .external_lex_state = 2}, + [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}, + [409] = {.lex_state = 57, .external_lex_state = 2}, + [410] = {.lex_state = 57, .external_lex_state = 2}, + [411] = {.lex_state = 57, .external_lex_state = 2}, + [412] = {.lex_state = 57, .external_lex_state = 2}, + [413] = {.lex_state = 57, .external_lex_state = 2}, + [414] = {.lex_state = 57, .external_lex_state = 2}, + [415] = {.lex_state = 57, .external_lex_state = 2}, + [416] = {.lex_state = 57, .external_lex_state = 2}, + [417] = {.lex_state = 57, .external_lex_state = 2}, + [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}, + [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}, + [430] = {.lex_state = 57, .external_lex_state = 2}, + [431] = {.lex_state = 12, .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}, + [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}, + [441] = {.lex_state = 57, .external_lex_state = 2}, + [442] = {.lex_state = 57, .external_lex_state = 2}, + [443] = {.lex_state = 57, .external_lex_state = 2}, + [444] = {.lex_state = 57, .external_lex_state = 2}, + [445] = {.lex_state = 57, .external_lex_state = 2}, + [446] = {.lex_state = 57, .external_lex_state = 2}, + [447] = {.lex_state = 57, .external_lex_state = 2}, + [448] = {.lex_state = 57, .external_lex_state = 2}, + [449] = {.lex_state = 57, .external_lex_state = 2}, + [450] = {.lex_state = 57, .external_lex_state = 2}, + [451] = {.lex_state = 57, .external_lex_state = 2}, + [452] = {.lex_state = 57, .external_lex_state = 2}, + [453] = {.lex_state = 57, .external_lex_state = 2}, + [454] = {.lex_state = 57, .external_lex_state = 2}, + [455] = {.lex_state = 57, .external_lex_state = 2}, + [456] = {.lex_state = 57, .external_lex_state = 2}, + [457] = {.lex_state = 57, .external_lex_state = 2}, + [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}, + [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}, + [491] = {.lex_state = 12, .external_lex_state = 2}, + [492] = {.lex_state = 12, .external_lex_state = 2}, + [493] = {.lex_state = 12, .external_lex_state = 2}, + [494] = {.lex_state = 12, .external_lex_state = 2}, + [495] = {.lex_state = 12, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [557] = {.lex_state = 5, .external_lex_state = 2}, + [558] = {.lex_state = 5, .external_lex_state = 2}, + [559] = {.lex_state = 5, .external_lex_state = 2}, + [560] = {.lex_state = 5, .external_lex_state = 2}, + [561] = {.lex_state = 5, .external_lex_state = 2}, + [562] = {.lex_state = 5, .external_lex_state = 2}, + [563] = {.lex_state = 5, .external_lex_state = 2}, + [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}, + [569] = {.lex_state = 5, .external_lex_state = 2}, + [570] = {.lex_state = 5, .external_lex_state = 2}, + [571] = {.lex_state = 5, .external_lex_state = 2}, + [572] = {.lex_state = 5, .external_lex_state = 2}, + [573] = {.lex_state = 5, .external_lex_state = 2}, + [574] = {.lex_state = 5, .external_lex_state = 2}, + [575] = {.lex_state = 5, .external_lex_state = 2}, + [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}, + [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}, + [589] = {.lex_state = 7, .external_lex_state = 3}, + [590] = {.lex_state = 7, .external_lex_state = 3}, + [591] = {.lex_state = 7, .external_lex_state = 3}, + [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}, + [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}, + [602] = {.lex_state = 7, .external_lex_state = 3}, + [603] = {.lex_state = 7, .external_lex_state = 3}, + [604] = {.lex_state = 7, .external_lex_state = 3}, + [605] = {.lex_state = 7, .external_lex_state = 3}, + [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}, + [610] = {.lex_state = 7, .external_lex_state = 3}, + [611] = {.lex_state = 7, .external_lex_state = 3}, + [612] = {.lex_state = 7, .external_lex_state = 3}, + [613] = {.lex_state = 7, .external_lex_state = 3}, + [614] = {.lex_state = 7, .external_lex_state = 3}, + [615] = {.lex_state = 7, .external_lex_state = 3}, + [616] = {.lex_state = 7, .external_lex_state = 3}, + [617] = {.lex_state = 7, .external_lex_state = 3}, + [618] = {.lex_state = 7, .external_lex_state = 3}, + [619] = {.lex_state = 7, .external_lex_state = 3}, + [620] = {.lex_state = 7, .external_lex_state = 3}, + [621] = {.lex_state = 7, .external_lex_state = 3}, + [622] = {.lex_state = 7, .external_lex_state = 3}, + [623] = {.lex_state = 7, .external_lex_state = 3}, + [624] = {.lex_state = 7, .external_lex_state = 3}, + [625] = {.lex_state = 7, .external_lex_state = 3}, + [626] = {.lex_state = 7, .external_lex_state = 3}, + [627] = {.lex_state = 7, .external_lex_state = 3}, + [628] = {.lex_state = 7, .external_lex_state = 3}, + [629] = {.lex_state = 7, .external_lex_state = 3}, + [630] = {.lex_state = 7, .external_lex_state = 3}, + [631] = {.lex_state = 7, .external_lex_state = 3}, + [632] = {.lex_state = 7, .external_lex_state = 3}, + [633] = {.lex_state = 7, .external_lex_state = 3}, + [634] = {.lex_state = 7, .external_lex_state = 3}, + [635] = {.lex_state = 7, .external_lex_state = 3}, + [636] = {.lex_state = 7, .external_lex_state = 3}, + [637] = {.lex_state = 7, .external_lex_state = 3}, + [638] = {.lex_state = 7, .external_lex_state = 3}, + [639] = {.lex_state = 7, .external_lex_state = 3}, + [640] = {.lex_state = 7, .external_lex_state = 3}, + [641] = {.lex_state = 7, .external_lex_state = 3}, + [642] = {.lex_state = 7, .external_lex_state = 3}, + [643] = {.lex_state = 7, .external_lex_state = 3}, + [644] = {.lex_state = 7, .external_lex_state = 3}, + [645] = {.lex_state = 7, .external_lex_state = 3}, + [646] = {.lex_state = 7, .external_lex_state = 3}, + [647] = {.lex_state = 7, .external_lex_state = 3}, + [648] = {.lex_state = 7, .external_lex_state = 3}, + [649] = {.lex_state = 7, .external_lex_state = 3}, + [650] = {.lex_state = 7, .external_lex_state = 3}, + [651] = {.lex_state = 7, .external_lex_state = 3}, + [652] = {.lex_state = 7, .external_lex_state = 3}, + [653] = {.lex_state = 7, .external_lex_state = 3}, + [654] = {.lex_state = 7, .external_lex_state = 3}, + [655] = {.lex_state = 7, .external_lex_state = 3}, + [656] = {.lex_state = 7, .external_lex_state = 3}, + [657] = {.lex_state = 7, .external_lex_state = 3}, + [658] = {.lex_state = 7, .external_lex_state = 3}, + [659] = {.lex_state = 7, .external_lex_state = 3}, + [660] = {.lex_state = 7, .external_lex_state = 3}, + [661] = {.lex_state = 7, .external_lex_state = 3}, + [662] = {.lex_state = 7, .external_lex_state = 3}, + [663] = {.lex_state = 7, .external_lex_state = 3}, + [664] = {.lex_state = 7, .external_lex_state = 3}, + [665] = {.lex_state = 7, .external_lex_state = 3}, + [666] = {.lex_state = 7, .external_lex_state = 3}, + [667] = {.lex_state = 7, .external_lex_state = 3}, + [668] = {.lex_state = 7, .external_lex_state = 3}, + [669] = {.lex_state = 7, .external_lex_state = 3}, + [670] = {.lex_state = 7, .external_lex_state = 3}, + [671] = {.lex_state = 7, .external_lex_state = 3}, + [672] = {.lex_state = 7, .external_lex_state = 3}, + [673] = {.lex_state = 7, .external_lex_state = 3}, + [674] = {.lex_state = 7, .external_lex_state = 3}, + [675] = {.lex_state = 7, .external_lex_state = 3}, + [676] = {.lex_state = 7, .external_lex_state = 3}, + [677] = {.lex_state = 7, .external_lex_state = 3}, + [678] = {.lex_state = 7, .external_lex_state = 3}, + [679] = {.lex_state = 7, .external_lex_state = 3}, + [680] = {.lex_state = 7, .external_lex_state = 3}, + [681] = {.lex_state = 7, .external_lex_state = 3}, + [682] = {.lex_state = 7, .external_lex_state = 3}, + [683] = {.lex_state = 7, .external_lex_state = 3}, + [684] = {.lex_state = 7, .external_lex_state = 3}, + [685] = {.lex_state = 7, .external_lex_state = 3}, + [686] = {.lex_state = 7, .external_lex_state = 3}, + [687] = {.lex_state = 7, .external_lex_state = 3}, + [688] = {.lex_state = 7, .external_lex_state = 3}, + [689] = {.lex_state = 7, .external_lex_state = 3}, + [690] = {.lex_state = 7, .external_lex_state = 3}, + [691] = {.lex_state = 7, .external_lex_state = 3}, + [692] = {.lex_state = 7, .external_lex_state = 3}, + [693] = {.lex_state = 7, .external_lex_state = 3}, + [694] = {.lex_state = 7, .external_lex_state = 3}, + [695] = {.lex_state = 7, .external_lex_state = 3}, + [696] = {.lex_state = 7, .external_lex_state = 3}, + [697] = {.lex_state = 7, .external_lex_state = 3}, + [698] = {.lex_state = 7, .external_lex_state = 3}, + [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}, + [738] = {.lex_state = 4, .external_lex_state = 3}, + [739] = {.lex_state = 4, .external_lex_state = 3}, + [740] = {.lex_state = 4, .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}, + [745] = {.lex_state = 4, .external_lex_state = 3}, + [746] = {.lex_state = 2, .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}, + [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}, + [762] = {.lex_state = 4, .external_lex_state = 3}, + [763] = {.lex_state = 2, .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}, + [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}, + [776] = {.lex_state = 4, .external_lex_state = 3}, + [777] = {.lex_state = 4, .external_lex_state = 3}, + [778] = {.lex_state = 4, .external_lex_state = 3}, + [779] = {.lex_state = 4, .external_lex_state = 3}, + [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}, + [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}, + [789] = {.lex_state = 4, .external_lex_state = 3}, + [790] = {.lex_state = 4, .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}, + [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}, + [800] = {.lex_state = 4, .external_lex_state = 3}, + [801] = {.lex_state = 4, .external_lex_state = 3}, + [802] = {.lex_state = 4, .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}, + [806] = {.lex_state = 4, .external_lex_state = 3}, + [807] = {.lex_state = 2, .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}, + [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}, + [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}, + [821] = {.lex_state = 4, .external_lex_state = 3}, + [822] = {.lex_state = 2, .external_lex_state = 3}, + [823] = {.lex_state = 2, .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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [855] = {.lex_state = 4, .external_lex_state = 3}, + [856] = {.lex_state = 4, .external_lex_state = 3}, + [857] = {.lex_state = 4, .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}, + [861] = {.lex_state = 4, .external_lex_state = 3}, + [862] = {.lex_state = 4, .external_lex_state = 3}, + [863] = {.lex_state = 4, .external_lex_state = 3}, + [864] = {.lex_state = 4, .external_lex_state = 3}, + [865] = {.lex_state = 4, .external_lex_state = 3}, + [866] = {.lex_state = 4, .external_lex_state = 3}, + [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}, + [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}, + [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}, + [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}, + [886] = {.lex_state = 4, .external_lex_state = 3}, + [887] = {.lex_state = 4, .external_lex_state = 3}, + [888] = {.lex_state = 4, .external_lex_state = 3}, + [889] = {.lex_state = 4, .external_lex_state = 3}, + [890] = {.lex_state = 4, .external_lex_state = 3}, + [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}, + [896] = {.lex_state = 4, .external_lex_state = 3}, + [897] = {.lex_state = 4, .external_lex_state = 3}, + [898] = {.lex_state = 4, .external_lex_state = 3}, + [899] = {.lex_state = 4, .external_lex_state = 3}, + [900] = {.lex_state = 4, .external_lex_state = 3}, + [901] = {.lex_state = 4, .external_lex_state = 3}, + [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}, + [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}, + [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}, + [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}, + [923] = {.lex_state = 4, .external_lex_state = 3}, + [924] = {.lex_state = 4, .external_lex_state = 3}, + [925] = {.lex_state = 2, .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}, + [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}, + [933] = {.lex_state = 4, .external_lex_state = 3}, + [934] = {.lex_state = 4, .external_lex_state = 3}, + [935] = {.lex_state = 4, .external_lex_state = 3}, + [936] = {.lex_state = 4, .external_lex_state = 3}, + [937] = {.lex_state = 4, .external_lex_state = 3}, + [938] = {.lex_state = 4, .external_lex_state = 3}, + [939] = {.lex_state = 4, .external_lex_state = 3}, + [940] = {.lex_state = 4, .external_lex_state = 3}, + [941] = {.lex_state = 4, .external_lex_state = 3}, + [942] = {.lex_state = 4, .external_lex_state = 3}, + [943] = {.lex_state = 4, .external_lex_state = 3}, + [944] = {.lex_state = 4, .external_lex_state = 3}, + [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}, + [949] = {.lex_state = 4, .external_lex_state = 3}, + [950] = {.lex_state = 4, .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}, + [957] = {.lex_state = 4, .external_lex_state = 3}, + [958] = {.lex_state = 4, .external_lex_state = 3}, + [959] = {.lex_state = 4, .external_lex_state = 3}, + [960] = {.lex_state = 4, .external_lex_state = 3}, + [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}, + [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}, + [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}, + [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}, + [1012] = {.lex_state = 2, .external_lex_state = 3}, + [1013] = {.lex_state = 7, .external_lex_state = 3}, + [1014] = {.lex_state = 5, .external_lex_state = 2}, + [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}, + [1021] = {.lex_state = 2, .external_lex_state = 3}, + [1022] = {.lex_state = 2, .external_lex_state = 3}, + [1023] = {.lex_state = 7, .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}, + [1027] = {.lex_state = 2, .external_lex_state = 3}, + [1028] = {.lex_state = 2, .external_lex_state = 3}, + [1029] = {.lex_state = 2, .external_lex_state = 3}, + [1030] = {.lex_state = 2, .external_lex_state = 3}, + [1031] = {.lex_state = 2, .external_lex_state = 3}, + [1032] = {.lex_state = 2, .external_lex_state = 3}, + [1033] = {.lex_state = 2, .external_lex_state = 3}, + [1034] = {.lex_state = 2, .external_lex_state = 3}, + [1035] = {.lex_state = 2, .external_lex_state = 3}, + [1036] = {.lex_state = 2, .external_lex_state = 3}, + [1037] = {.lex_state = 2, .external_lex_state = 3}, + [1038] = {.lex_state = 2, .external_lex_state = 3}, + [1039] = {.lex_state = 2, .external_lex_state = 3}, + [1040] = {.lex_state = 2, .external_lex_state = 3}, + [1041] = {.lex_state = 2, .external_lex_state = 3}, + [1042] = {.lex_state = 2, .external_lex_state = 3}, + [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}, + [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}, + [1053] = {.lex_state = 2, .external_lex_state = 3}, + [1054] = {.lex_state = 2, .external_lex_state = 3}, + [1055] = {.lex_state = 2, .external_lex_state = 3}, + [1056] = {.lex_state = 2, .external_lex_state = 3}, + [1057] = {.lex_state = 2, .external_lex_state = 3}, + [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}, + [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}, + [1066] = {.lex_state = 2, .external_lex_state = 3}, + [1067] = {.lex_state = 2, .external_lex_state = 3}, + [1068] = {.lex_state = 2, .external_lex_state = 3}, + [1069] = {.lex_state = 2, .external_lex_state = 3}, + [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}, + [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}, + [1078] = {.lex_state = 2, .external_lex_state = 3}, + [1079] = {.lex_state = 7, .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}, + [1083] = {.lex_state = 2, .external_lex_state = 3}, + [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}, + [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}, + [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}, + [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}, + [1110] = {.lex_state = 2, .external_lex_state = 3}, + [1111] = {.lex_state = 5, .external_lex_state = 2}, + [1112] = {.lex_state = 2, .external_lex_state = 3}, + [1113] = {.lex_state = 7, .external_lex_state = 3}, + [1114] = {.lex_state = 2, .external_lex_state = 3}, + [1115] = {.lex_state = 7, .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}, + [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}, + [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}, + [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}, + [1152] = {.lex_state = 2, .external_lex_state = 3}, + [1153] = {.lex_state = 2, .external_lex_state = 3}, + [1154] = {.lex_state = 2, .external_lex_state = 3}, + [1155] = {.lex_state = 2, .external_lex_state = 3}, + [1156] = {.lex_state = 2, .external_lex_state = 3}, + [1157] = {.lex_state = 7, .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}, + [1161] = {.lex_state = 2, .external_lex_state = 3}, + [1162] = {.lex_state = 2, .external_lex_state = 3}, + [1163] = {.lex_state = 2, .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}, + [1167] = {.lex_state = 2, .external_lex_state = 3}, + [1168] = {.lex_state = 2, .external_lex_state = 3}, + [1169] = {.lex_state = 2, .external_lex_state = 3}, + [1170] = {.lex_state = 2, .external_lex_state = 3}, + [1171] = {.lex_state = 2, .external_lex_state = 3}, + [1172] = {.lex_state = 2, .external_lex_state = 3}, + [1173] = {.lex_state = 2, .external_lex_state = 3}, + [1174] = {.lex_state = 2, .external_lex_state = 3}, + [1175] = {.lex_state = 2, .external_lex_state = 3}, + [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}, + [1180] = {.lex_state = 2, .external_lex_state = 3}, + [1181] = {.lex_state = 2, .external_lex_state = 3}, + [1182] = {.lex_state = 2, .external_lex_state = 3}, + [1183] = {.lex_state = 2, .external_lex_state = 3}, + [1184] = {.lex_state = 2, .external_lex_state = 3}, + [1185] = {.lex_state = 2, .external_lex_state = 3}, + [1186] = {.lex_state = 2, .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}, + [1190] = {.lex_state = 2, .external_lex_state = 3}, + [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}, + [1195] = {.lex_state = 2, .external_lex_state = 3}, + [1196] = {.lex_state = 2, .external_lex_state = 3}, + [1197] = {.lex_state = 2, .external_lex_state = 3}, + [1198] = {.lex_state = 2, .external_lex_state = 3}, + [1199] = {.lex_state = 2, .external_lex_state = 3}, + [1200] = {.lex_state = 2, .external_lex_state = 3}, + [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}, + [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}, + [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}, + [1219] = {.lex_state = 2, .external_lex_state = 3}, + [1220] = {.lex_state = 2, .external_lex_state = 3}, + [1221] = {.lex_state = 2, .external_lex_state = 3}, + [1222] = {.lex_state = 2, .external_lex_state = 3}, + [1223] = {.lex_state = 2, .external_lex_state = 3}, + [1224] = {.lex_state = 2, .external_lex_state = 3}, + [1225] = {.lex_state = 2, .external_lex_state = 3}, + [1226] = {.lex_state = 2, .external_lex_state = 3}, + [1227] = {.lex_state = 2, .external_lex_state = 3}, + [1228] = {.lex_state = 2, .external_lex_state = 3}, + [1229] = {.lex_state = 2, .external_lex_state = 3}, + [1230] = {.lex_state = 2, .external_lex_state = 3}, + [1231] = {.lex_state = 2, .external_lex_state = 3}, + [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}, + [1283] = {.lex_state = 7, .external_lex_state = 3}, + [1284] = {.lex_state = 7, .external_lex_state = 3}, + [1285] = {.lex_state = 7, .external_lex_state = 3}, + [1286] = {.lex_state = 7, .external_lex_state = 3}, + [1287] = {.lex_state = 7, .external_lex_state = 3}, + [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}, + [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}, + [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}, + [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}, + [1314] = {.lex_state = 9, .external_lex_state = 3}, + [1315] = {.lex_state = 17, .external_lex_state = 3}, + [1316] = {.lex_state = 17, .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}, + [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}, + [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}, + [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}, + [1348] = {.lex_state = 17, .external_lex_state = 3}, + [1349] = {.lex_state = 9, .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}, + [1370] = {.lex_state = 7, .external_lex_state = 3}, + [1371] = {.lex_state = 17, .external_lex_state = 3}, + [1372] = {.lex_state = 17, .external_lex_state = 3}, + [1373] = {.lex_state = 17, .external_lex_state = 3}, + [1374] = {.lex_state = 17, .external_lex_state = 3}, + [1375] = {.lex_state = 17, .external_lex_state = 3}, + [1376] = {.lex_state = 17, .external_lex_state = 3}, + [1377] = {.lex_state = 17, .external_lex_state = 3}, + [1378] = {.lex_state = 17, .external_lex_state = 3}, + [1379] = {.lex_state = 17, .external_lex_state = 3}, + [1380] = {.lex_state = 17, .external_lex_state = 3}, + [1381] = {.lex_state = 17, .external_lex_state = 3}, + [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}, + [1386] = {.lex_state = 17, .external_lex_state = 3}, + [1387] = {.lex_state = 17, .external_lex_state = 3}, + [1388] = {.lex_state = 17, .external_lex_state = 3}, + [1389] = {.lex_state = 17, .external_lex_state = 3}, + [1390] = {.lex_state = 17, .external_lex_state = 3}, + [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}, + [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}, + [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}, + [1416] = {.lex_state = 7, .external_lex_state = 3}, + [1417] = {.lex_state = 9, .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}, + [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}, + [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}, + [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}, + [1476] = {.lex_state = 7, .external_lex_state = 3}, + [1477] = {.lex_state = 17, .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}, + [1483] = {.lex_state = 7, .external_lex_state = 3}, + [1484] = {.lex_state = 14, .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}, + [1491] = {.lex_state = 7, .external_lex_state = 3}, + [1492] = {.lex_state = 7, .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}, + [1497] = {.lex_state = 7, .external_lex_state = 3}, + [1498] = {.lex_state = 17, .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}, + [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}, + [1507] = {.lex_state = 7, .external_lex_state = 3}, + [1508] = {.lex_state = 14, .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}, + [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}, + [1518] = {.lex_state = 7, .external_lex_state = 3}, + [1519] = {.lex_state = 0, .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}, + [1524] = {.lex_state = 7, .external_lex_state = 3}, + [1525] = {.lex_state = 0, .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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [1568] = {.lex_state = 7, .external_lex_state = 3}, + [1569] = {.lex_state = 10, .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}, + [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}, + [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}, + [1584] = {.lex_state = 7, .external_lex_state = 3}, + [1585] = {.lex_state = 4, .external_lex_state = 3}, + [1586] = {.lex_state = 57, .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}, + [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}, + [1598] = {.lex_state = 0, .external_lex_state = 3}, + [1599] = {.lex_state = 7, .external_lex_state = 3}, + [1600] = {.lex_state = 17, .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}, + [1606] = {.lex_state = 7, .external_lex_state = 3}, + [1607] = {.lex_state = 14, .external_lex_state = 3}, + [1608] = {.lex_state = 4, .external_lex_state = 3}, + [1609] = {.lex_state = 7, .external_lex_state = 3}, + [1610] = {.lex_state = 17, .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}, + [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}, + [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}, + [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}, + [1636] = {.lex_state = 7, .external_lex_state = 3}, + [1637] = {.lex_state = 0, .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}, + [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}, + [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}, + [1656] = {.lex_state = 7, .external_lex_state = 3}, + [1657] = {.lex_state = 7, .external_lex_state = 3}, + [1658] = {.lex_state = 7, .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}, + [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}, + [1670] = {.lex_state = 7, .external_lex_state = 3}, + [1671] = {.lex_state = 7, .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}, + [1677] = {.lex_state = 7, .external_lex_state = 3}, + [1678] = {.lex_state = 7, .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}, + [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}, + [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}, + [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}, + [1705] = {.lex_state = 4, .external_lex_state = 3}, + [1706] = {.lex_state = 57, .external_lex_state = 3}, + [1707] = {.lex_state = 7, .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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [1823] = {.lex_state = 57, .external_lex_state = 3}, + [1824] = {.lex_state = 17, .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}, + [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}, + [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}, + [1849] = {.lex_state = 0, .external_lex_state = 3}, + [1850] = {.lex_state = 0, .external_lex_state = 3}, + [1851] = {.lex_state = 0, .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}, + [1856] = {.lex_state = 0, .external_lex_state = 3}, + [1857] = {.lex_state = 0, .external_lex_state = 3}, + [1858] = {.lex_state = 57, .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}, + [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}, + [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}, + [1882] = {.lex_state = 0, .external_lex_state = 3}, + [1883] = {.lex_state = 57, .external_lex_state = 3}, + [1884] = {.lex_state = 0, .external_lex_state = 3}, + [1885] = {.lex_state = 57, .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}, + [1899] = {.lex_state = 0, .external_lex_state = 3}, + [1900] = {.lex_state = 0, .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}, + [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}, + [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}, + [1920] = {.lex_state = 0, .external_lex_state = 3}, + [1921] = {.lex_state = 0, .external_lex_state = 3}, + [1922] = {.lex_state = 57, .external_lex_state = 3}, + [1923] = {.lex_state = 0, .external_lex_state = 3}, + [1924] = {.lex_state = 0, .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}, + [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}, + [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}, + [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}, + [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}, + [1950] = {.lex_state = 0, .external_lex_state = 3}, + [1951] = {.lex_state = 7, .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}, + [1956] = {.lex_state = 0, .external_lex_state = 3}, + [1957] = {.lex_state = 0, .external_lex_state = 3}, + [1958] = {.lex_state = 57, .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}, + [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}, + [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}, + [1976] = {.lex_state = 0, .external_lex_state = 3}, + [1977] = {.lex_state = 0, .external_lex_state = 3}, + [1978] = {.lex_state = 0, .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}, + [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}, + [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}, + [2000] = {.lex_state = 0, .external_lex_state = 3}, + [2001] = {.lex_state = 57, .external_lex_state = 3}, + [2002] = {.lex_state = 0, .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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [2040] = {.lex_state = 0, .external_lex_state = 3}, + [2041] = {.lex_state = 0, .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}, + [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}, + [2057] = {.lex_state = 0, .external_lex_state = 3}, + [2058] = {.lex_state = 0, .external_lex_state = 3}, + [2059] = {.lex_state = 0, .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}, + [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}, + [2068] = {.lex_state = 0, .external_lex_state = 3}, + [2069] = {.lex_state = 0, .external_lex_state = 3}, + [2070] = {.lex_state = 7, .external_lex_state = 3}, + [2071] = {.lex_state = 0, .external_lex_state = 3}, + [2072] = {.lex_state = 57, .external_lex_state = 3}, + [2073] = {.lex_state = 0, .external_lex_state = 3}, + [2074] = {.lex_state = 0, .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}, + [2078] = {.lex_state = 0, .external_lex_state = 3}, + [2079] = {.lex_state = 57, .external_lex_state = 3}, + [2080] = {.lex_state = 57, .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}, + [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}, + [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}, + [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}, + [2099] = {.lex_state = 57, .external_lex_state = 3}, + [2100] = {.lex_state = 57, .external_lex_state = 3}, + [2101] = {.lex_state = 0, .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}, + [2106] = {.lex_state = 0, .external_lex_state = 3}, + [2107] = {.lex_state = 57, .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}, + [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}, + [2123] = {.lex_state = 0, .external_lex_state = 3}, + [2124] = {.lex_state = 7, .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}, + [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}, + [2141] = {.lex_state = 0, .external_lex_state = 3}, + [2142] = {.lex_state = 0, .external_lex_state = 3}, + [2143] = {.lex_state = 57, .external_lex_state = 3}, + [2144] = {.lex_state = 7, .external_lex_state = 3}, + [2145] = {.lex_state = 7, .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}, + [2150] = {.lex_state = 0, .external_lex_state = 3}, + [2151] = {.lex_state = 0, .external_lex_state = 3}, + [2152] = {.lex_state = 0, .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}, + [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}, + [2161] = {.lex_state = 0, .external_lex_state = 3}, + [2162] = {.lex_state = 57, .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}, + [2167] = {.lex_state = 0, .external_lex_state = 3}, + [2168] = {.lex_state = 0, .external_lex_state = 3}, + [2169] = {.lex_state = 0, .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}, + [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}, + [2178] = {.lex_state = 0, .external_lex_state = 3}, + [2179] = {.lex_state = 0, .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}, + [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}, + [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}, + [2198] = {.lex_state = 0, .external_lex_state = 3}, + [2199] = {.lex_state = 7, .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}, + [2203] = {.lex_state = 0, .external_lex_state = 3}, + [2204] = {.lex_state = 0, .external_lex_state = 3}, + [2205] = {.lex_state = 0, .external_lex_state = 3}, + [2206] = {.lex_state = 0, .external_lex_state = 3}, + [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}, + [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}, + [2215] = {.lex_state = 0, .external_lex_state = 3}, + [2216] = {.lex_state = 0, .external_lex_state = 3}, + [2217] = {.lex_state = 57, .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}, + [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}, + [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}, + [2231] = {.lex_state = 0, .external_lex_state = 3}, + [2232] = {.lex_state = 0, .external_lex_state = 3}, + [2233] = {.lex_state = 0, .external_lex_state = 3}, + [2234] = {.lex_state = 0, .external_lex_state = 3}, + [2235] = {.lex_state = 0, .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}, + [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}, + [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}, + [2255] = {.lex_state = 0, .external_lex_state = 3}, + [2256] = {.lex_state = 7, .external_lex_state = 3}, + [2257] = {.lex_state = 57, .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}, + [2264] = {.lex_state = 7, .external_lex_state = 3}, + [2265] = {.lex_state = 7, .external_lex_state = 3}, + [2266] = {.lex_state = 7, .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}, + [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}, + [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}, + [2284] = {.lex_state = 0, .external_lex_state = 3}, + [2285] = {.lex_state = 7, .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}, + [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}, + [2296] = {.lex_state = 7, .external_lex_state = 3}, + [2297] = {.lex_state = 7, .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}, + [2304] = {.lex_state = 7, .external_lex_state = 3}, + [2305] = {.lex_state = 7, .external_lex_state = 3}, + [2306] = {.lex_state = 0, .external_lex_state = 3}, + [2307] = {.lex_state = 7, .external_lex_state = 3}, + [2308] = {.lex_state = 7, .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}, + [2313] = {.lex_state = 0, .external_lex_state = 3}, + [2314] = {.lex_state = 7, .external_lex_state = 3}, + [2315] = {.lex_state = 7, .external_lex_state = 3}, + [2316] = {.lex_state = 7, .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}, + [2321] = {.lex_state = 0, .external_lex_state = 3}, + [2322] = {.lex_state = 0, .external_lex_state = 3}, + [2323] = {.lex_state = 0, .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}, + [2333] = {.lex_state = 7, .external_lex_state = 3}, + [2334] = {.lex_state = 7, .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}, + [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}, + [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}, + [2350] = {.lex_state = 7, .external_lex_state = 3}, + [2351] = {.lex_state = 7, .external_lex_state = 3}, + [2352] = {.lex_state = 0, .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}, + [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}, + [2364] = {.lex_state = 0, .external_lex_state = 3}, + [2365] = {.lex_state = 0, .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}, + [2371] = {.lex_state = 7, .external_lex_state = 3}, + [2372] = {.lex_state = 10, .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}, + [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}, + [2383] = {.lex_state = 0, .external_lex_state = 3}, + [2384] = {.lex_state = 0, .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}, + [2390] = {.lex_state = 7, .external_lex_state = 3}, + [2391] = {.lex_state = 0, .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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [2428] = {.lex_state = 0, .external_lex_state = 3}, + [2429] = {.lex_state = 0, .external_lex_state = 3}, + [2430] = {.lex_state = 0, .external_lex_state = 3}, + [2431] = {.lex_state = 0, .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}, + [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}, + [2440] = {.lex_state = 0, .external_lex_state = 3}, + [2441] = {.lex_state = 10, .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}, + [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}, + [2451] = {.lex_state = 0, .external_lex_state = 3}, + [2452] = {.lex_state = 10, .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}, + [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}, + [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}, + [2473] = {.lex_state = 7, .external_lex_state = 3}, + [2474] = {.lex_state = 7, .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}, + [2479] = {.lex_state = 0, .external_lex_state = 3}, +}; + +enum { + ts_external_token__string_content = 0, + ts_external_token_raw_string_literal = 1, + ts_external_token_float_literal = 2, + ts_external_token_block_comment = 3, +}; + +static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__string_content] = sym__string_content, + [ts_external_token_raw_string_literal] = sym_raw_string_literal, + [ts_external_token_float_literal] = sym_float_literal, + [ts_external_token_block_comment] = sym_block_comment, +}; + +static bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__string_content] = true, + [ts_external_token_raw_string_literal] = true, + [ts_external_token_float_literal] = true, + [ts_external_token_block_comment] = true, + }, + [2] = { + [ts_external_token_raw_string_literal] = true, + [ts_external_token_float_literal] = true, + [ts_external_token_block_comment] = true, + }, + [3] = { + [ts_external_token_block_comment] = true, + }, + [4] = { + [ts_external_token__string_content] = true, + [ts_external_token_block_comment] = true, + }, + [5] = { + [ts_external_token_float_literal] = true, + [ts_external_token_block_comment] = true, + }, +}; + +static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_macro_rules_BANG] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_EQ_GT] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_block] = ACTIONS(1), + [anon_sym_expr] = ACTIONS(1), + [anon_sym_ident] = ACTIONS(1), + [anon_sym_item] = ACTIONS(1), + [anon_sym_lifetime] = ACTIONS(1), + [anon_sym_literal] = ACTIONS(1), + [anon_sym_meta] = ACTIONS(1), + [anon_sym_pat] = ACTIONS(1), + [anon_sym_path] = ACTIONS(1), + [anon_sym_stmt] = ACTIONS(1), + [anon_sym_tt] = ACTIONS(1), + [anon_sym_ty] = ACTIONS(1), + [anon_sym_vis] = ACTIONS(1), + [anon_sym_u8] = ACTIONS(1), + [anon_sym_i8] = ACTIONS(1), + [anon_sym_u16] = ACTIONS(1), + [anon_sym_i16] = ACTIONS(1), + [anon_sym_u32] = ACTIONS(1), + [anon_sym_i32] = ACTIONS(1), + [anon_sym_u64] = ACTIONS(1), + [anon_sym_i64] = ACTIONS(1), + [anon_sym_u128] = ACTIONS(1), + [anon_sym_i128] = ACTIONS(1), + [anon_sym_isize] = ACTIONS(1), + [anon_sym_usize] = ACTIONS(1), + [anon_sym_f32] = ACTIONS(1), + [anon_sym_f64] = ACTIONS(1), + [anon_sym_bool] = ACTIONS(1), + [anon_sym_str] = ACTIONS(1), + [anon_sym_char] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), + [anon_sym_async] = ACTIONS(1), + [anon_sym_await] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_default] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_fn] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_impl] = ACTIONS(1), + [anon_sym_let] = ACTIONS(1), + [anon_sym_loop] = ACTIONS(1), + [anon_sym_match] = ACTIONS(1), + [anon_sym_mod] = ACTIONS(1), + [anon_sym_pub] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_trait] = ACTIONS(1), + [anon_sym_type] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_unsafe] = ACTIONS(1), + [anon_sym_use] = ACTIONS(1), + [anon_sym_where] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_ref] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_COLON_COLON] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_LT2] = ACTIONS(1), + [anon_sym_dyn] = ACTIONS(1), + [sym_mutable_specifier] = ACTIONS(1), + [anon_sym_DOT_DOT] = ACTIONS(1), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_move] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [sym_integer_literal] = ACTIONS(1), + [aux_sym_string_literal_token1] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [sym_char_literal] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), + [anon_sym_true] = ACTIONS(1), + [anon_sym_false] = ACTIONS(1), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1), + [sym_super] = ACTIONS(1), + [sym_crate] = ACTIONS(1), + [sym_metavariable] = ACTIONS(1), + [sym__string_content] = ACTIONS(1), + [sym_raw_string_literal] = ACTIONS(1), + [sym_float_literal] = ACTIONS(1), + [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_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(8), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [ts_builtin_sym_end] = ACTIONS(5), + [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_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(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [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(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [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_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(7), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [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(103), + [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(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [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(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [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_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(14), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [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(105), + [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(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [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(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [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_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(6), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [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(107), + [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(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [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(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [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_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(3), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [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(109), + [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(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [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(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [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_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(14), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [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(111), + [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(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [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(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [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_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(14), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [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_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(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [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(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [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), + [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(115), + [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_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(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [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(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [9] = { + [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(1139), + [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(14), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [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_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(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [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(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [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), + [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(14), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [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_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(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [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(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [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), + [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(10), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [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_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(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [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(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [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), + [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(14), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [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_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(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [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(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [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), + [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(12), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [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_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(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [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(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [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_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(9), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [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), + [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(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [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(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [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_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_EQ_GT] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(277), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_QMARK] = ACTIONS(277), + [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_as] = ACTIONS(283), + [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(303), + [anon_sym_EQ] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(283), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(277), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_CARET] = ACTIONS(283), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(283), + [anon_sym_GT_GT] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_PLUS_EQ] = ACTIONS(277), + [anon_sym_DASH_EQ] = ACTIONS(277), + [anon_sym_STAR_EQ] = ACTIONS(277), + [anon_sym_SLASH_EQ] = ACTIONS(277), + [anon_sym_PERCENT_EQ] = ACTIONS(277), + [anon_sym_AMP_EQ] = ACTIONS(277), + [anon_sym_PIPE_EQ] = ACTIONS(277), + [anon_sym_CARET_EQ] = ACTIONS(277), + [anon_sym_LT_LT_EQ] = ACTIONS(277), + [anon_sym_GT_GT_EQ] = ACTIONS(277), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(283), + [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), + }, + [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_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(305), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_EQ_GT] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_RBRACK] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_STAR] = ACTIONS(307), + [anon_sym_QMARK] = ACTIONS(305), + [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(309), + [anon_sym_as] = ACTIONS(307), + [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(303), + [anon_sym_EQ] = ACTIONS(307), + [anon_sym_COMMA] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(305), + [anon_sym_DOT_DOT] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_AMP_AMP] = ACTIONS(305), + [anon_sym_PIPE_PIPE] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(307), + [anon_sym_CARET] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(307), + [anon_sym_SLASH] = ACTIONS(307), + [anon_sym_PERCENT] = ACTIONS(307), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(307), + [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), + }, + [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_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(311), + [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_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_as] = ACTIONS(313), + [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(303), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [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_move] = ACTIONS(87), + [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(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), + }, + [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_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_RPAREN] = ACTIONS(323), + [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_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_as] = ACTIONS(325), + [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(303), + [anon_sym_EQ] = ACTIONS(325), + [anon_sym_COMMA] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [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_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_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(325), + [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), + }, + [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_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_EQ_GT] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(327), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_QMARK] = ACTIONS(327), + [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_as] = ACTIONS(329), + [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(303), + [anon_sym_EQ] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(327), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(319), + [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_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(87), + [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(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), + }, + [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_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_QMARK] = ACTIONS(277), + [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(283), + [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(283), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(283), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(277), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_CARET] = ACTIONS(283), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(283), + [anon_sym_GT_GT] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_PLUS_EQ] = ACTIONS(277), + [anon_sym_DASH_EQ] = ACTIONS(277), + [anon_sym_STAR_EQ] = ACTIONS(277), + [anon_sym_SLASH_EQ] = ACTIONS(277), + [anon_sym_PERCENT_EQ] = ACTIONS(277), + [anon_sym_AMP_EQ] = ACTIONS(277), + [anon_sym_PIPE_EQ] = ACTIONS(277), + [anon_sym_CARET_EQ] = ACTIONS(277), + [anon_sym_LT_LT_EQ] = ACTIONS(277), + [anon_sym_GT_GT_EQ] = ACTIONS(277), + [anon_sym_move] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(283), + [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), + }, + [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_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_STAR] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(311), + [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(313), + [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(313), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT] = ACTIONS(355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [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_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_move] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(325), + [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(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), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_STAR] = ACTIONS(307), + [anon_sym_QMARK] = ACTIONS(305), + [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(309), + [anon_sym_as] = ACTIONS(307), + [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(307), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(305), + [anon_sym_DOT_DOT] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_AMP_AMP] = ACTIONS(305), + [anon_sym_PIPE_PIPE] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(307), + [anon_sym_CARET] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(307), + [anon_sym_SLASH] = ACTIONS(307), + [anon_sym_PERCENT] = ACTIONS(307), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_move] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(307), + [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_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(357), + [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_COMMA] = ACTIONS(361), + [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), + }, + [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_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(363), + [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_COMMA] = ACTIONS(365), + [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), + }, + [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), + [aux_sym_enum_variant_list_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(367), + [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_COMMA] = ACTIONS(369), + [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), + }, + [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_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(371), + [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), + }, + [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_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(373), + [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), + }, + [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), + [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), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(381), + [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), + }, + [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_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(387), + [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), + }, + [36] = { + [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_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_SQUOTE] = ACTIONS(391), + [anon_sym_as] = 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(391), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_extern] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [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_move] = 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), + }, + [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), + [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_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = 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_as] = 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(395), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_extern] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_COLON_COLON] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_else] = ACTIONS(395), + [anon_sym_move] = ACTIONS(395), + [anon_sym_DOT] = 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), + }, + [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_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), + }, + [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_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), + }, + [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), + [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), + }, + [43] = { + [ts_builtin_sym_end] = ACTIONS(401), + [sym_identifier] = ACTIONS(403), + [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_macro_rules_BANG] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_LBRACE] = 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_SQUOTE] = ACTIONS(403), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(403), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(403), + [anon_sym_default] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(403), + [anon_sym_fn] = ACTIONS(403), + [anon_sym_for] = ACTIONS(403), + [anon_sym_if] = ACTIONS(403), + [anon_sym_impl] = ACTIONS(403), + [anon_sym_let] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_match] = ACTIONS(403), + [anon_sym_mod] = ACTIONS(403), + [anon_sym_pub] = ACTIONS(403), + [anon_sym_return] = ACTIONS(403), + [anon_sym_static] = ACTIONS(403), + [anon_sym_struct] = ACTIONS(403), + [anon_sym_trait] = ACTIONS(403), + [anon_sym_type] = ACTIONS(403), + [anon_sym_union] = ACTIONS(403), + [anon_sym_unsafe] = ACTIONS(403), + [anon_sym_use] = ACTIONS(403), + [anon_sym_while] = ACTIONS(403), + [anon_sym_POUND] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_extern] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [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_move] = ACTIONS(403), + [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), + }, + [44] = { + [ts_builtin_sym_end] = ACTIONS(405), + [sym_identifier] = ACTIONS(407), + [anon_sym_SEMI] = ACTIONS(405), + [anon_sym_macro_rules_BANG] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(405), + [anon_sym_u8] = ACTIONS(407), + [anon_sym_i8] = ACTIONS(407), + [anon_sym_u16] = ACTIONS(407), + [anon_sym_i16] = ACTIONS(407), + [anon_sym_u32] = ACTIONS(407), + [anon_sym_i32] = ACTIONS(407), + [anon_sym_u64] = ACTIONS(407), + [anon_sym_i64] = ACTIONS(407), + [anon_sym_u128] = ACTIONS(407), + [anon_sym_i128] = ACTIONS(407), + [anon_sym_isize] = ACTIONS(407), + [anon_sym_usize] = ACTIONS(407), + [anon_sym_f32] = ACTIONS(407), + [anon_sym_f64] = ACTIONS(407), + [anon_sym_bool] = ACTIONS(407), + [anon_sym_str] = ACTIONS(407), + [anon_sym_char] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(407), + [anon_sym_as] = ACTIONS(407), + [anon_sym_async] = ACTIONS(407), + [anon_sym_break] = ACTIONS(407), + [anon_sym_const] = ACTIONS(407), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(407), + [anon_sym_enum] = ACTIONS(407), + [anon_sym_fn] = ACTIONS(407), + [anon_sym_for] = ACTIONS(407), + [anon_sym_if] = ACTIONS(407), + [anon_sym_impl] = ACTIONS(407), + [anon_sym_let] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(407), + [anon_sym_match] = ACTIONS(407), + [anon_sym_mod] = ACTIONS(407), + [anon_sym_pub] = ACTIONS(407), + [anon_sym_return] = ACTIONS(407), + [anon_sym_static] = ACTIONS(407), + [anon_sym_struct] = ACTIONS(407), + [anon_sym_trait] = ACTIONS(407), + [anon_sym_type] = ACTIONS(407), + [anon_sym_union] = ACTIONS(407), + [anon_sym_unsafe] = ACTIONS(407), + [anon_sym_use] = ACTIONS(407), + [anon_sym_while] = ACTIONS(407), + [anon_sym_POUND] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_extern] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(405), + [anon_sym_AMP] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_AMP_AMP] = ACTIONS(405), + [anon_sym_PIPE_PIPE] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(407), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(405), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_SLASH] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_PLUS_EQ] = ACTIONS(405), + [anon_sym_DASH_EQ] = ACTIONS(405), + [anon_sym_STAR_EQ] = ACTIONS(405), + [anon_sym_SLASH_EQ] = ACTIONS(405), + [anon_sym_PERCENT_EQ] = ACTIONS(405), + [anon_sym_AMP_EQ] = ACTIONS(405), + [anon_sym_PIPE_EQ] = ACTIONS(405), + [anon_sym_CARET_EQ] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(405), + [anon_sym_GT_GT_EQ] = ACTIONS(405), + [anon_sym_move] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(405), + [aux_sym_string_literal_token1] = ACTIONS(405), + [sym_char_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(407), + [sym_super] = ACTIONS(407), + [sym_crate] = ACTIONS(407), + [sym_metavariable] = ACTIONS(405), + [sym_raw_string_literal] = ACTIONS(405), + [sym_float_literal] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + }, + [45] = { + [ts_builtin_sym_end] = ACTIONS(409), + [sym_identifier] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [anon_sym_macro_rules_BANG] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(409), + [anon_sym_LBRACE] = 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_SQUOTE] = ACTIONS(411), + [anon_sym_as] = ACTIONS(411), + [anon_sym_async] = ACTIONS(411), + [anon_sym_break] = ACTIONS(411), + [anon_sym_const] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(411), + [anon_sym_default] = ACTIONS(411), + [anon_sym_enum] = ACTIONS(411), + [anon_sym_fn] = ACTIONS(411), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(411), + [anon_sym_impl] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(411), + [anon_sym_match] = ACTIONS(411), + [anon_sym_mod] = ACTIONS(411), + [anon_sym_pub] = ACTIONS(411), + [anon_sym_return] = ACTIONS(411), + [anon_sym_static] = ACTIONS(411), + [anon_sym_struct] = ACTIONS(411), + [anon_sym_trait] = ACTIONS(411), + [anon_sym_type] = ACTIONS(411), + [anon_sym_union] = ACTIONS(411), + [anon_sym_unsafe] = ACTIONS(411), + [anon_sym_use] = ACTIONS(411), + [anon_sym_while] = ACTIONS(411), + [anon_sym_POUND] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_extern] = ACTIONS(411), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_COLON_COLON] = ACTIONS(409), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [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_move] = ACTIONS(411), + [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), + }, + [46] = { + [ts_builtin_sym_end] = ACTIONS(413), + [sym_identifier] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_macro_rules_BANG] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = 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_SQUOTE] = ACTIONS(415), + [anon_sym_as] = ACTIONS(415), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(415), + [anon_sym_const] = ACTIONS(415), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_default] = ACTIONS(415), + [anon_sym_enum] = ACTIONS(415), + [anon_sym_fn] = ACTIONS(415), + [anon_sym_for] = ACTIONS(415), + [anon_sym_if] = ACTIONS(415), + [anon_sym_impl] = ACTIONS(415), + [anon_sym_let] = ACTIONS(415), + [anon_sym_loop] = ACTIONS(415), + [anon_sym_match] = ACTIONS(415), + [anon_sym_mod] = ACTIONS(415), + [anon_sym_pub] = ACTIONS(415), + [anon_sym_return] = ACTIONS(415), + [anon_sym_static] = ACTIONS(415), + [anon_sym_struct] = ACTIONS(415), + [anon_sym_trait] = ACTIONS(415), + [anon_sym_type] = ACTIONS(415), + [anon_sym_union] = ACTIONS(415), + [anon_sym_unsafe] = ACTIONS(415), + [anon_sym_use] = ACTIONS(415), + [anon_sym_while] = ACTIONS(415), + [anon_sym_POUND] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_extern] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(413), + [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_move] = ACTIONS(415), + [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), + }, + [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_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(421), + [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), + }, + [49] = { + [ts_builtin_sym_end] = ACTIONS(423), + [sym_identifier] = ACTIONS(425), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_macro_rules_BANG] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(423), + [anon_sym_LBRACE] = 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_SQUOTE] = ACTIONS(425), + [anon_sym_as] = ACTIONS(425), + [anon_sym_async] = ACTIONS(425), + [anon_sym_break] = ACTIONS(425), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(425), + [anon_sym_default] = ACTIONS(425), + [anon_sym_enum] = ACTIONS(425), + [anon_sym_fn] = ACTIONS(425), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(425), + [anon_sym_impl] = ACTIONS(425), + [anon_sym_let] = ACTIONS(425), + [anon_sym_loop] = ACTIONS(425), + [anon_sym_match] = ACTIONS(425), + [anon_sym_mod] = ACTIONS(425), + [anon_sym_pub] = ACTIONS(425), + [anon_sym_return] = ACTIONS(425), + [anon_sym_static] = ACTIONS(425), + [anon_sym_struct] = ACTIONS(425), + [anon_sym_trait] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(425), + [anon_sym_use] = ACTIONS(425), + [anon_sym_while] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(423), + [anon_sym_BANG] = ACTIONS(425), + [anon_sym_EQ] = ACTIONS(425), + [anon_sym_extern] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(425), + [anon_sym_COLON_COLON] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(423), + [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_move] = ACTIONS(425), + [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), + [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_block_comment] = ACTIONS(3), + }, + [50] = { + [ts_builtin_sym_end] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_macro_rules_BANG] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = 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_SQUOTE] = ACTIONS(429), + [anon_sym_as] = ACTIONS(429), + [anon_sym_async] = 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_while] = ACTIONS(429), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(429), + [anon_sym_extern] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_COLON_COLON] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(427), + [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_move] = ACTIONS(429), + [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), + }, + [51] = { + [ts_builtin_sym_end] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_macro_rules_BANG] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_u8] = ACTIONS(433), + [anon_sym_i8] = ACTIONS(433), + [anon_sym_u16] = ACTIONS(433), + [anon_sym_i16] = ACTIONS(433), + [anon_sym_u32] = ACTIONS(433), + [anon_sym_i32] = ACTIONS(433), + [anon_sym_u64] = ACTIONS(433), + [anon_sym_i64] = ACTIONS(433), + [anon_sym_u128] = ACTIONS(433), + [anon_sym_i128] = ACTIONS(433), + [anon_sym_isize] = ACTIONS(433), + [anon_sym_usize] = ACTIONS(433), + [anon_sym_f32] = ACTIONS(433), + [anon_sym_f64] = ACTIONS(433), + [anon_sym_bool] = ACTIONS(433), + [anon_sym_str] = ACTIONS(433), + [anon_sym_char] = ACTIONS(433), + [anon_sym_SQUOTE] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_async] = ACTIONS(433), + [anon_sym_break] = ACTIONS(433), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(433), + [anon_sym_enum] = ACTIONS(433), + [anon_sym_fn] = ACTIONS(433), + [anon_sym_for] = ACTIONS(433), + [anon_sym_if] = ACTIONS(433), + [anon_sym_impl] = ACTIONS(433), + [anon_sym_let] = ACTIONS(433), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(433), + [anon_sym_mod] = ACTIONS(433), + [anon_sym_pub] = ACTIONS(433), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(433), + [anon_sym_struct] = ACTIONS(433), + [anon_sym_trait] = ACTIONS(433), + [anon_sym_type] = ACTIONS(433), + [anon_sym_union] = ACTIONS(433), + [anon_sym_unsafe] = ACTIONS(433), + [anon_sym_use] = ACTIONS(433), + [anon_sym_while] = ACTIONS(433), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_EQ] = ACTIONS(433), + [anon_sym_extern] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(433), + [anon_sym_COLON_COLON] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [anon_sym_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(431), + [anon_sym_PIPE_PIPE] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ] = ACTIONS(431), + [anon_sym_LT_EQ] = ACTIONS(431), + [anon_sym_GT_EQ] = ACTIONS(431), + [anon_sym_LT_LT] = ACTIONS(433), + [anon_sym_GT_GT] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(433), + [anon_sym_PERCENT] = ACTIONS(433), + [anon_sym_PLUS_EQ] = ACTIONS(431), + [anon_sym_DASH_EQ] = ACTIONS(431), + [anon_sym_STAR_EQ] = ACTIONS(431), + [anon_sym_SLASH_EQ] = ACTIONS(431), + [anon_sym_PERCENT_EQ] = ACTIONS(431), + [anon_sym_AMP_EQ] = ACTIONS(431), + [anon_sym_PIPE_EQ] = ACTIONS(431), + [anon_sym_CARET_EQ] = ACTIONS(431), + [anon_sym_LT_LT_EQ] = ACTIONS(431), + [anon_sym_GT_GT_EQ] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_DOT] = ACTIONS(433), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(431), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(433), + [anon_sym_false] = ACTIONS(433), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(433), + [sym_super] = ACTIONS(433), + [sym_crate] = ACTIONS(433), + [sym_metavariable] = ACTIONS(431), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), + [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_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), + [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), + [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), + [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_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), + [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), + [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_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(483), + [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), + }, + [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), + [sym_integer_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(565), + [sym_char_literal] = ACTIONS(562), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(571), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(577), + [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), + [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), + [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), + [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), + [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(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(608), + [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), + }, + [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_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(614), + [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), + }, + [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_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_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_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), + }, + [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), + [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(618), + [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), + }, + [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_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(620), + [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), + }, + [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_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(622), + [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), + }, + [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_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), + [sym_mutable_specifier] = ACTIONS(626), + [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), + }, + [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), + [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_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), + }, + [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), + [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_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_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), + }, + [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), + [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(632), + [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), + }, + [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), + [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(634), + [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), + }, + [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), + [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_DASH_GT] = ACTIONS(630), + [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_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), + }, + [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), + [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_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), + }, + [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), + [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_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_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), + }, + [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), + [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), + [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), + }, + [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), + [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), + [sym_mutable_specifier] = ACTIONS(640), + [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), + }, + [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), + [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(642), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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(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), + [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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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_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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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_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), + }, + [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_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), + }, + [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), + [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(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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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), + [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), + }, + [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_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), + }, + [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), + [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), + [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_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), + }, + [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_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), + }, + [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_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), + }, + [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), + [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_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(742), + [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), + [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), + [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_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(742), + [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), + [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), + [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_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(742), + [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), + [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), + [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_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(742), + [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), + [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), + [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_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(742), + [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), + [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), + [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_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(742), + [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), + [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), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(742), + [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), + [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), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(742), + [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), + [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), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(742), + [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), + [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), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(742), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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_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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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_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), + [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), + [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), + [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), + [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_identifier] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(862), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(860), + [anon_sym_i8] = ACTIONS(860), + [anon_sym_u16] = ACTIONS(860), + [anon_sym_i16] = ACTIONS(860), + [anon_sym_u32] = ACTIONS(860), + [anon_sym_i32] = ACTIONS(860), + [anon_sym_u64] = ACTIONS(860), + [anon_sym_i64] = ACTIONS(860), + [anon_sym_u128] = ACTIONS(860), + [anon_sym_i128] = ACTIONS(860), + [anon_sym_isize] = ACTIONS(860), + [anon_sym_usize] = ACTIONS(860), + [anon_sym_f32] = ACTIONS(860), + [anon_sym_f64] = ACTIONS(860), + [anon_sym_bool] = ACTIONS(860), + [anon_sym_str] = ACTIONS(860), + [anon_sym_char] = ACTIONS(860), + [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_async] = ACTIONS(860), + [anon_sym_break] = ACTIONS(860), + [anon_sym_const] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_default] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_if] = ACTIONS(860), + [anon_sym_loop] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_return] = ACTIONS(860), + [anon_sym_union] = ACTIONS(860), + [anon_sym_unsafe] = ACTIONS(860), + [anon_sym_while] = ACTIONS(860), + [anon_sym_BANG] = ACTIONS(862), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(862), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(862), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(862), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(862), + [anon_sym_move] = ACTIONS(860), + [sym_integer_literal] = ACTIONS(862), + [aux_sym_string_literal_token1] = ACTIONS(862), + [sym_char_literal] = ACTIONS(862), + [anon_sym_true] = ACTIONS(860), + [anon_sym_false] = ACTIONS(860), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_crate] = ACTIONS(860), + [sym_metavariable] = ACTIONS(862), + [sym_raw_string_literal] = ACTIONS(862), + [sym_float_literal] = ACTIONS(862), + [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), + [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), + [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), + }, + [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), + [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), + [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_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), + [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_as] = ACTIONS(399), + [anon_sym_const] = ACTIONS(399), + [anon_sym_default] = ACTIONS(399), + [anon_sym_union] = ACTIONS(399), + [anon_sym_POUND] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_ref] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym__] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [sym_mutable_specifier] = ACTIONS(399), + [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_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), + }, + [211] = { + [sym_identifier] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = 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_as] = ACTIONS(395), + [anon_sym_const] = ACTIONS(395), + [anon_sym_default] = ACTIONS(395), + [anon_sym_union] = ACTIONS(395), + [anon_sym_POUND] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(393), + [anon_sym_ref] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_COLON_COLON] = ACTIONS(393), + [anon_sym__] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [sym_mutable_specifier] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_else] = ACTIONS(395), + [anon_sym_DOT] = 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), + }, + [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), + [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_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), + [sym_block_comment] = ACTIONS(3), + }, + [218] = { + [sym_identifier] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(405), + [anon_sym_u8] = ACTIONS(407), + [anon_sym_i8] = ACTIONS(407), + [anon_sym_u16] = ACTIONS(407), + [anon_sym_i16] = ACTIONS(407), + [anon_sym_u32] = ACTIONS(407), + [anon_sym_i32] = ACTIONS(407), + [anon_sym_u64] = ACTIONS(407), + [anon_sym_i64] = ACTIONS(407), + [anon_sym_u128] = ACTIONS(407), + [anon_sym_i128] = ACTIONS(407), + [anon_sym_isize] = ACTIONS(407), + [anon_sym_usize] = ACTIONS(407), + [anon_sym_f32] = ACTIONS(407), + [anon_sym_f64] = ACTIONS(407), + [anon_sym_bool] = ACTIONS(407), + [anon_sym_str] = ACTIONS(407), + [anon_sym_char] = ACTIONS(407), + [anon_sym_as] = ACTIONS(407), + [anon_sym_const] = ACTIONS(407), + [anon_sym_default] = ACTIONS(407), + [anon_sym_union] = ACTIONS(407), + [anon_sym_POUND] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COMMA] = ACTIONS(405), + [anon_sym_ref] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(405), + [anon_sym__] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(405), + [sym_mutable_specifier] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_AMP_AMP] = ACTIONS(405), + [anon_sym_PIPE_PIPE] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(407), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(405), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_SLASH] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_PLUS_EQ] = ACTIONS(405), + [anon_sym_DASH_EQ] = ACTIONS(405), + [anon_sym_STAR_EQ] = ACTIONS(405), + [anon_sym_SLASH_EQ] = ACTIONS(405), + [anon_sym_PERCENT_EQ] = ACTIONS(405), + [anon_sym_AMP_EQ] = ACTIONS(405), + [anon_sym_PIPE_EQ] = ACTIONS(405), + [anon_sym_CARET_EQ] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(405), + [anon_sym_GT_GT_EQ] = ACTIONS(405), + [anon_sym_DOT] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(405), + [aux_sym_string_literal_token1] = ACTIONS(405), + [sym_char_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(407), + [sym_super] = ACTIONS(407), + [sym_crate] = ACTIONS(407), + [sym_metavariable] = ACTIONS(405), + [sym_raw_string_literal] = ACTIONS(405), + [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] = { + [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_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), + [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), + [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), + [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), + [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), + [sym_block_comment] = ACTIONS(3), + }, + [228] = { + [sym_identifier] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_u8] = ACTIONS(896), + [anon_sym_i8] = ACTIONS(896), + [anon_sym_u16] = ACTIONS(896), + [anon_sym_i16] = ACTIONS(896), + [anon_sym_u32] = ACTIONS(896), + [anon_sym_i32] = ACTIONS(896), + [anon_sym_u64] = ACTIONS(896), + [anon_sym_i64] = ACTIONS(896), + [anon_sym_u128] = ACTIONS(896), + [anon_sym_i128] = ACTIONS(896), + [anon_sym_isize] = ACTIONS(896), + [anon_sym_usize] = ACTIONS(896), + [anon_sym_f32] = ACTIONS(896), + [anon_sym_f64] = ACTIONS(896), + [anon_sym_bool] = ACTIONS(896), + [anon_sym_str] = ACTIONS(896), + [anon_sym_char] = ACTIONS(896), + [anon_sym_as] = ACTIONS(461), + [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_ref] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_COLON_COLON] = ACTIONS(898), + [anon_sym__] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_mutable_specifier] = ACTIONS(896), + [anon_sym_DOT_DOT] = ACTIONS(896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(459), + [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), + [sym_integer_literal] = ACTIONS(898), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(898), + [anon_sym_true] = ACTIONS(896), + [anon_sym_false] = ACTIONS(896), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(896), + [sym_super] = ACTIONS(896), + [sym_crate] = ACTIONS(896), + [sym_metavariable] = ACTIONS(898), + [sym_raw_string_literal] = ACTIONS(898), + [sym_float_literal] = ACTIONS(898), + [sym_block_comment] = ACTIONS(3), + }, + [229] = { + [sym_identifier] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_u8] = ACTIONS(433), + [anon_sym_i8] = ACTIONS(433), + [anon_sym_u16] = ACTIONS(433), + [anon_sym_i16] = ACTIONS(433), + [anon_sym_u32] = ACTIONS(433), + [anon_sym_i32] = ACTIONS(433), + [anon_sym_u64] = ACTIONS(433), + [anon_sym_i64] = ACTIONS(433), + [anon_sym_u128] = ACTIONS(433), + [anon_sym_i128] = ACTIONS(433), + [anon_sym_isize] = ACTIONS(433), + [anon_sym_usize] = ACTIONS(433), + [anon_sym_f32] = ACTIONS(433), + [anon_sym_f64] = ACTIONS(433), + [anon_sym_bool] = ACTIONS(433), + [anon_sym_str] = ACTIONS(433), + [anon_sym_char] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_const] = ACTIONS(433), + [anon_sym_default] = ACTIONS(433), + [anon_sym_union] = ACTIONS(433), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_ref] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(433), + [anon_sym_COLON_COLON] = ACTIONS(431), + [anon_sym__] = ACTIONS(433), + [anon_sym_AMP] = ACTIONS(433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_mutable_specifier] = ACTIONS(433), + [anon_sym_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(431), + [anon_sym_PIPE_PIPE] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ] = ACTIONS(431), + [anon_sym_LT_EQ] = ACTIONS(431), + [anon_sym_GT_EQ] = ACTIONS(431), + [anon_sym_LT_LT] = ACTIONS(433), + [anon_sym_GT_GT] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(433), + [anon_sym_PERCENT] = ACTIONS(433), + [anon_sym_PLUS_EQ] = ACTIONS(431), + [anon_sym_DASH_EQ] = ACTIONS(431), + [anon_sym_STAR_EQ] = ACTIONS(431), + [anon_sym_SLASH_EQ] = ACTIONS(431), + [anon_sym_PERCENT_EQ] = ACTIONS(431), + [anon_sym_AMP_EQ] = ACTIONS(431), + [anon_sym_PIPE_EQ] = ACTIONS(431), + [anon_sym_CARET_EQ] = ACTIONS(431), + [anon_sym_LT_LT_EQ] = ACTIONS(431), + [anon_sym_GT_GT_EQ] = ACTIONS(431), + [anon_sym_DOT] = ACTIONS(433), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(431), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(433), + [anon_sym_false] = ACTIONS(433), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(433), + [sym_super] = ACTIONS(433), + [sym_crate] = ACTIONS(433), + [sym_metavariable] = ACTIONS(431), + [sym_raw_string_literal] = ACTIONS(431), + [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_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_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_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), + [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), + [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), + [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), + [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), + [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), + [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_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), + [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), + [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_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_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_block_comment] = ACTIONS(3), + }, + [244] = { + [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(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), + [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_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_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_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1080), + [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), + }, + [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_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1098), + [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), + }, + [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_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1100), + [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), + }, + [249] = { + [ts_builtin_sym_end] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1104), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_macro_rules_BANG] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_u8] = ACTIONS(1104), + [anon_sym_i8] = ACTIONS(1104), + [anon_sym_u16] = ACTIONS(1104), + [anon_sym_i16] = ACTIONS(1104), + [anon_sym_u32] = ACTIONS(1104), + [anon_sym_i32] = ACTIONS(1104), + [anon_sym_u64] = ACTIONS(1104), + [anon_sym_i64] = ACTIONS(1104), + [anon_sym_u128] = ACTIONS(1104), + [anon_sym_i128] = ACTIONS(1104), + [anon_sym_isize] = ACTIONS(1104), + [anon_sym_usize] = ACTIONS(1104), + [anon_sym_f32] = ACTIONS(1104), + [anon_sym_f64] = ACTIONS(1104), + [anon_sym_bool] = ACTIONS(1104), + [anon_sym_str] = ACTIONS(1104), + [anon_sym_char] = ACTIONS(1104), + [anon_sym_SQUOTE] = ACTIONS(1104), + [anon_sym_async] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_fn] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_impl] = ACTIONS(1104), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_loop] = ACTIONS(1104), + [anon_sym_match] = ACTIONS(1104), + [anon_sym_mod] = ACTIONS(1104), + [anon_sym_pub] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_trait] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_unsafe] = ACTIONS(1104), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_POUND] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_COLON_COLON] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_DOT_DOT] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_move] = ACTIONS(1104), + [sym_integer_literal] = ACTIONS(1102), + [aux_sym_string_literal_token1] = ACTIONS(1102), + [sym_char_literal] = ACTIONS(1102), + [anon_sym_true] = ACTIONS(1104), + [anon_sym_false] = ACTIONS(1104), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1104), + [sym_super] = ACTIONS(1104), + [sym_crate] = ACTIONS(1104), + [sym_metavariable] = ACTIONS(1102), + [sym_raw_string_literal] = ACTIONS(1102), + [sym_float_literal] = ACTIONS(1102), + [sym_block_comment] = ACTIONS(3), + }, + [250] = { + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_macro_rules_BANG] = ACTIONS(1106), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_u8] = ACTIONS(1108), + [anon_sym_i8] = ACTIONS(1108), + [anon_sym_u16] = ACTIONS(1108), + [anon_sym_i16] = ACTIONS(1108), + [anon_sym_u32] = ACTIONS(1108), + [anon_sym_i32] = ACTIONS(1108), + [anon_sym_u64] = ACTIONS(1108), + [anon_sym_i64] = ACTIONS(1108), + [anon_sym_u128] = ACTIONS(1108), + [anon_sym_i128] = ACTIONS(1108), + [anon_sym_isize] = ACTIONS(1108), + [anon_sym_usize] = ACTIONS(1108), + [anon_sym_f32] = ACTIONS(1108), + [anon_sym_f64] = ACTIONS(1108), + [anon_sym_bool] = ACTIONS(1108), + [anon_sym_str] = ACTIONS(1108), + [anon_sym_char] = ACTIONS(1108), + [anon_sym_SQUOTE] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_fn] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_impl] = ACTIONS(1108), + [anon_sym_let] = ACTIONS(1108), + [anon_sym_loop] = ACTIONS(1108), + [anon_sym_match] = ACTIONS(1108), + [anon_sym_mod] = ACTIONS(1108), + [anon_sym_pub] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_trait] = ACTIONS(1108), + [anon_sym_type] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_unsafe] = ACTIONS(1108), + [anon_sym_use] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_POUND] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_COLON_COLON] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_DOT_DOT] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_move] = ACTIONS(1108), + [sym_integer_literal] = ACTIONS(1106), + [aux_sym_string_literal_token1] = ACTIONS(1106), + [sym_char_literal] = ACTIONS(1106), + [anon_sym_true] = ACTIONS(1108), + [anon_sym_false] = ACTIONS(1108), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1108), + [sym_super] = ACTIONS(1108), + [sym_crate] = ACTIONS(1108), + [sym_metavariable] = ACTIONS(1106), + [sym_raw_string_literal] = ACTIONS(1106), + [sym_float_literal] = ACTIONS(1106), + [sym_block_comment] = ACTIONS(3), + }, + [251] = { + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_macro_rules_BANG] = ACTIONS(1110), + [anon_sym_LPAREN] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_u8] = ACTIONS(1112), + [anon_sym_i8] = ACTIONS(1112), + [anon_sym_u16] = ACTIONS(1112), + [anon_sym_i16] = ACTIONS(1112), + [anon_sym_u32] = ACTIONS(1112), + [anon_sym_i32] = ACTIONS(1112), + [anon_sym_u64] = ACTIONS(1112), + [anon_sym_i64] = ACTIONS(1112), + [anon_sym_u128] = ACTIONS(1112), + [anon_sym_i128] = ACTIONS(1112), + [anon_sym_isize] = ACTIONS(1112), + [anon_sym_usize] = ACTIONS(1112), + [anon_sym_f32] = ACTIONS(1112), + [anon_sym_f64] = ACTIONS(1112), + [anon_sym_bool] = ACTIONS(1112), + [anon_sym_str] = ACTIONS(1112), + [anon_sym_char] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_async] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_fn] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_impl] = ACTIONS(1112), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_loop] = ACTIONS(1112), + [anon_sym_match] = ACTIONS(1112), + [anon_sym_mod] = ACTIONS(1112), + [anon_sym_pub] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_trait] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_unsafe] = ACTIONS(1112), + [anon_sym_use] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_POUND] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_COLON_COLON] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_DOT_DOT] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_move] = ACTIONS(1112), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1110), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1112), + [anon_sym_false] = ACTIONS(1112), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1112), + [sym_super] = ACTIONS(1112), + [sym_crate] = ACTIONS(1112), + [sym_metavariable] = ACTIONS(1110), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [252] = { + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1116), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_macro_rules_BANG] = ACTIONS(1114), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_u8] = ACTIONS(1116), + [anon_sym_i8] = ACTIONS(1116), + [anon_sym_u16] = ACTIONS(1116), + [anon_sym_i16] = ACTIONS(1116), + [anon_sym_u32] = ACTIONS(1116), + [anon_sym_i32] = ACTIONS(1116), + [anon_sym_u64] = ACTIONS(1116), + [anon_sym_i64] = ACTIONS(1116), + [anon_sym_u128] = ACTIONS(1116), + [anon_sym_i128] = ACTIONS(1116), + [anon_sym_isize] = ACTIONS(1116), + [anon_sym_usize] = ACTIONS(1116), + [anon_sym_f32] = ACTIONS(1116), + [anon_sym_f64] = ACTIONS(1116), + [anon_sym_bool] = ACTIONS(1116), + [anon_sym_str] = ACTIONS(1116), + [anon_sym_char] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_async] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_fn] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_impl] = ACTIONS(1116), + [anon_sym_let] = ACTIONS(1116), + [anon_sym_loop] = ACTIONS(1116), + [anon_sym_match] = ACTIONS(1116), + [anon_sym_mod] = ACTIONS(1116), + [anon_sym_pub] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_trait] = ACTIONS(1116), + [anon_sym_type] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_unsafe] = ACTIONS(1116), + [anon_sym_use] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_POUND] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym_LT] = ACTIONS(1114), + [anon_sym_COLON_COLON] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_DOT_DOT] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_move] = ACTIONS(1116), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1116), + [sym_super] = ACTIONS(1116), + [sym_crate] = ACTIONS(1116), + [sym_metavariable] = ACTIONS(1114), + [sym_raw_string_literal] = ACTIONS(1114), + [sym_float_literal] = ACTIONS(1114), + [sym_block_comment] = ACTIONS(3), + }, + [253] = { + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_identifier] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_macro_rules_BANG] = ACTIONS(1118), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), + [anon_sym_LBRACK] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_u8] = ACTIONS(1120), + [anon_sym_i8] = ACTIONS(1120), + [anon_sym_u16] = ACTIONS(1120), + [anon_sym_i16] = ACTIONS(1120), + [anon_sym_u32] = ACTIONS(1120), + [anon_sym_i32] = ACTIONS(1120), + [anon_sym_u64] = ACTIONS(1120), + [anon_sym_i64] = ACTIONS(1120), + [anon_sym_u128] = ACTIONS(1120), + [anon_sym_i128] = ACTIONS(1120), + [anon_sym_isize] = ACTIONS(1120), + [anon_sym_usize] = ACTIONS(1120), + [anon_sym_f32] = ACTIONS(1120), + [anon_sym_f64] = ACTIONS(1120), + [anon_sym_bool] = ACTIONS(1120), + [anon_sym_str] = ACTIONS(1120), + [anon_sym_char] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_fn] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_impl] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(1120), + [anon_sym_loop] = ACTIONS(1120), + [anon_sym_match] = ACTIONS(1120), + [anon_sym_mod] = ACTIONS(1120), + [anon_sym_pub] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_trait] = ACTIONS(1120), + [anon_sym_type] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_unsafe] = ACTIONS(1120), + [anon_sym_use] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_POUND] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1118), + [anon_sym_COLON_COLON] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_DOT_DOT] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PIPE] = ACTIONS(1118), + [anon_sym_move] = ACTIONS(1120), + [sym_integer_literal] = ACTIONS(1118), + [aux_sym_string_literal_token1] = ACTIONS(1118), + [sym_char_literal] = ACTIONS(1118), + [anon_sym_true] = ACTIONS(1120), + [anon_sym_false] = ACTIONS(1120), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1120), + [sym_crate] = ACTIONS(1120), + [sym_metavariable] = ACTIONS(1118), + [sym_raw_string_literal] = ACTIONS(1118), + [sym_float_literal] = ACTIONS(1118), + [sym_block_comment] = ACTIONS(3), + }, + [254] = { + [ts_builtin_sym_end] = ACTIONS(1122), + [sym_identifier] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_macro_rules_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_u8] = ACTIONS(1124), + [anon_sym_i8] = ACTIONS(1124), + [anon_sym_u16] = ACTIONS(1124), + [anon_sym_i16] = ACTIONS(1124), + [anon_sym_u32] = ACTIONS(1124), + [anon_sym_i32] = ACTIONS(1124), + [anon_sym_u64] = ACTIONS(1124), + [anon_sym_i64] = ACTIONS(1124), + [anon_sym_u128] = ACTIONS(1124), + [anon_sym_i128] = ACTIONS(1124), + [anon_sym_isize] = ACTIONS(1124), + [anon_sym_usize] = ACTIONS(1124), + [anon_sym_f32] = ACTIONS(1124), + [anon_sym_f64] = ACTIONS(1124), + [anon_sym_bool] = ACTIONS(1124), + [anon_sym_str] = ACTIONS(1124), + [anon_sym_char] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_async] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_fn] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_impl] = ACTIONS(1124), + [anon_sym_let] = ACTIONS(1124), + [anon_sym_loop] = ACTIONS(1124), + [anon_sym_match] = ACTIONS(1124), + [anon_sym_mod] = ACTIONS(1124), + [anon_sym_pub] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_trait] = ACTIONS(1124), + [anon_sym_type] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_unsafe] = ACTIONS(1124), + [anon_sym_use] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_POUND] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_COLON_COLON] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_DOT_DOT] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PIPE] = ACTIONS(1122), + [anon_sym_move] = ACTIONS(1124), + [sym_integer_literal] = ACTIONS(1122), + [aux_sym_string_literal_token1] = ACTIONS(1122), + [sym_char_literal] = ACTIONS(1122), + [anon_sym_true] = ACTIONS(1124), + [anon_sym_false] = ACTIONS(1124), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1124), + [sym_super] = ACTIONS(1124), + [sym_crate] = ACTIONS(1124), + [sym_metavariable] = ACTIONS(1122), + [sym_raw_string_literal] = ACTIONS(1122), + [sym_float_literal] = ACTIONS(1122), + [sym_block_comment] = ACTIONS(3), + }, + [255] = { + [ts_builtin_sym_end] = ACTIONS(1126), + [sym_identifier] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_macro_rules_BANG] = ACTIONS(1126), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_u8] = ACTIONS(1128), + [anon_sym_i8] = ACTIONS(1128), + [anon_sym_u16] = ACTIONS(1128), + [anon_sym_i16] = ACTIONS(1128), + [anon_sym_u32] = ACTIONS(1128), + [anon_sym_i32] = ACTIONS(1128), + [anon_sym_u64] = ACTIONS(1128), + [anon_sym_i64] = ACTIONS(1128), + [anon_sym_u128] = ACTIONS(1128), + [anon_sym_i128] = ACTIONS(1128), + [anon_sym_isize] = ACTIONS(1128), + [anon_sym_usize] = ACTIONS(1128), + [anon_sym_f32] = ACTIONS(1128), + [anon_sym_f64] = ACTIONS(1128), + [anon_sym_bool] = ACTIONS(1128), + [anon_sym_str] = ACTIONS(1128), + [anon_sym_char] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_default] = ACTIONS(1128), + [anon_sym_enum] = ACTIONS(1128), + [anon_sym_fn] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_impl] = ACTIONS(1128), + [anon_sym_let] = ACTIONS(1128), + [anon_sym_loop] = ACTIONS(1128), + [anon_sym_match] = ACTIONS(1128), + [anon_sym_mod] = ACTIONS(1128), + [anon_sym_pub] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_struct] = ACTIONS(1128), + [anon_sym_trait] = ACTIONS(1128), + [anon_sym_type] = ACTIONS(1128), + [anon_sym_union] = ACTIONS(1128), + [anon_sym_unsafe] = ACTIONS(1128), + [anon_sym_use] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_POUND] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_COLON_COLON] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_DOT_DOT] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_move] = ACTIONS(1128), + [sym_integer_literal] = ACTIONS(1126), + [aux_sym_string_literal_token1] = ACTIONS(1126), + [sym_char_literal] = ACTIONS(1126), + [anon_sym_true] = ACTIONS(1128), + [anon_sym_false] = ACTIONS(1128), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1128), + [sym_super] = ACTIONS(1128), + [sym_crate] = ACTIONS(1128), + [sym_metavariable] = ACTIONS(1126), + [sym_raw_string_literal] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1126), + [sym_block_comment] = ACTIONS(3), + }, + [256] = { + [ts_builtin_sym_end] = ACTIONS(1130), + [sym_identifier] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_macro_rules_BANG] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_u8] = ACTIONS(1132), + [anon_sym_i8] = ACTIONS(1132), + [anon_sym_u16] = ACTIONS(1132), + [anon_sym_i16] = ACTIONS(1132), + [anon_sym_u32] = ACTIONS(1132), + [anon_sym_i32] = ACTIONS(1132), + [anon_sym_u64] = ACTIONS(1132), + [anon_sym_i64] = ACTIONS(1132), + [anon_sym_u128] = ACTIONS(1132), + [anon_sym_i128] = ACTIONS(1132), + [anon_sym_isize] = ACTIONS(1132), + [anon_sym_usize] = ACTIONS(1132), + [anon_sym_f32] = ACTIONS(1132), + [anon_sym_f64] = ACTIONS(1132), + [anon_sym_bool] = ACTIONS(1132), + [anon_sym_str] = ACTIONS(1132), + [anon_sym_char] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_async] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1132), + [anon_sym_default] = ACTIONS(1132), + [anon_sym_enum] = ACTIONS(1132), + [anon_sym_fn] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_impl] = ACTIONS(1132), + [anon_sym_let] = ACTIONS(1132), + [anon_sym_loop] = ACTIONS(1132), + [anon_sym_match] = ACTIONS(1132), + [anon_sym_mod] = ACTIONS(1132), + [anon_sym_pub] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_struct] = ACTIONS(1132), + [anon_sym_trait] = ACTIONS(1132), + [anon_sym_type] = ACTIONS(1132), + [anon_sym_union] = ACTIONS(1132), + [anon_sym_unsafe] = ACTIONS(1132), + [anon_sym_use] = ACTIONS(1132), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_POUND] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_DOT_DOT] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_move] = ACTIONS(1132), + [sym_integer_literal] = ACTIONS(1130), + [aux_sym_string_literal_token1] = ACTIONS(1130), + [sym_char_literal] = ACTIONS(1130), + [anon_sym_true] = ACTIONS(1132), + [anon_sym_false] = ACTIONS(1132), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1132), + [sym_super] = ACTIONS(1132), + [sym_crate] = ACTIONS(1132), + [sym_metavariable] = ACTIONS(1130), + [sym_raw_string_literal] = ACTIONS(1130), + [sym_float_literal] = ACTIONS(1130), + [sym_block_comment] = ACTIONS(3), + }, + [257] = { + [ts_builtin_sym_end] = ACTIONS(1134), + [sym_identifier] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_macro_rules_BANG] = ACTIONS(1134), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_async] = ACTIONS(1136), + [anon_sym_break] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(1136), + [anon_sym_continue] = ACTIONS(1136), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_enum] = ACTIONS(1136), + [anon_sym_fn] = ACTIONS(1136), + [anon_sym_for] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_impl] = ACTIONS(1136), + [anon_sym_let] = ACTIONS(1136), + [anon_sym_loop] = ACTIONS(1136), + [anon_sym_match] = ACTIONS(1136), + [anon_sym_mod] = ACTIONS(1136), + [anon_sym_pub] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1136), + [anon_sym_struct] = ACTIONS(1136), + [anon_sym_trait] = ACTIONS(1136), + [anon_sym_type] = ACTIONS(1136), + [anon_sym_union] = ACTIONS(1136), + [anon_sym_unsafe] = ACTIONS(1136), + [anon_sym_use] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_POUND] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1136), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_COLON_COLON] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_DOT_DOT] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PIPE] = ACTIONS(1134), + [anon_sym_move] = ACTIONS(1136), + [sym_integer_literal] = ACTIONS(1134), + [aux_sym_string_literal_token1] = ACTIONS(1134), + [sym_char_literal] = ACTIONS(1134), + [anon_sym_true] = ACTIONS(1136), + [anon_sym_false] = ACTIONS(1136), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1136), + [sym_super] = ACTIONS(1136), + [sym_crate] = ACTIONS(1136), + [sym_metavariable] = ACTIONS(1134), + [sym_raw_string_literal] = ACTIONS(1134), + [sym_float_literal] = ACTIONS(1134), + [sym_block_comment] = ACTIONS(3), + }, + [258] = { + [ts_builtin_sym_end] = ACTIONS(1138), + [sym_identifier] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_macro_rules_BANG] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1140), + [anon_sym_break] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1140), + [anon_sym_continue] = ACTIONS(1140), + [anon_sym_default] = ACTIONS(1140), + [anon_sym_enum] = ACTIONS(1140), + [anon_sym_fn] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1140), + [anon_sym_if] = ACTIONS(1140), + [anon_sym_impl] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_loop] = ACTIONS(1140), + [anon_sym_match] = ACTIONS(1140), + [anon_sym_mod] = ACTIONS(1140), + [anon_sym_pub] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_struct] = ACTIONS(1140), + [anon_sym_trait] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_union] = ACTIONS(1140), + [anon_sym_unsafe] = ACTIONS(1140), + [anon_sym_use] = ACTIONS(1140), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_POUND] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(1138), + [anon_sym_COLON_COLON] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1140), + [sym_integer_literal] = ACTIONS(1138), + [aux_sym_string_literal_token1] = ACTIONS(1138), + [sym_char_literal] = ACTIONS(1138), + [anon_sym_true] = ACTIONS(1140), + [anon_sym_false] = ACTIONS(1140), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1140), + [sym_super] = ACTIONS(1140), + [sym_crate] = ACTIONS(1140), + [sym_metavariable] = ACTIONS(1138), + [sym_raw_string_literal] = ACTIONS(1138), + [sym_float_literal] = ACTIONS(1138), + [sym_block_comment] = ACTIONS(3), + }, + [259] = { + [ts_builtin_sym_end] = ACTIONS(1142), + [sym_identifier] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1142), + [anon_sym_macro_rules_BANG] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_RBRACE] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_u8] = ACTIONS(1144), + [anon_sym_i8] = ACTIONS(1144), + [anon_sym_u16] = ACTIONS(1144), + [anon_sym_i16] = ACTIONS(1144), + [anon_sym_u32] = ACTIONS(1144), + [anon_sym_i32] = ACTIONS(1144), + [anon_sym_u64] = ACTIONS(1144), + [anon_sym_i64] = ACTIONS(1144), + [anon_sym_u128] = ACTIONS(1144), + [anon_sym_i128] = ACTIONS(1144), + [anon_sym_isize] = ACTIONS(1144), + [anon_sym_usize] = ACTIONS(1144), + [anon_sym_f32] = ACTIONS(1144), + [anon_sym_f64] = ACTIONS(1144), + [anon_sym_bool] = ACTIONS(1144), + [anon_sym_str] = ACTIONS(1144), + [anon_sym_char] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_async] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1144), + [anon_sym_const] = ACTIONS(1144), + [anon_sym_continue] = ACTIONS(1144), + [anon_sym_default] = ACTIONS(1144), + [anon_sym_enum] = ACTIONS(1144), + [anon_sym_fn] = ACTIONS(1144), + [anon_sym_for] = ACTIONS(1144), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_impl] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(1144), + [anon_sym_loop] = ACTIONS(1144), + [anon_sym_match] = ACTIONS(1144), + [anon_sym_mod] = ACTIONS(1144), + [anon_sym_pub] = ACTIONS(1144), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_struct] = ACTIONS(1144), + [anon_sym_trait] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_union] = ACTIONS(1144), + [anon_sym_unsafe] = ACTIONS(1144), + [anon_sym_use] = ACTIONS(1144), + [anon_sym_while] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1142), + [anon_sym_BANG] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(1142), + [anon_sym_COLON_COLON] = ACTIONS(1142), + [anon_sym_AMP] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PIPE] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1144), + [sym_integer_literal] = ACTIONS(1142), + [aux_sym_string_literal_token1] = ACTIONS(1142), + [sym_char_literal] = ACTIONS(1142), + [anon_sym_true] = ACTIONS(1144), + [anon_sym_false] = ACTIONS(1144), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1144), + [sym_super] = ACTIONS(1144), + [sym_crate] = ACTIONS(1144), + [sym_metavariable] = ACTIONS(1142), + [sym_raw_string_literal] = ACTIONS(1142), + [sym_float_literal] = ACTIONS(1142), + [sym_block_comment] = ACTIONS(3), + }, + [260] = { + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_identifier] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_macro_rules_BANG] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_u8] = ACTIONS(1148), + [anon_sym_i8] = ACTIONS(1148), + [anon_sym_u16] = ACTIONS(1148), + [anon_sym_i16] = ACTIONS(1148), + [anon_sym_u32] = ACTIONS(1148), + [anon_sym_i32] = ACTIONS(1148), + [anon_sym_u64] = ACTIONS(1148), + [anon_sym_i64] = ACTIONS(1148), + [anon_sym_u128] = ACTIONS(1148), + [anon_sym_i128] = ACTIONS(1148), + [anon_sym_isize] = ACTIONS(1148), + [anon_sym_usize] = ACTIONS(1148), + [anon_sym_f32] = ACTIONS(1148), + [anon_sym_f64] = ACTIONS(1148), + [anon_sym_bool] = ACTIONS(1148), + [anon_sym_str] = ACTIONS(1148), + [anon_sym_char] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1148), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_const] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_default] = ACTIONS(1148), + [anon_sym_enum] = ACTIONS(1148), + [anon_sym_fn] = ACTIONS(1148), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_if] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1148), + [anon_sym_let] = ACTIONS(1148), + [anon_sym_loop] = ACTIONS(1148), + [anon_sym_match] = ACTIONS(1148), + [anon_sym_mod] = ACTIONS(1148), + [anon_sym_pub] = ACTIONS(1148), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1148), + [anon_sym_struct] = ACTIONS(1148), + [anon_sym_trait] = ACTIONS(1148), + [anon_sym_type] = ACTIONS(1148), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1148), + [anon_sym_use] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1148), + [anon_sym_POUND] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_COLON_COLON] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_DOT_DOT] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PIPE] = ACTIONS(1146), + [anon_sym_move] = ACTIONS(1148), + [sym_integer_literal] = ACTIONS(1146), + [aux_sym_string_literal_token1] = ACTIONS(1146), + [sym_char_literal] = ACTIONS(1146), + [anon_sym_true] = ACTIONS(1148), + [anon_sym_false] = ACTIONS(1148), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1148), + [sym_super] = ACTIONS(1148), + [sym_crate] = ACTIONS(1148), + [sym_metavariable] = ACTIONS(1146), + [sym_raw_string_literal] = ACTIONS(1146), + [sym_float_literal] = ACTIONS(1146), + [sym_block_comment] = ACTIONS(3), + }, + [261] = { + [ts_builtin_sym_end] = ACTIONS(1150), + [sym_identifier] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_macro_rules_BANG] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1150), + [anon_sym_u8] = ACTIONS(1152), + [anon_sym_i8] = ACTIONS(1152), + [anon_sym_u16] = ACTIONS(1152), + [anon_sym_i16] = ACTIONS(1152), + [anon_sym_u32] = ACTIONS(1152), + [anon_sym_i32] = ACTIONS(1152), + [anon_sym_u64] = ACTIONS(1152), + [anon_sym_i64] = ACTIONS(1152), + [anon_sym_u128] = ACTIONS(1152), + [anon_sym_i128] = ACTIONS(1152), + [anon_sym_isize] = ACTIONS(1152), + [anon_sym_usize] = ACTIONS(1152), + [anon_sym_f32] = ACTIONS(1152), + [anon_sym_f64] = ACTIONS(1152), + [anon_sym_bool] = ACTIONS(1152), + [anon_sym_str] = ACTIONS(1152), + [anon_sym_char] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_async] = ACTIONS(1152), + [anon_sym_break] = ACTIONS(1152), + [anon_sym_const] = ACTIONS(1152), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_default] = ACTIONS(1152), + [anon_sym_enum] = ACTIONS(1152), + [anon_sym_fn] = ACTIONS(1152), + [anon_sym_for] = ACTIONS(1152), + [anon_sym_if] = ACTIONS(1152), + [anon_sym_impl] = ACTIONS(1152), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_loop] = ACTIONS(1152), + [anon_sym_match] = ACTIONS(1152), + [anon_sym_mod] = ACTIONS(1152), + [anon_sym_pub] = ACTIONS(1152), + [anon_sym_return] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_struct] = ACTIONS(1152), + [anon_sym_trait] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_union] = ACTIONS(1152), + [anon_sym_unsafe] = ACTIONS(1152), + [anon_sym_use] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_BANG] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1152), + [anon_sym_LT] = ACTIONS(1150), + [anon_sym_COLON_COLON] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_DOT_DOT] = ACTIONS(1150), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_move] = ACTIONS(1152), + [sym_integer_literal] = ACTIONS(1150), + [aux_sym_string_literal_token1] = ACTIONS(1150), + [sym_char_literal] = ACTIONS(1150), + [anon_sym_true] = ACTIONS(1152), + [anon_sym_false] = ACTIONS(1152), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1152), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1150), + [sym_raw_string_literal] = ACTIONS(1150), + [sym_float_literal] = ACTIONS(1150), + [sym_block_comment] = ACTIONS(3), + }, + [262] = { + [ts_builtin_sym_end] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_macro_rules_BANG] = ACTIONS(1154), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1154), + [anon_sym_u8] = ACTIONS(1156), + [anon_sym_i8] = ACTIONS(1156), + [anon_sym_u16] = ACTIONS(1156), + [anon_sym_i16] = ACTIONS(1156), + [anon_sym_u32] = ACTIONS(1156), + [anon_sym_i32] = ACTIONS(1156), + [anon_sym_u64] = ACTIONS(1156), + [anon_sym_i64] = ACTIONS(1156), + [anon_sym_u128] = ACTIONS(1156), + [anon_sym_i128] = ACTIONS(1156), + [anon_sym_isize] = ACTIONS(1156), + [anon_sym_usize] = ACTIONS(1156), + [anon_sym_f32] = ACTIONS(1156), + [anon_sym_f64] = ACTIONS(1156), + [anon_sym_bool] = ACTIONS(1156), + [anon_sym_str] = ACTIONS(1156), + [anon_sym_char] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_async] = ACTIONS(1156), + [anon_sym_break] = ACTIONS(1156), + [anon_sym_const] = ACTIONS(1156), + [anon_sym_continue] = ACTIONS(1156), + [anon_sym_default] = ACTIONS(1156), + [anon_sym_enum] = ACTIONS(1156), + [anon_sym_fn] = ACTIONS(1156), + [anon_sym_for] = ACTIONS(1156), + [anon_sym_if] = ACTIONS(1156), + [anon_sym_impl] = ACTIONS(1156), + [anon_sym_let] = ACTIONS(1156), + [anon_sym_loop] = ACTIONS(1156), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_mod] = ACTIONS(1156), + [anon_sym_pub] = ACTIONS(1156), + [anon_sym_return] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1156), + [anon_sym_struct] = ACTIONS(1156), + [anon_sym_trait] = ACTIONS(1156), + [anon_sym_type] = ACTIONS(1156), + [anon_sym_union] = ACTIONS(1156), + [anon_sym_unsafe] = ACTIONS(1156), + [anon_sym_use] = ACTIONS(1156), + [anon_sym_while] = ACTIONS(1156), + [anon_sym_POUND] = ACTIONS(1154), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1154), + [anon_sym_COLON_COLON] = ACTIONS(1154), + [anon_sym_AMP] = ACTIONS(1154), + [anon_sym_DOT_DOT] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1154), + [anon_sym_move] = ACTIONS(1156), + [sym_integer_literal] = ACTIONS(1154), + [aux_sym_string_literal_token1] = ACTIONS(1154), + [sym_char_literal] = ACTIONS(1154), + [anon_sym_true] = ACTIONS(1156), + [anon_sym_false] = ACTIONS(1156), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1156), + [sym_super] = ACTIONS(1156), + [sym_crate] = ACTIONS(1156), + [sym_metavariable] = ACTIONS(1154), + [sym_raw_string_literal] = ACTIONS(1154), + [sym_float_literal] = ACTIONS(1154), + [sym_block_comment] = ACTIONS(3), + }, + [263] = { + [ts_builtin_sym_end] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1158), + [anon_sym_macro_rules_BANG] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_RBRACE] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_async] = ACTIONS(1160), + [anon_sym_break] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1160), + [anon_sym_continue] = ACTIONS(1160), + [anon_sym_default] = ACTIONS(1160), + [anon_sym_enum] = ACTIONS(1160), + [anon_sym_fn] = ACTIONS(1160), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_impl] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_loop] = ACTIONS(1160), + [anon_sym_match] = ACTIONS(1160), + [anon_sym_mod] = ACTIONS(1160), + [anon_sym_pub] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_struct] = ACTIONS(1160), + [anon_sym_trait] = ACTIONS(1160), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_union] = ACTIONS(1160), + [anon_sym_unsafe] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_POUND] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1158), + [anon_sym_COLON_COLON] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1158), + [anon_sym_DOT_DOT] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PIPE] = ACTIONS(1158), + [anon_sym_move] = ACTIONS(1160), + [sym_integer_literal] = ACTIONS(1158), + [aux_sym_string_literal_token1] = ACTIONS(1158), + [sym_char_literal] = ACTIONS(1158), + [anon_sym_true] = ACTIONS(1160), + [anon_sym_false] = ACTIONS(1160), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1160), + [sym_super] = ACTIONS(1160), + [sym_crate] = ACTIONS(1160), + [sym_metavariable] = ACTIONS(1158), + [sym_raw_string_literal] = ACTIONS(1158), + [sym_float_literal] = ACTIONS(1158), + [sym_block_comment] = ACTIONS(3), + }, + [264] = { + [ts_builtin_sym_end] = ACTIONS(1162), + [sym_identifier] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_macro_rules_BANG] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_RBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_u8] = ACTIONS(1164), + [anon_sym_i8] = ACTIONS(1164), + [anon_sym_u16] = ACTIONS(1164), + [anon_sym_i16] = ACTIONS(1164), + [anon_sym_u32] = ACTIONS(1164), + [anon_sym_i32] = ACTIONS(1164), + [anon_sym_u64] = ACTIONS(1164), + [anon_sym_i64] = ACTIONS(1164), + [anon_sym_u128] = ACTIONS(1164), + [anon_sym_i128] = ACTIONS(1164), + [anon_sym_isize] = ACTIONS(1164), + [anon_sym_usize] = ACTIONS(1164), + [anon_sym_f32] = ACTIONS(1164), + [anon_sym_f64] = ACTIONS(1164), + [anon_sym_bool] = ACTIONS(1164), + [anon_sym_str] = ACTIONS(1164), + [anon_sym_char] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_const] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_enum] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_impl] = ACTIONS(1164), + [anon_sym_let] = ACTIONS(1164), + [anon_sym_loop] = ACTIONS(1164), + [anon_sym_match] = ACTIONS(1164), + [anon_sym_mod] = ACTIONS(1164), + [anon_sym_pub] = ACTIONS(1164), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_trait] = ACTIONS(1164), + [anon_sym_type] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1164), + [anon_sym_unsafe] = ACTIONS(1164), + [anon_sym_use] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_POUND] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), + [anon_sym_DOT_DOT] = ACTIONS(1162), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_move] = ACTIONS(1164), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1162), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1164), + [sym_super] = ACTIONS(1164), + [sym_crate] = ACTIONS(1164), + [sym_metavariable] = ACTIONS(1162), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), + [sym_block_comment] = ACTIONS(3), + }, + [265] = { + [ts_builtin_sym_end] = ACTIONS(1166), + [sym_identifier] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1166), + [anon_sym_macro_rules_BANG] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_RBRACE] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_u8] = ACTIONS(1168), + [anon_sym_i8] = ACTIONS(1168), + [anon_sym_u16] = ACTIONS(1168), + [anon_sym_i16] = ACTIONS(1168), + [anon_sym_u32] = ACTIONS(1168), + [anon_sym_i32] = ACTIONS(1168), + [anon_sym_u64] = ACTIONS(1168), + [anon_sym_i64] = ACTIONS(1168), + [anon_sym_u128] = ACTIONS(1168), + [anon_sym_i128] = ACTIONS(1168), + [anon_sym_isize] = ACTIONS(1168), + [anon_sym_usize] = ACTIONS(1168), + [anon_sym_f32] = ACTIONS(1168), + [anon_sym_f64] = ACTIONS(1168), + [anon_sym_bool] = ACTIONS(1168), + [anon_sym_str] = ACTIONS(1168), + [anon_sym_char] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_async] = ACTIONS(1168), + [anon_sym_break] = ACTIONS(1168), + [anon_sym_const] = ACTIONS(1168), + [anon_sym_continue] = ACTIONS(1168), + [anon_sym_default] = ACTIONS(1168), + [anon_sym_enum] = ACTIONS(1168), + [anon_sym_fn] = ACTIONS(1168), + [anon_sym_for] = ACTIONS(1168), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_impl] = ACTIONS(1168), + [anon_sym_let] = ACTIONS(1168), + [anon_sym_loop] = ACTIONS(1168), + [anon_sym_match] = ACTIONS(1168), + [anon_sym_mod] = ACTIONS(1168), + [anon_sym_pub] = ACTIONS(1168), + [anon_sym_return] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1168), + [anon_sym_struct] = ACTIONS(1168), + [anon_sym_trait] = ACTIONS(1168), + [anon_sym_type] = ACTIONS(1168), + [anon_sym_union] = ACTIONS(1168), + [anon_sym_unsafe] = ACTIONS(1168), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_while] = ACTIONS(1168), + [anon_sym_POUND] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1168), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_AMP] = ACTIONS(1166), + [anon_sym_DOT_DOT] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PIPE] = ACTIONS(1166), + [anon_sym_move] = ACTIONS(1168), + [sym_integer_literal] = ACTIONS(1166), + [aux_sym_string_literal_token1] = ACTIONS(1166), + [sym_char_literal] = ACTIONS(1166), + [anon_sym_true] = ACTIONS(1168), + [anon_sym_false] = ACTIONS(1168), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1168), + [sym_super] = ACTIONS(1168), + [sym_crate] = ACTIONS(1168), + [sym_metavariable] = ACTIONS(1166), + [sym_raw_string_literal] = ACTIONS(1166), + [sym_float_literal] = ACTIONS(1166), + [sym_block_comment] = ACTIONS(3), + }, + [266] = { + [ts_builtin_sym_end] = ACTIONS(1170), + [sym_identifier] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1170), + [anon_sym_macro_rules_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1170), + [anon_sym_u8] = ACTIONS(1172), + [anon_sym_i8] = ACTIONS(1172), + [anon_sym_u16] = ACTIONS(1172), + [anon_sym_i16] = ACTIONS(1172), + [anon_sym_u32] = ACTIONS(1172), + [anon_sym_i32] = ACTIONS(1172), + [anon_sym_u64] = ACTIONS(1172), + [anon_sym_i64] = ACTIONS(1172), + [anon_sym_u128] = ACTIONS(1172), + [anon_sym_i128] = ACTIONS(1172), + [anon_sym_isize] = ACTIONS(1172), + [anon_sym_usize] = ACTIONS(1172), + [anon_sym_f32] = ACTIONS(1172), + [anon_sym_f64] = ACTIONS(1172), + [anon_sym_bool] = ACTIONS(1172), + [anon_sym_str] = ACTIONS(1172), + [anon_sym_char] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_async] = ACTIONS(1172), + [anon_sym_break] = ACTIONS(1172), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_continue] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1172), + [anon_sym_enum] = ACTIONS(1172), + [anon_sym_fn] = ACTIONS(1172), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1172), + [anon_sym_impl] = ACTIONS(1172), + [anon_sym_let] = ACTIONS(1172), + [anon_sym_loop] = ACTIONS(1172), + [anon_sym_match] = ACTIONS(1172), + [anon_sym_mod] = ACTIONS(1172), + [anon_sym_pub] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1172), + [anon_sym_struct] = ACTIONS(1172), + [anon_sym_trait] = ACTIONS(1172), + [anon_sym_type] = ACTIONS(1172), + [anon_sym_union] = ACTIONS(1172), + [anon_sym_unsafe] = ACTIONS(1172), + [anon_sym_use] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1172), + [anon_sym_POUND] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(1170), + [anon_sym_AMP] = ACTIONS(1170), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PIPE] = ACTIONS(1170), + [anon_sym_move] = ACTIONS(1172), + [sym_integer_literal] = ACTIONS(1170), + [aux_sym_string_literal_token1] = ACTIONS(1170), + [sym_char_literal] = ACTIONS(1170), + [anon_sym_true] = ACTIONS(1172), + [anon_sym_false] = ACTIONS(1172), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1172), + [sym_super] = ACTIONS(1172), + [sym_crate] = ACTIONS(1172), + [sym_metavariable] = ACTIONS(1170), + [sym_raw_string_literal] = ACTIONS(1170), + [sym_float_literal] = ACTIONS(1170), + [sym_block_comment] = ACTIONS(3), + }, + [267] = { + [ts_builtin_sym_end] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1174), + [anon_sym_macro_rules_BANG] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_RBRACE] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_u8] = ACTIONS(1176), + [anon_sym_i8] = ACTIONS(1176), + [anon_sym_u16] = ACTIONS(1176), + [anon_sym_i16] = ACTIONS(1176), + [anon_sym_u32] = ACTIONS(1176), + [anon_sym_i32] = ACTIONS(1176), + [anon_sym_u64] = ACTIONS(1176), + [anon_sym_i64] = ACTIONS(1176), + [anon_sym_u128] = ACTIONS(1176), + [anon_sym_i128] = ACTIONS(1176), + [anon_sym_isize] = ACTIONS(1176), + [anon_sym_usize] = ACTIONS(1176), + [anon_sym_f32] = ACTIONS(1176), + [anon_sym_f64] = ACTIONS(1176), + [anon_sym_bool] = ACTIONS(1176), + [anon_sym_str] = ACTIONS(1176), + [anon_sym_char] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1176), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_continue] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1176), + [anon_sym_enum] = ACTIONS(1176), + [anon_sym_fn] = ACTIONS(1176), + [anon_sym_for] = ACTIONS(1176), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_impl] = ACTIONS(1176), + [anon_sym_let] = ACTIONS(1176), + [anon_sym_loop] = ACTIONS(1176), + [anon_sym_match] = ACTIONS(1176), + [anon_sym_mod] = ACTIONS(1176), + [anon_sym_pub] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1176), + [anon_sym_struct] = ACTIONS(1176), + [anon_sym_trait] = ACTIONS(1176), + [anon_sym_type] = ACTIONS(1176), + [anon_sym_union] = ACTIONS(1176), + [anon_sym_unsafe] = ACTIONS(1176), + [anon_sym_use] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_POUND] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1176), + [anon_sym_LT] = ACTIONS(1174), + [anon_sym_COLON_COLON] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_DOT_DOT] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PIPE] = ACTIONS(1174), + [anon_sym_move] = ACTIONS(1176), + [sym_integer_literal] = ACTIONS(1174), + [aux_sym_string_literal_token1] = ACTIONS(1174), + [sym_char_literal] = ACTIONS(1174), + [anon_sym_true] = ACTIONS(1176), + [anon_sym_false] = ACTIONS(1176), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1176), + [sym_super] = ACTIONS(1176), + [sym_crate] = ACTIONS(1176), + [sym_metavariable] = ACTIONS(1174), + [sym_raw_string_literal] = ACTIONS(1174), + [sym_float_literal] = ACTIONS(1174), + [sym_block_comment] = ACTIONS(3), + }, + [268] = { + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_identifier] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1178), + [anon_sym_macro_rules_BANG] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1178), + [anon_sym_u8] = ACTIONS(1180), + [anon_sym_i8] = ACTIONS(1180), + [anon_sym_u16] = ACTIONS(1180), + [anon_sym_i16] = ACTIONS(1180), + [anon_sym_u32] = ACTIONS(1180), + [anon_sym_i32] = ACTIONS(1180), + [anon_sym_u64] = ACTIONS(1180), + [anon_sym_i64] = ACTIONS(1180), + [anon_sym_u128] = ACTIONS(1180), + [anon_sym_i128] = ACTIONS(1180), + [anon_sym_isize] = ACTIONS(1180), + [anon_sym_usize] = ACTIONS(1180), + [anon_sym_f32] = ACTIONS(1180), + [anon_sym_f64] = ACTIONS(1180), + [anon_sym_bool] = ACTIONS(1180), + [anon_sym_str] = ACTIONS(1180), + [anon_sym_char] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_async] = ACTIONS(1180), + [anon_sym_break] = ACTIONS(1180), + [anon_sym_const] = ACTIONS(1180), + [anon_sym_continue] = ACTIONS(1180), + [anon_sym_default] = ACTIONS(1180), + [anon_sym_enum] = ACTIONS(1180), + [anon_sym_fn] = ACTIONS(1180), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_if] = ACTIONS(1180), + [anon_sym_impl] = ACTIONS(1180), + [anon_sym_let] = ACTIONS(1180), + [anon_sym_loop] = ACTIONS(1180), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_mod] = ACTIONS(1180), + [anon_sym_pub] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1180), + [anon_sym_static] = ACTIONS(1180), + [anon_sym_struct] = ACTIONS(1180), + [anon_sym_trait] = ACTIONS(1180), + [anon_sym_type] = ACTIONS(1180), + [anon_sym_union] = ACTIONS(1180), + [anon_sym_unsafe] = ACTIONS(1180), + [anon_sym_use] = ACTIONS(1180), + [anon_sym_while] = ACTIONS(1180), + [anon_sym_POUND] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1180), + [anon_sym_LT] = ACTIONS(1178), + [anon_sym_COLON_COLON] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_DOT_DOT] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1178), + [anon_sym_move] = ACTIONS(1180), + [sym_integer_literal] = ACTIONS(1178), + [aux_sym_string_literal_token1] = ACTIONS(1178), + [sym_char_literal] = ACTIONS(1178), + [anon_sym_true] = ACTIONS(1180), + [anon_sym_false] = ACTIONS(1180), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1178), + [sym_raw_string_literal] = ACTIONS(1178), + [sym_float_literal] = ACTIONS(1178), + [sym_block_comment] = ACTIONS(3), + }, + [269] = { + [ts_builtin_sym_end] = ACTIONS(1182), + [sym_identifier] = ACTIONS(1184), + [anon_sym_SEMI] = ACTIONS(1182), + [anon_sym_macro_rules_BANG] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1182), + [anon_sym_STAR] = ACTIONS(1182), + [anon_sym_u8] = ACTIONS(1184), + [anon_sym_i8] = ACTIONS(1184), + [anon_sym_u16] = ACTIONS(1184), + [anon_sym_i16] = ACTIONS(1184), + [anon_sym_u32] = ACTIONS(1184), + [anon_sym_i32] = ACTIONS(1184), + [anon_sym_u64] = ACTIONS(1184), + [anon_sym_i64] = ACTIONS(1184), + [anon_sym_u128] = ACTIONS(1184), + [anon_sym_i128] = ACTIONS(1184), + [anon_sym_isize] = ACTIONS(1184), + [anon_sym_usize] = ACTIONS(1184), + [anon_sym_f32] = ACTIONS(1184), + [anon_sym_f64] = ACTIONS(1184), + [anon_sym_bool] = ACTIONS(1184), + [anon_sym_str] = ACTIONS(1184), + [anon_sym_char] = ACTIONS(1184), + [anon_sym_SQUOTE] = ACTIONS(1184), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_const] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1184), + [anon_sym_default] = ACTIONS(1184), + [anon_sym_enum] = ACTIONS(1184), + [anon_sym_fn] = ACTIONS(1184), + [anon_sym_for] = ACTIONS(1184), + [anon_sym_if] = ACTIONS(1184), + [anon_sym_impl] = ACTIONS(1184), + [anon_sym_let] = ACTIONS(1184), + [anon_sym_loop] = ACTIONS(1184), + [anon_sym_match] = ACTIONS(1184), + [anon_sym_mod] = ACTIONS(1184), + [anon_sym_pub] = ACTIONS(1184), + [anon_sym_return] = ACTIONS(1184), + [anon_sym_static] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(1184), + [anon_sym_trait] = ACTIONS(1184), + [anon_sym_type] = ACTIONS(1184), + [anon_sym_union] = ACTIONS(1184), + [anon_sym_unsafe] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1184), + [anon_sym_while] = ACTIONS(1184), + [anon_sym_POUND] = ACTIONS(1182), + [anon_sym_BANG] = ACTIONS(1182), + [anon_sym_extern] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_COLON_COLON] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1182), + [anon_sym_DOT_DOT] = ACTIONS(1182), + [anon_sym_DASH] = ACTIONS(1182), + [anon_sym_PIPE] = ACTIONS(1182), + [anon_sym_move] = ACTIONS(1184), + [sym_integer_literal] = ACTIONS(1182), + [aux_sym_string_literal_token1] = ACTIONS(1182), + [sym_char_literal] = ACTIONS(1182), + [anon_sym_true] = ACTIONS(1184), + [anon_sym_false] = ACTIONS(1184), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(1182), + [sym_float_literal] = ACTIONS(1182), + [sym_block_comment] = ACTIONS(3), + }, + [270] = { + [ts_builtin_sym_end] = ACTIONS(1186), + [sym_identifier] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1186), + [anon_sym_macro_rules_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_RBRACE] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(1186), + [anon_sym_u8] = ACTIONS(1188), + [anon_sym_i8] = ACTIONS(1188), + [anon_sym_u16] = ACTIONS(1188), + [anon_sym_i16] = ACTIONS(1188), + [anon_sym_u32] = ACTIONS(1188), + [anon_sym_i32] = ACTIONS(1188), + [anon_sym_u64] = ACTIONS(1188), + [anon_sym_i64] = ACTIONS(1188), + [anon_sym_u128] = ACTIONS(1188), + [anon_sym_i128] = ACTIONS(1188), + [anon_sym_isize] = ACTIONS(1188), + [anon_sym_usize] = ACTIONS(1188), + [anon_sym_f32] = ACTIONS(1188), + [anon_sym_f64] = ACTIONS(1188), + [anon_sym_bool] = ACTIONS(1188), + [anon_sym_str] = ACTIONS(1188), + [anon_sym_char] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_async] = ACTIONS(1188), + [anon_sym_break] = ACTIONS(1188), + [anon_sym_const] = ACTIONS(1188), + [anon_sym_continue] = ACTIONS(1188), + [anon_sym_default] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(1188), + [anon_sym_fn] = ACTIONS(1188), + [anon_sym_for] = ACTIONS(1188), + [anon_sym_if] = ACTIONS(1188), + [anon_sym_impl] = ACTIONS(1188), + [anon_sym_let] = ACTIONS(1188), + [anon_sym_loop] = ACTIONS(1188), + [anon_sym_match] = ACTIONS(1188), + [anon_sym_mod] = ACTIONS(1188), + [anon_sym_pub] = ACTIONS(1188), + [anon_sym_return] = ACTIONS(1188), + [anon_sym_static] = ACTIONS(1188), + [anon_sym_struct] = ACTIONS(1188), + [anon_sym_trait] = ACTIONS(1188), + [anon_sym_type] = ACTIONS(1188), + [anon_sym_union] = ACTIONS(1188), + [anon_sym_unsafe] = ACTIONS(1188), + [anon_sym_use] = ACTIONS(1188), + [anon_sym_while] = ACTIONS(1188), + [anon_sym_POUND] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_extern] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_COLON_COLON] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(1186), + [anon_sym_DOT_DOT] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_PIPE] = ACTIONS(1186), + [anon_sym_move] = ACTIONS(1188), + [sym_integer_literal] = ACTIONS(1186), + [aux_sym_string_literal_token1] = ACTIONS(1186), + [sym_char_literal] = ACTIONS(1186), + [anon_sym_true] = ACTIONS(1188), + [anon_sym_false] = ACTIONS(1188), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1188), + [sym_super] = ACTIONS(1188), + [sym_crate] = ACTIONS(1188), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(1186), + [sym_float_literal] = ACTIONS(1186), + [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), + [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), + }, + [272] = { + [ts_builtin_sym_end] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_macro_rules_BANG] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_u8] = ACTIONS(1212), + [anon_sym_i8] = ACTIONS(1212), + [anon_sym_u16] = ACTIONS(1212), + [anon_sym_i16] = ACTIONS(1212), + [anon_sym_u32] = ACTIONS(1212), + [anon_sym_i32] = ACTIONS(1212), + [anon_sym_u64] = ACTIONS(1212), + [anon_sym_i64] = ACTIONS(1212), + [anon_sym_u128] = ACTIONS(1212), + [anon_sym_i128] = ACTIONS(1212), + [anon_sym_isize] = ACTIONS(1212), + [anon_sym_usize] = ACTIONS(1212), + [anon_sym_f32] = ACTIONS(1212), + [anon_sym_f64] = ACTIONS(1212), + [anon_sym_bool] = ACTIONS(1212), + [anon_sym_str] = ACTIONS(1212), + [anon_sym_char] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_fn] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_impl] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_loop] = ACTIONS(1212), + [anon_sym_match] = ACTIONS(1212), + [anon_sym_mod] = ACTIONS(1212), + [anon_sym_pub] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_trait] = ACTIONS(1212), + [anon_sym_type] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_unsafe] = ACTIONS(1212), + [anon_sym_use] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_POUND] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PIPE] = ACTIONS(1210), + [anon_sym_move] = ACTIONS(1212), + [sym_integer_literal] = ACTIONS(1210), + [aux_sym_string_literal_token1] = ACTIONS(1210), + [sym_char_literal] = ACTIONS(1210), + [anon_sym_true] = ACTIONS(1212), + [anon_sym_false] = ACTIONS(1212), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1212), + [sym_super] = ACTIONS(1212), + [sym_crate] = ACTIONS(1212), + [sym_metavariable] = ACTIONS(1210), + [sym_raw_string_literal] = ACTIONS(1210), + [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] = { + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_macro_rules_BANG] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1216), + [anon_sym_i8] = ACTIONS(1216), + [anon_sym_u16] = ACTIONS(1216), + [anon_sym_i16] = ACTIONS(1216), + [anon_sym_u32] = ACTIONS(1216), + [anon_sym_i32] = ACTIONS(1216), + [anon_sym_u64] = ACTIONS(1216), + [anon_sym_i64] = ACTIONS(1216), + [anon_sym_u128] = ACTIONS(1216), + [anon_sym_i128] = ACTIONS(1216), + [anon_sym_isize] = ACTIONS(1216), + [anon_sym_usize] = ACTIONS(1216), + [anon_sym_f32] = ACTIONS(1216), + [anon_sym_f64] = ACTIONS(1216), + [anon_sym_bool] = ACTIONS(1216), + [anon_sym_str] = ACTIONS(1216), + [anon_sym_char] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_async] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_fn] = ACTIONS(1216), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_impl] = ACTIONS(1216), + [anon_sym_let] = ACTIONS(1216), + [anon_sym_loop] = ACTIONS(1216), + [anon_sym_match] = ACTIONS(1216), + [anon_sym_mod] = ACTIONS(1216), + [anon_sym_pub] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_struct] = ACTIONS(1216), + [anon_sym_trait] = ACTIONS(1216), + [anon_sym_type] = ACTIONS(1216), + [anon_sym_union] = ACTIONS(1216), + [anon_sym_unsafe] = ACTIONS(1216), + [anon_sym_use] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_POUND] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_move] = ACTIONS(1216), + [sym_integer_literal] = ACTIONS(1214), + [aux_sym_string_literal_token1] = ACTIONS(1214), + [sym_char_literal] = ACTIONS(1214), + [anon_sym_true] = ACTIONS(1216), + [anon_sym_false] = ACTIONS(1216), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1214), + [sym_raw_string_literal] = ACTIONS(1214), + [sym_float_literal] = ACTIONS(1214), + [sym_block_comment] = ACTIONS(3), + }, + [276] = { + [ts_builtin_sym_end] = ACTIONS(1218), + [sym_identifier] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_macro_rules_BANG] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_u8] = ACTIONS(1220), + [anon_sym_i8] = ACTIONS(1220), + [anon_sym_u16] = ACTIONS(1220), + [anon_sym_i16] = ACTIONS(1220), + [anon_sym_u32] = ACTIONS(1220), + [anon_sym_i32] = ACTIONS(1220), + [anon_sym_u64] = ACTIONS(1220), + [anon_sym_i64] = ACTIONS(1220), + [anon_sym_u128] = ACTIONS(1220), + [anon_sym_i128] = ACTIONS(1220), + [anon_sym_isize] = ACTIONS(1220), + [anon_sym_usize] = ACTIONS(1220), + [anon_sym_f32] = ACTIONS(1220), + [anon_sym_f64] = ACTIONS(1220), + [anon_sym_bool] = ACTIONS(1220), + [anon_sym_str] = ACTIONS(1220), + [anon_sym_char] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_fn] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_impl] = ACTIONS(1220), + [anon_sym_let] = ACTIONS(1220), + [anon_sym_loop] = ACTIONS(1220), + [anon_sym_match] = ACTIONS(1220), + [anon_sym_mod] = ACTIONS(1220), + [anon_sym_pub] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_trait] = ACTIONS(1220), + [anon_sym_type] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_unsafe] = ACTIONS(1220), + [anon_sym_use] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_POUND] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1218), + [anon_sym_COLON_COLON] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_DOT_DOT] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_move] = ACTIONS(1220), + [sym_integer_literal] = ACTIONS(1218), + [aux_sym_string_literal_token1] = ACTIONS(1218), + [sym_char_literal] = ACTIONS(1218), + [anon_sym_true] = ACTIONS(1220), + [anon_sym_false] = ACTIONS(1220), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1220), + [sym_super] = ACTIONS(1220), + [sym_crate] = ACTIONS(1220), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(1218), + [sym_float_literal] = ACTIONS(1218), + [sym_block_comment] = ACTIONS(3), + }, + [277] = { + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_macro_rules_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_fn] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_impl] = ACTIONS(1224), + [anon_sym_let] = ACTIONS(1224), + [anon_sym_loop] = ACTIONS(1224), + [anon_sym_match] = ACTIONS(1224), + [anon_sym_mod] = ACTIONS(1224), + [anon_sym_pub] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_struct] = ACTIONS(1224), + [anon_sym_trait] = ACTIONS(1224), + [anon_sym_type] = ACTIONS(1224), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_unsafe] = ACTIONS(1224), + [anon_sym_use] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_POUND] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_COLON_COLON] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_DOT_DOT] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_move] = ACTIONS(1224), + [sym_integer_literal] = ACTIONS(1222), + [aux_sym_string_literal_token1] = ACTIONS(1222), + [sym_char_literal] = ACTIONS(1222), + [anon_sym_true] = ACTIONS(1224), + [anon_sym_false] = ACTIONS(1224), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1224), + [sym_super] = ACTIONS(1224), + [sym_crate] = ACTIONS(1224), + [sym_metavariable] = ACTIONS(1222), + [sym_raw_string_literal] = ACTIONS(1222), + [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] = { + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_macro_rules_BANG] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_u8] = ACTIONS(1228), + [anon_sym_i8] = ACTIONS(1228), + [anon_sym_u16] = ACTIONS(1228), + [anon_sym_i16] = ACTIONS(1228), + [anon_sym_u32] = ACTIONS(1228), + [anon_sym_i32] = ACTIONS(1228), + [anon_sym_u64] = ACTIONS(1228), + [anon_sym_i64] = ACTIONS(1228), + [anon_sym_u128] = ACTIONS(1228), + [anon_sym_i128] = ACTIONS(1228), + [anon_sym_isize] = ACTIONS(1228), + [anon_sym_usize] = ACTIONS(1228), + [anon_sym_f32] = ACTIONS(1228), + [anon_sym_f64] = ACTIONS(1228), + [anon_sym_bool] = ACTIONS(1228), + [anon_sym_str] = ACTIONS(1228), + [anon_sym_char] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_async] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_const] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_impl] = ACTIONS(1228), + [anon_sym_let] = ACTIONS(1228), + [anon_sym_loop] = ACTIONS(1228), + [anon_sym_match] = ACTIONS(1228), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_pub] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1228), + [anon_sym_trait] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_unsafe] = ACTIONS(1228), + [anon_sym_use] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_POUND] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_extern] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_COLON_COLON] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_DOT_DOT] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_move] = ACTIONS(1228), + [sym_integer_literal] = ACTIONS(1226), + [aux_sym_string_literal_token1] = ACTIONS(1226), + [sym_char_literal] = ACTIONS(1226), + [anon_sym_true] = ACTIONS(1228), + [anon_sym_false] = ACTIONS(1228), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1228), + [sym_super] = ACTIONS(1228), + [sym_crate] = ACTIONS(1228), + [sym_metavariable] = ACTIONS(1226), + [sym_raw_string_literal] = ACTIONS(1226), + [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), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_macro_rules_BANG] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_RBRACE] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_u8] = ACTIONS(1232), + [anon_sym_i8] = ACTIONS(1232), + [anon_sym_u16] = ACTIONS(1232), + [anon_sym_i16] = ACTIONS(1232), + [anon_sym_u32] = ACTIONS(1232), + [anon_sym_i32] = ACTIONS(1232), + [anon_sym_u64] = ACTIONS(1232), + [anon_sym_i64] = ACTIONS(1232), + [anon_sym_u128] = ACTIONS(1232), + [anon_sym_i128] = ACTIONS(1232), + [anon_sym_isize] = ACTIONS(1232), + [anon_sym_usize] = ACTIONS(1232), + [anon_sym_f32] = ACTIONS(1232), + [anon_sym_f64] = ACTIONS(1232), + [anon_sym_bool] = ACTIONS(1232), + [anon_sym_str] = ACTIONS(1232), + [anon_sym_char] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_async] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_fn] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_let] = ACTIONS(1232), + [anon_sym_loop] = ACTIONS(1232), + [anon_sym_match] = ACTIONS(1232), + [anon_sym_mod] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_trait] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_unsafe] = ACTIONS(1232), + [anon_sym_use] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_POUND] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_DOT_DOT] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1232), + [sym_integer_literal] = ACTIONS(1230), + [aux_sym_string_literal_token1] = ACTIONS(1230), + [sym_char_literal] = ACTIONS(1230), + [anon_sym_true] = ACTIONS(1232), + [anon_sym_false] = ACTIONS(1232), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1232), + [sym_super] = ACTIONS(1232), + [sym_crate] = ACTIONS(1232), + [sym_metavariable] = ACTIONS(1230), + [sym_raw_string_literal] = ACTIONS(1230), + [sym_float_literal] = ACTIONS(1230), + [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), + [anon_sym_macro_rules_BANG] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_u8] = ACTIONS(1236), + [anon_sym_i8] = ACTIONS(1236), + [anon_sym_u16] = ACTIONS(1236), + [anon_sym_i16] = ACTIONS(1236), + [anon_sym_u32] = ACTIONS(1236), + [anon_sym_i32] = ACTIONS(1236), + [anon_sym_u64] = ACTIONS(1236), + [anon_sym_i64] = ACTIONS(1236), + [anon_sym_u128] = ACTIONS(1236), + [anon_sym_i128] = ACTIONS(1236), + [anon_sym_isize] = ACTIONS(1236), + [anon_sym_usize] = ACTIONS(1236), + [anon_sym_f32] = ACTIONS(1236), + [anon_sym_f64] = ACTIONS(1236), + [anon_sym_bool] = ACTIONS(1236), + [anon_sym_str] = ACTIONS(1236), + [anon_sym_char] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_async] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_fn] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_impl] = ACTIONS(1236), + [anon_sym_let] = ACTIONS(1236), + [anon_sym_loop] = ACTIONS(1236), + [anon_sym_match] = ACTIONS(1236), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_pub] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_trait] = ACTIONS(1236), + [anon_sym_type] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_unsafe] = ACTIONS(1236), + [anon_sym_use] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_POUND] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_DOT_DOT] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_move] = ACTIONS(1236), + [sym_integer_literal] = ACTIONS(1234), + [aux_sym_string_literal_token1] = ACTIONS(1234), + [sym_char_literal] = ACTIONS(1234), + [anon_sym_true] = ACTIONS(1236), + [anon_sym_false] = ACTIONS(1236), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1236), + [sym_super] = ACTIONS(1236), + [sym_crate] = ACTIONS(1236), + [sym_metavariable] = ACTIONS(1234), + [sym_raw_string_literal] = ACTIONS(1234), + [sym_float_literal] = ACTIONS(1234), + [sym_block_comment] = ACTIONS(3), + }, + [284] = { + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_identifier] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_macro_rules_BANG] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_u8] = ACTIONS(1240), + [anon_sym_i8] = ACTIONS(1240), + [anon_sym_u16] = ACTIONS(1240), + [anon_sym_i16] = ACTIONS(1240), + [anon_sym_u32] = ACTIONS(1240), + [anon_sym_i32] = ACTIONS(1240), + [anon_sym_u64] = ACTIONS(1240), + [anon_sym_i64] = ACTIONS(1240), + [anon_sym_u128] = ACTIONS(1240), + [anon_sym_i128] = ACTIONS(1240), + [anon_sym_isize] = ACTIONS(1240), + [anon_sym_usize] = ACTIONS(1240), + [anon_sym_f32] = ACTIONS(1240), + [anon_sym_f64] = ACTIONS(1240), + [anon_sym_bool] = ACTIONS(1240), + [anon_sym_str] = ACTIONS(1240), + [anon_sym_char] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_async] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_fn] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_impl] = ACTIONS(1240), + [anon_sym_let] = ACTIONS(1240), + [anon_sym_loop] = ACTIONS(1240), + [anon_sym_match] = ACTIONS(1240), + [anon_sym_mod] = ACTIONS(1240), + [anon_sym_pub] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_trait] = ACTIONS(1240), + [anon_sym_type] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_unsafe] = ACTIONS(1240), + [anon_sym_use] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_COLON_COLON] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_DOT_DOT] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_move] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1238), + [aux_sym_string_literal_token1] = ACTIONS(1238), + [sym_char_literal] = ACTIONS(1238), + [anon_sym_true] = ACTIONS(1240), + [anon_sym_false] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1240), + [sym_super] = ACTIONS(1240), + [sym_crate] = ACTIONS(1240), + [sym_metavariable] = ACTIONS(1238), + [sym_raw_string_literal] = ACTIONS(1238), + [sym_float_literal] = ACTIONS(1238), + [sym_block_comment] = ACTIONS(3), + }, + [285] = { + [ts_builtin_sym_end] = ACTIONS(1242), + [sym_identifier] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_macro_rules_BANG] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_const] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_fn] = ACTIONS(1244), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1244), + [anon_sym_impl] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_loop] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1244), + [anon_sym_mod] = ACTIONS(1244), + [anon_sym_pub] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_struct] = ACTIONS(1244), + [anon_sym_trait] = ACTIONS(1244), + [anon_sym_type] = ACTIONS(1244), + [anon_sym_union] = ACTIONS(1244), + [anon_sym_unsafe] = ACTIONS(1244), + [anon_sym_use] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_COLON_COLON] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_DOT_DOT] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_move] = ACTIONS(1244), + [sym_integer_literal] = ACTIONS(1242), + [aux_sym_string_literal_token1] = ACTIONS(1242), + [sym_char_literal] = ACTIONS(1242), + [anon_sym_true] = ACTIONS(1244), + [anon_sym_false] = ACTIONS(1244), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1244), + [sym_super] = ACTIONS(1244), + [sym_crate] = ACTIONS(1244), + [sym_metavariable] = ACTIONS(1242), + [sym_raw_string_literal] = ACTIONS(1242), + [sym_float_literal] = ACTIONS(1242), + [sym_block_comment] = ACTIONS(3), + }, + [286] = { + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_identifier] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_macro_rules_BANG] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_u8] = ACTIONS(1248), + [anon_sym_i8] = ACTIONS(1248), + [anon_sym_u16] = ACTIONS(1248), + [anon_sym_i16] = ACTIONS(1248), + [anon_sym_u32] = ACTIONS(1248), + [anon_sym_i32] = ACTIONS(1248), + [anon_sym_u64] = ACTIONS(1248), + [anon_sym_i64] = ACTIONS(1248), + [anon_sym_u128] = ACTIONS(1248), + [anon_sym_i128] = ACTIONS(1248), + [anon_sym_isize] = ACTIONS(1248), + [anon_sym_usize] = ACTIONS(1248), + [anon_sym_f32] = ACTIONS(1248), + [anon_sym_f64] = ACTIONS(1248), + [anon_sym_bool] = ACTIONS(1248), + [anon_sym_str] = ACTIONS(1248), + [anon_sym_char] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_async] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_fn] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_impl] = ACTIONS(1248), + [anon_sym_let] = ACTIONS(1248), + [anon_sym_loop] = ACTIONS(1248), + [anon_sym_match] = ACTIONS(1248), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_pub] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_trait] = ACTIONS(1248), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_unsafe] = ACTIONS(1248), + [anon_sym_use] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_POUND] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_COLON_COLON] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_DOT_DOT] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_move] = ACTIONS(1248), + [sym_integer_literal] = ACTIONS(1246), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1246), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1248), + [sym_super] = ACTIONS(1248), + [sym_crate] = ACTIONS(1248), + [sym_metavariable] = ACTIONS(1246), + [sym_raw_string_literal] = ACTIONS(1246), + [sym_float_literal] = ACTIONS(1246), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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_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), + [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), + [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), + [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_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), + [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_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), + [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), + [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), + }, + [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_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), + [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_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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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_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), + [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), + [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), + [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), + [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), + [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), + [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_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), + [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), + [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_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_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), + [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), + [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_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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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_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_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), + [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), + [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_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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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_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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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_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_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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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_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), + [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), + [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), + [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_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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [sym_block_comment] = ACTIONS(3), + }, + [462] = { + [ts_builtin_sym_end] = ACTIONS(1943), + [sym_identifier] = ACTIONS(1945), + [anon_sym_SEMI] = ACTIONS(1943), + [anon_sym_macro_rules_BANG] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1943), + [anon_sym_u8] = ACTIONS(1945), + [anon_sym_i8] = ACTIONS(1945), + [anon_sym_u16] = ACTIONS(1945), + [anon_sym_i16] = ACTIONS(1945), + [anon_sym_u32] = ACTIONS(1945), + [anon_sym_i32] = ACTIONS(1945), + [anon_sym_u64] = ACTIONS(1945), + [anon_sym_i64] = ACTIONS(1945), + [anon_sym_u128] = ACTIONS(1945), + [anon_sym_i128] = ACTIONS(1945), + [anon_sym_isize] = ACTIONS(1945), + [anon_sym_usize] = ACTIONS(1945), + [anon_sym_f32] = ACTIONS(1945), + [anon_sym_f64] = ACTIONS(1945), + [anon_sym_bool] = ACTIONS(1945), + [anon_sym_str] = ACTIONS(1945), + [anon_sym_char] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_async] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(1945), + [anon_sym_enum] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_impl] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_mod] = ACTIONS(1945), + [anon_sym_pub] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_static] = ACTIONS(1945), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_trait] = ACTIONS(1945), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_union] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(1943), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_move] = ACTIONS(1945), + [sym_integer_literal] = ACTIONS(1943), + [aux_sym_string_literal_token1] = ACTIONS(1943), + [sym_char_literal] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1945), + [sym_super] = ACTIONS(1945), + [sym_crate] = ACTIONS(1945), + [sym_metavariable] = ACTIONS(1943), + [sym_raw_string_literal] = ACTIONS(1943), + [sym_float_literal] = ACTIONS(1943), + [sym_block_comment] = ACTIONS(3), + }, + [463] = { + [ts_builtin_sym_end] = ACTIONS(1947), + [sym_identifier] = ACTIONS(1949), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_macro_rules_BANG] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_u8] = ACTIONS(1949), + [anon_sym_i8] = ACTIONS(1949), + [anon_sym_u16] = ACTIONS(1949), + [anon_sym_i16] = ACTIONS(1949), + [anon_sym_u32] = ACTIONS(1949), + [anon_sym_i32] = ACTIONS(1949), + [anon_sym_u64] = ACTIONS(1949), + [anon_sym_i64] = ACTIONS(1949), + [anon_sym_u128] = ACTIONS(1949), + [anon_sym_i128] = ACTIONS(1949), + [anon_sym_isize] = ACTIONS(1949), + [anon_sym_usize] = ACTIONS(1949), + [anon_sym_f32] = ACTIONS(1949), + [anon_sym_f64] = ACTIONS(1949), + [anon_sym_bool] = ACTIONS(1949), + [anon_sym_str] = ACTIONS(1949), + [anon_sym_char] = ACTIONS(1949), + [anon_sym_SQUOTE] = ACTIONS(1949), + [anon_sym_async] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_default] = ACTIONS(1949), + [anon_sym_enum] = ACTIONS(1949), + [anon_sym_fn] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_impl] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_mod] = ACTIONS(1949), + [anon_sym_pub] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_static] = ACTIONS(1949), + [anon_sym_struct] = ACTIONS(1949), + [anon_sym_trait] = ACTIONS(1949), + [anon_sym_type] = ACTIONS(1949), + [anon_sym_union] = ACTIONS(1949), + [anon_sym_unsafe] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_COLON_COLON] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_move] = ACTIONS(1949), + [sym_integer_literal] = ACTIONS(1947), + [aux_sym_string_literal_token1] = ACTIONS(1947), + [sym_char_literal] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1949), + [sym_super] = ACTIONS(1949), + [sym_crate] = ACTIONS(1949), + [sym_metavariable] = ACTIONS(1947), + [sym_raw_string_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1947), + [sym_block_comment] = ACTIONS(3), + }, + [464] = { + [ts_builtin_sym_end] = ACTIONS(1951), + [sym_identifier] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1951), + [anon_sym_macro_rules_BANG] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_STAR] = ACTIONS(1951), + [anon_sym_u8] = ACTIONS(1953), + [anon_sym_i8] = ACTIONS(1953), + [anon_sym_u16] = ACTIONS(1953), + [anon_sym_i16] = ACTIONS(1953), + [anon_sym_u32] = ACTIONS(1953), + [anon_sym_i32] = ACTIONS(1953), + [anon_sym_u64] = ACTIONS(1953), + [anon_sym_i64] = ACTIONS(1953), + [anon_sym_u128] = ACTIONS(1953), + [anon_sym_i128] = ACTIONS(1953), + [anon_sym_isize] = ACTIONS(1953), + [anon_sym_usize] = ACTIONS(1953), + [anon_sym_f32] = ACTIONS(1953), + [anon_sym_f64] = ACTIONS(1953), + [anon_sym_bool] = ACTIONS(1953), + [anon_sym_str] = ACTIONS(1953), + [anon_sym_char] = ACTIONS(1953), + [anon_sym_SQUOTE] = ACTIONS(1953), + [anon_sym_async] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_fn] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_impl] = ACTIONS(1953), + [anon_sym_let] = ACTIONS(1953), + [anon_sym_loop] = ACTIONS(1953), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_mod] = ACTIONS(1953), + [anon_sym_pub] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [anon_sym_trait] = ACTIONS(1953), + [anon_sym_type] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [anon_sym_unsafe] = ACTIONS(1953), + [anon_sym_use] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_POUND] = ACTIONS(1951), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1951), + [anon_sym_COLON_COLON] = ACTIONS(1951), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1951), + [anon_sym_move] = ACTIONS(1953), + [sym_integer_literal] = ACTIONS(1951), + [aux_sym_string_literal_token1] = ACTIONS(1951), + [sym_char_literal] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1953), + [sym_super] = ACTIONS(1953), + [sym_crate] = ACTIONS(1953), + [sym_metavariable] = ACTIONS(1951), + [sym_raw_string_literal] = ACTIONS(1951), + [sym_float_literal] = ACTIONS(1951), + [sym_block_comment] = ACTIONS(3), + }, + [465] = { + [ts_builtin_sym_end] = ACTIONS(1955), + [sym_identifier] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_macro_rules_BANG] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_u8] = ACTIONS(1957), + [anon_sym_i8] = ACTIONS(1957), + [anon_sym_u16] = ACTIONS(1957), + [anon_sym_i16] = ACTIONS(1957), + [anon_sym_u32] = ACTIONS(1957), + [anon_sym_i32] = ACTIONS(1957), + [anon_sym_u64] = ACTIONS(1957), + [anon_sym_i64] = ACTIONS(1957), + [anon_sym_u128] = ACTIONS(1957), + [anon_sym_i128] = ACTIONS(1957), + [anon_sym_isize] = ACTIONS(1957), + [anon_sym_usize] = ACTIONS(1957), + [anon_sym_f32] = ACTIONS(1957), + [anon_sym_f64] = ACTIONS(1957), + [anon_sym_bool] = ACTIONS(1957), + [anon_sym_str] = ACTIONS(1957), + [anon_sym_char] = ACTIONS(1957), + [anon_sym_SQUOTE] = ACTIONS(1957), + [anon_sym_async] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_default] = ACTIONS(1957), + [anon_sym_enum] = ACTIONS(1957), + [anon_sym_fn] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_impl] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_mod] = ACTIONS(1957), + [anon_sym_pub] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_trait] = ACTIONS(1957), + [anon_sym_type] = ACTIONS(1957), + [anon_sym_union] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(1955), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1955), + [anon_sym_COLON_COLON] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_move] = ACTIONS(1957), + [sym_integer_literal] = ACTIONS(1955), + [aux_sym_string_literal_token1] = ACTIONS(1955), + [sym_char_literal] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_false] = ACTIONS(1957), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1957), + [sym_super] = ACTIONS(1957), + [sym_crate] = ACTIONS(1957), + [sym_metavariable] = ACTIONS(1955), + [sym_raw_string_literal] = ACTIONS(1955), + [sym_float_literal] = ACTIONS(1955), + [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), + [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), + [aux_sym_string_literal_token1] = ACTIONS(2007), + [sym_char_literal] = ACTIONS(2004), + [anon_sym_true] = ACTIONS(2010), + [anon_sym_false] = ACTIONS(2010), + [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_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), + [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), + [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), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), + [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), + [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), + [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_u8] = ACTIONS(2041), + [anon_sym_i8] = ACTIONS(2041), + [anon_sym_u16] = ACTIONS(2041), + [anon_sym_i16] = ACTIONS(2041), + [anon_sym_u32] = ACTIONS(2041), + [anon_sym_i32] = ACTIONS(2041), + [anon_sym_u64] = ACTIONS(2041), + [anon_sym_i64] = ACTIONS(2041), + [anon_sym_u128] = ACTIONS(2041), + [anon_sym_i128] = ACTIONS(2041), + [anon_sym_isize] = ACTIONS(2041), + [anon_sym_usize] = ACTIONS(2041), + [anon_sym_f32] = ACTIONS(2041), + [anon_sym_f64] = ACTIONS(2041), + [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), + [anon_sym_default] = ACTIONS(2041), + [anon_sym_enum] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_impl] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2041), + [anon_sym_loop] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_mod] = ACTIONS(2041), + [anon_sym_pub] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_static] = ACTIONS(2041), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_trait] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2041), + [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), + [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_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), + [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), + [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_u8] = ACTIONS(2049), + [anon_sym_i8] = ACTIONS(2049), + [anon_sym_u16] = ACTIONS(2049), + [anon_sym_i16] = ACTIONS(2049), + [anon_sym_u32] = ACTIONS(2049), + [anon_sym_i32] = ACTIONS(2049), + [anon_sym_u64] = ACTIONS(2049), + [anon_sym_i64] = ACTIONS(2049), + [anon_sym_u128] = ACTIONS(2049), + [anon_sym_i128] = ACTIONS(2049), + [anon_sym_isize] = ACTIONS(2049), + [anon_sym_usize] = ACTIONS(2049), + [anon_sym_f32] = ACTIONS(2049), + [anon_sym_f64] = ACTIONS(2049), + [anon_sym_bool] = ACTIONS(2049), + [anon_sym_str] = ACTIONS(2049), + [anon_sym_char] = ACTIONS(2049), + [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), + [anon_sym_default] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_impl] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_mod] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_trait] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [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), + [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_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), + [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_u8] = ACTIONS(2053), + [anon_sym_i8] = ACTIONS(2053), + [anon_sym_u16] = ACTIONS(2053), + [anon_sym_i16] = ACTIONS(2053), + [anon_sym_u32] = ACTIONS(2053), + [anon_sym_i32] = ACTIONS(2053), + [anon_sym_u64] = ACTIONS(2053), + [anon_sym_i64] = ACTIONS(2053), + [anon_sym_u128] = ACTIONS(2053), + [anon_sym_i128] = ACTIONS(2053), + [anon_sym_isize] = ACTIONS(2053), + [anon_sym_usize] = ACTIONS(2053), + [anon_sym_f32] = ACTIONS(2053), + [anon_sym_f64] = ACTIONS(2053), + [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), + [anon_sym_default] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_impl] = ACTIONS(2053), + [anon_sym_let] = ACTIONS(2053), + [anon_sym_loop] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_mod] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [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), + [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_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_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_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_u8] = ACTIONS(2115), + [anon_sym_i8] = ACTIONS(2115), + [anon_sym_u16] = ACTIONS(2115), + [anon_sym_i16] = ACTIONS(2115), + [anon_sym_u32] = ACTIONS(2115), + [anon_sym_i32] = ACTIONS(2115), + [anon_sym_u64] = ACTIONS(2115), + [anon_sym_i64] = ACTIONS(2115), + [anon_sym_u128] = ACTIONS(2115), + [anon_sym_i128] = ACTIONS(2115), + [anon_sym_isize] = ACTIONS(2115), + [anon_sym_usize] = ACTIONS(2115), + [anon_sym_f32] = ACTIONS(2115), + [anon_sym_f64] = ACTIONS(2115), + [anon_sym_bool] = ACTIONS(2115), + [anon_sym_str] = ACTIONS(2115), + [anon_sym_char] = ACTIONS(2115), + [aux_sym__non_special_token_token1] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_async] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(2115), + [anon_sym_continue] = ACTIONS(2115), + [anon_sym_default] = ACTIONS(2115), + [anon_sym_enum] = ACTIONS(2115), + [anon_sym_fn] = ACTIONS(2115), + [anon_sym_for] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_impl] = ACTIONS(2115), + [anon_sym_let] = ACTIONS(2115), + [anon_sym_loop] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_mod] = ACTIONS(2115), + [anon_sym_pub] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(2115), + [anon_sym_trait] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_union] = ACTIONS(2115), + [anon_sym_unsafe] = ACTIONS(2115), + [anon_sym_use] = ACTIONS(2115), + [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_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_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), + [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), + [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), + [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), + [sym_block_comment] = ACTIONS(3), + }, + [509] = { + [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_u8] = ACTIONS(2145), + [anon_sym_i8] = ACTIONS(2145), + [anon_sym_u16] = ACTIONS(2145), + [anon_sym_i16] = ACTIONS(2145), + [anon_sym_u32] = ACTIONS(2145), + [anon_sym_i32] = ACTIONS(2145), + [anon_sym_u64] = ACTIONS(2145), + [anon_sym_i64] = ACTIONS(2145), + [anon_sym_u128] = ACTIONS(2145), + [anon_sym_i128] = ACTIONS(2145), + [anon_sym_isize] = ACTIONS(2145), + [anon_sym_usize] = ACTIONS(2145), + [anon_sym_f32] = ACTIONS(2145), + [anon_sym_f64] = ACTIONS(2145), + [anon_sym_bool] = ACTIONS(2145), + [anon_sym_str] = ACTIONS(2145), + [anon_sym_char] = ACTIONS(2145), + [aux_sym__non_special_token_token1] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_as] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_default] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [anon_sym_fn] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_impl] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_loop] = ACTIONS(2145), + [anon_sym_match] = ACTIONS(2145), + [anon_sym_mod] = ACTIONS(2145), + [anon_sym_pub] = ACTIONS(2145), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2145), + [anon_sym_trait] = ACTIONS(2145), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_union] = ACTIONS(2145), + [anon_sym_unsafe] = ACTIONS(2145), + [anon_sym_use] = ACTIONS(2145), + [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_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_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), + [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), + [sym_block_comment] = ACTIONS(3), + }, + [512] = { + [sym_identifier] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [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), + [sym_block_comment] = ACTIONS(3), + }, + [513] = { + [sym_identifier] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2157), + [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_u8] = ACTIONS(2155), + [anon_sym_i8] = ACTIONS(2155), + [anon_sym_u16] = ACTIONS(2155), + [anon_sym_i16] = ACTIONS(2155), + [anon_sym_u32] = ACTIONS(2155), + [anon_sym_i32] = ACTIONS(2155), + [anon_sym_u64] = ACTIONS(2155), + [anon_sym_i64] = ACTIONS(2155), + [anon_sym_u128] = ACTIONS(2155), + [anon_sym_i128] = ACTIONS(2155), + [anon_sym_isize] = ACTIONS(2155), + [anon_sym_usize] = ACTIONS(2155), + [anon_sym_f32] = ACTIONS(2155), + [anon_sym_f64] = ACTIONS(2155), + [anon_sym_bool] = ACTIONS(2155), + [anon_sym_str] = ACTIONS(2155), + [anon_sym_char] = ACTIONS(2155), + [aux_sym__non_special_token_token1] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2155), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [anon_sym_fn] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_impl] = ACTIONS(2155), + [anon_sym_let] = ACTIONS(2155), + [anon_sym_loop] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_mod] = ACTIONS(2155), + [anon_sym_pub] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_static] = ACTIONS(2155), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_trait] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_unsafe] = ACTIONS(2155), + [anon_sym_use] = ACTIONS(2155), + [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_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_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), + [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), + [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), + [sym_metavariable] = ACTIONS(2167), + [sym_block_comment] = ACTIONS(3), + }, + [516] = { + [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_RBRACK] = ACTIONS(2171), + [anon_sym_DOLLAR] = ACTIONS(2169), + [anon_sym_u8] = ACTIONS(2169), + [anon_sym_i8] = ACTIONS(2169), + [anon_sym_u16] = ACTIONS(2169), + [anon_sym_i16] = ACTIONS(2169), + [anon_sym_u32] = ACTIONS(2169), + [anon_sym_i32] = ACTIONS(2169), + [anon_sym_u64] = ACTIONS(2169), + [anon_sym_i64] = ACTIONS(2169), + [anon_sym_u128] = ACTIONS(2169), + [anon_sym_i128] = ACTIONS(2169), + [anon_sym_isize] = ACTIONS(2169), + [anon_sym_usize] = ACTIONS(2169), + [anon_sym_f32] = ACTIONS(2169), + [anon_sym_f64] = ACTIONS(2169), + [anon_sym_bool] = ACTIONS(2169), + [anon_sym_str] = ACTIONS(2169), + [anon_sym_char] = ACTIONS(2169), + [aux_sym__non_special_token_token1] = ACTIONS(2169), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_async] = ACTIONS(2169), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_default] = ACTIONS(2169), + [anon_sym_enum] = ACTIONS(2169), + [anon_sym_fn] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_impl] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_loop] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_mod] = ACTIONS(2169), + [anon_sym_pub] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_static] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2169), + [anon_sym_trait] = ACTIONS(2169), + [anon_sym_type] = ACTIONS(2169), + [anon_sym_union] = ACTIONS(2169), + [anon_sym_unsafe] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [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_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_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), + [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), + [sym_block_comment] = ACTIONS(3), + }, + [519] = { + [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_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [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_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_block_comment] = ACTIONS(3), + }, + [520] = { + [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_RBRACK] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2181), + [anon_sym_u8] = ACTIONS(2181), + [anon_sym_i8] = ACTIONS(2181), + [anon_sym_u16] = ACTIONS(2181), + [anon_sym_i16] = ACTIONS(2181), + [anon_sym_u32] = ACTIONS(2181), + [anon_sym_i32] = ACTIONS(2181), + [anon_sym_u64] = ACTIONS(2181), + [anon_sym_i64] = ACTIONS(2181), + [anon_sym_u128] = ACTIONS(2181), + [anon_sym_i128] = ACTIONS(2181), + [anon_sym_isize] = ACTIONS(2181), + [anon_sym_usize] = ACTIONS(2181), + [anon_sym_f32] = ACTIONS(2181), + [anon_sym_f64] = ACTIONS(2181), + [anon_sym_bool] = ACTIONS(2181), + [anon_sym_str] = ACTIONS(2181), + [anon_sym_char] = ACTIONS(2181), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [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_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_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), + [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), + [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_COMMA] = ACTIONS(794), + [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), + }, + [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), + [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), + [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_COMMA] = ACTIONS(818), + [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), + }, + [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), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(2191), + [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_COMMA] = ACTIONS(2193), + [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), + }, + [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), + [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), + [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(2203), + [anon_sym_union] = ACTIONS(2203), + [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(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_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_block_comment] = ACTIONS(3), + }, + [528] = { + [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_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), + [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), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(2231), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [anon_sym_LPAREN] = ACTIONS(1078), + [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), + [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), + [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), + }, + [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_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), + [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), + }, + [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), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(2243), + [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), + [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), + }, + [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), + [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), + [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), + [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), + }, + [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), + [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(2203), + [anon_sym_union] = ACTIONS(2203), + [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(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_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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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(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_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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2291), + [anon_sym_union] = ACTIONS(2291), + [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(2293), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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(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_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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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(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_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), + [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(2291), + [anon_sym_union] = ACTIONS(2291), + [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(2301), + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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(2189), + [anon_sym_union] = ACTIONS(2189), + [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), + }, + [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), + [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), + [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), + [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_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_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_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_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_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_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_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_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), + }, +}; + +static uint16_t ts_small_parse_table[] = { + [0] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2246), 1, - anon_sym_LT, - ACTIONS(2278), 1, + ACTIONS(2119), 1, sym_identifier, - STATE(606), 1, - sym_type_parameters, - STATE(1222), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, sym_for_lifetimes, - STATE(1448), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1592), 1, - sym__type, - STATE(1593), 1, + STATE(1305), 1, sym_generic_type, - STATE(2157), 1, + STATE(1691), 1, + sym__type, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -64161,472 +65330,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 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, - [3956] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2161), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [4077] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1366), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [4198] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2038), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [4319] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(1877), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [4440] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2033), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64644,268 +65348,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4561] = 28, + [129] = 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_ref, + anon_sym_BANG, + ACTIONS(696), 1, + anon_sym_extern, ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(1892), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(1900), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(1904), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2139), 1, + ACTIONS(2119), 1, sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(2029), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, + STATE(1305), 1, sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [4682] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, + STATE(1591), 1, + sym__type, + STATE(2194), 1, sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2028), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, + STATE(2289), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [4803] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2027), 1, - sym__pattern, - STATE(2228), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, + STATE(2308), 1, + sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 17, + 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, @@ -64923,82 +65445,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4924] = 28, + [258] = 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_ref, + anon_sym_BANG, + ACTIONS(696), 1, + anon_sym_extern, ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(1892), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(1900), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(1904), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2139), 1, + ACTIONS(2119), 1, sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(2020), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, + STATE(1305), 1, sym_generic_type, - STATE(2234), 1, + STATE(1981), 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, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, + 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(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 17, + 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, @@ -65016,82 +65542,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5045] = 28, + [387] = 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_ref, + anon_sym_BANG, + ACTIONS(696), 1, + anon_sym_extern, ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(1892), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(1900), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(1904), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2139), 1, + ACTIONS(2119), 1, sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(2019), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, + STATE(1305), 1, sym_generic_type, - STATE(2234), 1, + STATE(2092), 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, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, + 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(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 17, + 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, @@ -65109,82 +65639,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5166] = 28, + [516] = 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_ref, + anon_sym_BANG, + ACTIONS(696), 1, + anon_sym_extern, ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(1892), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(1900), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(1904), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2139), 1, + ACTIONS(2119), 1, sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(2117), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, + STATE(1305), 1, sym_generic_type, - STATE(2234), 1, + STATE(1784), 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, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, + 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(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 17, + 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, @@ -65202,71 +65736,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5287] = 30, + [645] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(2201), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(2203), 1, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(2205), 1, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(2207), 1, + 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_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(712), 1, + 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(894), 1, + STATE(1305), 1, sym_generic_type, - STATE(969), 1, + STATE(1334), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2332), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65278,7 +65815,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65296,71 +65833,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5411] = 30, + [774] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1640), 1, + STATE(1672), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65372,7 +65912,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65390,32 +65930,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5535] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1157), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + [903] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(670), 1, anon_sym_STAR, - anon_sym_POUND, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, + 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_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, + ACTIONS(888), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(1159), 41, + 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(2089), 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, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65433,95 +66027,74 @@ 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_union, - 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, - [5605] = 30, + [1032] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(2201), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(2203), 1, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(2205), 1, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(2207), 1, + 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_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(712), 1, + 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(894), 1, + STATE(1305), 1, sym_generic_type, - STATE(973), 1, + STATE(1783), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2332), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65533,7 +66106,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65551,71 +66124,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5729] = 30, + [1161] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1574), 1, + STATE(1823), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65627,7 +66203,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65645,71 +66221,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5853] = 30, + [1290] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(2201), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(2203), 1, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(2205), 1, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(2207), 1, + 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_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(712), 1, + 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(894), 1, + STATE(1305), 1, sym_generic_type, - STATE(968), 1, + STATE(1573), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2332), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65721,7 +66300,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65739,71 +66318,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5977] = 30, + [1419] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(2201), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(2203), 1, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(2205), 1, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(2207), 1, + 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_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(712), 1, + 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(894), 1, + STATE(1305), 1, sym_generic_type, - STATE(1001), 1, + STATE(1574), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2332), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65815,7 +66397,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65833,71 +66415,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6101] = 30, + [1548] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1572), 1, + STATE(2113), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65909,7 +66494,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65927,71 +66512,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6225] = 30, + [1677] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1945), 1, + STATE(1325), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66003,7 +66591,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66021,71 +66609,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6349] = 30, + [1806] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(2201), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(2203), 1, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(2205), 1, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(2207), 1, + 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_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(712), 1, + 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(894), 1, + STATE(1305), 1, sym_generic_type, - STATE(984), 1, + STATE(2162), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2332), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66097,7 +66688,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66115,71 +66706,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6473] = 30, + [1935] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1744), 1, + STATE(1520), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66191,7 +66785,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66209,71 +66803,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6597] = 30, + [2064] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1959), 1, + STATE(1645), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66285,7 +66882,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66303,71 +66900,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6721] = 30, + [2193] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1828), 1, + STATE(1880), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66379,7 +66979,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66397,71 +66997,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6845] = 30, + [2322] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1589), 1, + STATE(1996), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66473,7 +67076,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66491,71 +67094,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6969] = 30, + [2451] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1622), 1, + STATE(1567), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66567,7 +67173,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66585,71 +67191,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7093] = 30, + [2580] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1860), 1, + STATE(1765), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66661,7 +67270,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66679,71 +67288,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7217] = 30, + [2709] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1790), 1, + STATE(1336), 1, sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, + STATE(1342), 1, sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2194), 1, + sym_scoped_identifier, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66755,7 +67367,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66773,71 +67385,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7341] = 30, + [2838] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2280), 1, + ACTIONS(2119), 1, sym_identifier, - STATE(1222), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, sym_for_lifetimes, - STATE(1473), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1626), 1, + STATE(1305), 1, sym_generic_type, - STATE(1627), 1, + STATE(1675), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66849,7 +67464,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66867,71 +67482,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7465] = 30, + [2967] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(2143), 1, + STATE(1683), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66943,7 +67561,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66961,71 +67579,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7589] = 30, + [3096] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1745), 1, + STATE(2003), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67037,7 +67658,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67055,71 +67676,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7713] = 30, + [3225] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1326), 1, + STATE(1599), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67131,7 +67755,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67149,71 +67773,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7837] = 30, + [3354] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1720), 1, + STATE(2091), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67225,7 +67852,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67243,71 +67870,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7961] = 30, + [3483] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1903), 1, + STATE(1973), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67319,7 +67949,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67337,165 +67967,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8085] = 30, + [3612] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1944), 1, + STATE(1659), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 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(852), 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, - [8209] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, - anon_sym_COLON_COLON, - ACTIONS(2209), 1, - anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, - sym_metavariable, - STATE(712), 1, - sym_scoped_type_identifier, - STATE(894), 1, - sym_generic_type, - STATE(1046), 1, - sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, - sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, - sym_bracketed_type, - STATE(2332), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(977), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67507,7 +68046,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67525,71 +68064,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8333] = 30, + [3741] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1874), 1, + STATE(1992), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67601,7 +68143,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67619,71 +68161,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8457] = 30, + [3870] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1709), 1, + STATE(1663), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67695,7 +68240,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67713,71 +68258,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8581] = 30, + [3999] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1718), 1, + STATE(1579), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67789,7 +68337,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67807,71 +68355,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8705] = 30, + [4128] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1915), 1, + STATE(2140), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67883,7 +68434,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67901,71 +68452,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8829] = 30, + [4257] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1919), 1, + STATE(1589), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67977,7 +68531,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67995,71 +68549,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8953] = 30, + [4386] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1851), 1, + STATE(1335), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68071,7 +68628,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68089,165 +68646,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9077] = 30, + [4515] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1320), 1, + STATE(1661), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 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(852), 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, - [9201] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, - anon_sym_COLON_COLON, - ACTIONS(2209), 1, - anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, - sym_metavariable, - STATE(712), 1, - sym_scoped_type_identifier, - STATE(894), 1, - sym_generic_type, - STATE(991), 1, - sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, - sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, - sym_bracketed_type, - STATE(2332), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(977), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68259,7 +68725,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68277,71 +68743,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9325] = 30, + [4644] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1307), 1, + STATE(1954), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68353,7 +68822,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68371,71 +68840,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9449] = 30, + [4773] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(2036), 1, + STATE(1881), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68447,7 +68919,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68465,71 +68937,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9573] = 30, + [4902] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + 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(858), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(799), 1, sym_generic_type, - STATE(1620), 1, + STATE(1016), 1, sym__type, - STATE(2157), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2247), 1, sym_lifetime, - STATE(2206), 1, + STATE(2292), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2285), 3, + sym_self, + sym_super, + sym_crate, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68541,7 +69016,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68559,71 +69034,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9697] = 30, + [5031] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(2042), 1, + STATE(1948), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68635,7 +69113,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68653,71 +69131,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9821] = 30, + [5160] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1666), 1, + STATE(1315), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68729,7 +69210,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68747,71 +69228,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9945] = 30, + [5289] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1587), 1, + STATE(1322), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68823,7 +69307,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68841,71 +69325,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10069] = 30, + [5418] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(2053), 1, + STATE(2107), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68917,7 +69404,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68935,71 +69422,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10193] = 30, + [5547] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(2201), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(2203), 1, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(2205), 1, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(2207), 1, + 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_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(712), 1, + 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(894), 1, + STATE(1305), 1, sym_generic_type, - STATE(971), 1, + STATE(1318), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2332), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69011,7 +69501,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69029,71 +69519,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10317] = 30, + [5676] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(2040), 1, + STATE(1336), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69105,7 +69598,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69123,71 +69616,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10441] = 30, + [5805] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(2201), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(2203), 1, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(2205), 1, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(2207), 1, + 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_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(712), 1, + 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(894), 1, + STATE(1305), 1, sym_generic_type, - STATE(963), 1, + STATE(1888), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2332), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69199,7 +69695,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69217,71 +69713,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10565] = 30, + [5934] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(2061), 1, + STATE(2033), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69293,7 +69792,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69311,71 +69810,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10689] = 30, + [6063] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(2201), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(2203), 1, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(2205), 1, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(2207), 1, + 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_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(712), 1, + 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(894), 1, + STATE(1305), 1, sym_generic_type, - STATE(962), 1, + STATE(1679), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2332), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69387,7 +69889,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69405,71 +69907,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10813] = 30, + [6192] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1506), 1, + STATE(1343), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69481,7 +69986,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69499,165 +70004,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10937] = 30, + [6321] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1313), 1, + STATE(1597), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 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(852), 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, - [11061] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, - anon_sym_COLON_COLON, - ACTIONS(2209), 1, - anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, - sym_metavariable, - STATE(712), 1, - sym_scoped_type_identifier, - STATE(894), 1, - sym_generic_type, - STATE(966), 1, - sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, - sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, - sym_bracketed_type, - STATE(2332), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(977), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69669,7 +70083,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69687,71 +70101,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11185] = 30, + [6450] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1946), 1, + STATE(1319), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69763,7 +70180,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69781,71 +70198,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11309] = 30, + [6579] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1573), 1, + STATE(1562), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69857,7 +70277,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69875,71 +70295,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11433] = 30, + [6708] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1312), 1, + STATE(1634), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69951,7 +70374,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69969,71 +70392,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11557] = 30, + [6837] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, STATE(1305), 1, + sym_generic_type, + STATE(1570), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70045,7 +70471,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70063,71 +70489,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11681] = 30, + [6966] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1533), 1, + STATE(1999), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70139,7 +70568,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70157,71 +70586,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11805] = 30, + [7095] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(2201), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(2203), 1, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(2205), 1, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(2207), 1, + 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_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(712), 1, + 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(894), 1, + STATE(1305), 1, sym_generic_type, - STATE(965), 1, + STATE(1633), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2332), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70233,7 +70665,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70251,71 +70683,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11929] = 30, + [7224] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1303), 1, + STATE(2024), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70327,7 +70762,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70345,71 +70780,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12053] = 30, + [7353] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1571), 1, + STATE(1622), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70421,7 +70859,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70439,71 +70877,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12177] = 30, + [7482] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + 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(858), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(799), 1, sym_generic_type, - STATE(1806), 1, + STATE(1015), 1, sym__type, - STATE(2157), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2247), 1, sym_lifetime, - STATE(2206), 1, + STATE(2292), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2285), 3, + sym_self, + sym_super, + sym_crate, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70515,7 +70956,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70533,71 +70974,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12301] = 30, + [7611] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1907), 1, + STATE(1864), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70609,7 +71053,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70627,71 +71071,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12425] = 30, + [7740] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1555), 1, + STATE(1685), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70703,7 +71150,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70721,71 +71168,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12549] = 30, + [7869] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1797), 1, + STATE(1601), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70797,7 +71247,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70815,71 +71265,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12673] = 30, + [7998] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + ACTIONS(2340), 1, + sym_identifier, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1467), 1, sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1900), 1, + STATE(1643), 1, sym__type, - STATE(2157), 1, + STATE(1678), 1, + sym_generic_type, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70891,7 +71344,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70909,71 +71362,171 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12797] = 30, + [8127] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1304), 1, + STATE(1324), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(676), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - ACTIONS(670), 4, + 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, + 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_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2285), 3, + sym_self, + sym_super, + sym_crate, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70985,7 +71538,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71003,71 +71556,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12921] = 30, + [8385] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1331), 1, + STATE(1903), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71079,7 +71635,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71097,71 +71653,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13045] = 30, + [8514] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1751), 1, + STATE(2051), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71173,7 +71732,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71191,71 +71750,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13169] = 30, + [8643] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1570), 1, + STATE(2023), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71267,7 +71829,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71285,71 +71847,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13293] = 30, + [8772] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1582), 1, + STATE(1657), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71361,7 +71926,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71379,71 +71944,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13417] = 30, + [8901] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + 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(858), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(799), 1, sym_generic_type, - STATE(1976), 1, + STATE(1012), 1, sym__type, - STATE(2157), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2247), 1, sym_lifetime, - STATE(2206), 1, + STATE(2292), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2285), 3, + sym_self, + sym_super, + sym_crate, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71455,7 +72023,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71473,71 +72041,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13541] = 30, + [9030] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(2095), 1, + STATE(1958), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71549,7 +72120,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71567,72 +72138,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13665] = 31, + [9159] = 33, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(2282), 1, + ACTIONS(2342), 1, sym_self, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1320), 1, + STATE(1343), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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, - ACTIONS(862), 2, + ACTIONS(892), 2, sym_super, sym_crate, - STATE(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71644,7 +72218,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71662,71 +72236,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13791] = 30, + [9290] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1596), 1, + STATE(2015), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71738,7 +72315,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71756,71 +72333,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13915] = 30, + [9419] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1562), 1, + STATE(1665), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71832,7 +72412,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71850,71 +72430,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14039] = 30, + [9548] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1658), 1, + STATE(1689), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71926,7 +72509,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71944,71 +72527,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14163] = 30, + [9677] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1897), 1, + STATE(1846), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72020,7 +72606,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72038,71 +72624,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14287] = 30, + [9806] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1321), 1, - sym_lifetime, - STATE(1323), 1, + STATE(1875), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72114,7 +72703,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72132,71 +72721,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14411] = 30, + [9935] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + 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(858), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2284), 1, - sym_identifier, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1453), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1594), 1, - sym__type, - STATE(1649), 1, + STATE(799), 1, sym_generic_type, - STATE(2157), 1, + STATE(982), 1, + sym__type, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2247), 1, sym_lifetime, - STATE(2206), 1, + STATE(2292), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2285), 3, + sym_self, + sym_super, + sym_crate, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72208,7 +72800,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72226,71 +72818,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14535] = 30, + [10064] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1536), 1, + STATE(1733), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72302,7 +72897,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72320,71 +72915,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14659] = 30, + [10193] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + 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(858), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(799), 1, sym_generic_type, - STATE(1323), 1, + STATE(988), 1, sym__type, - STATE(2157), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2247), 1, sym_lifetime, - STATE(2206), 1, + STATE(2292), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2285), 3, + sym_self, + sym_super, + sym_crate, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72396,7 +72994,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72414,71 +73012,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14783] = 30, + [10322] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1632), 1, + STATE(2061), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72490,7 +73091,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72508,71 +73109,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14907] = 30, + [10451] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1936), 1, + STATE(1332), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72584,7 +73188,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72602,71 +73206,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15031] = 30, + [10580] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + 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(858), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(799), 1, sym_generic_type, - STATE(1886), 1, + STATE(989), 1, sym__type, - STATE(2157), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2247), 1, sym_lifetime, - STATE(2206), 1, + STATE(2292), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2285), 3, + sym_self, + sym_super, + sym_crate, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72678,7 +73285,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72696,71 +73303,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15155] = 30, + [10709] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + 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(858), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(799), 1, sym_generic_type, - STATE(1861), 1, + STATE(993), 1, sym__type, - STATE(2157), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2247), 1, sym_lifetime, - STATE(2206), 1, + STATE(2292), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2285), 3, + sym_self, + sym_super, + sym_crate, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72772,7 +73382,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72790,71 +73400,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15279] = 30, + [10838] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1941), 1, + STATE(1913), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72866,7 +73479,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72884,71 +73497,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15403] = 30, + [10967] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(2140), 1, + STATE(2137), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72960,7 +73576,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72978,71 +73594,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15527] = 30, + [11096] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + ACTIONS(2344), 1, + sym_identifier, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1477), 1, sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1324), 1, + STATE(1647), 1, sym__type, - STATE(2157), 1, + STATE(1650), 1, + sym_generic_type, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73054,7 +73673,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73072,71 +73691,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15651] = 30, + [11225] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2286), 1, + ACTIONS(2119), 1, sym_identifier, - STATE(1222), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, sym_for_lifetimes, - STATE(1479), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1613), 1, - sym__type, - STATE(1618), 1, + STATE(1305), 1, sym_generic_type, - STATE(2157), 1, + STATE(1982), 1, + sym__type, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73148,7 +73770,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73166,71 +73788,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15775] = 30, + [11354] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1638), 1, - sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2210), 1, + sym__type, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73242,7 +73867,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73260,71 +73885,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15899] = 30, + [11483] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1656), 1, + STATE(1748), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73336,7 +73964,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73354,71 +73982,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16023] = 30, + [11612] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1521), 1, + STATE(2156), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73430,7 +74061,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73448,71 +74079,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16147] = 30, + [11741] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + ACTIONS(2346), 1, + sym_identifier, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1469), 1, sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(2031), 1, + STATE(1619), 1, sym__type, - STATE(2157), 1, + STATE(1670), 1, + sym_generic_type, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73524,7 +74158,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73542,71 +74176,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16271] = 30, + [11870] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1971), 1, + STATE(2006), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73618,7 +74255,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73636,71 +74273,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16395] = 30, + [11999] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + ACTIONS(2348), 1, + sym_identifier, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1463), 1, sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1978), 1, + STATE(1658), 1, sym__type, - STATE(2157), 1, + STATE(1682), 1, + sym_generic_type, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73712,7 +74352,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73730,71 +74370,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16519] = 30, + [12128] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1992), 1, + STATE(1938), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73806,7 +74449,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73824,71 +74467,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16643] = 30, + [12257] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2288), 1, + ACTIONS(2119), 1, sym_identifier, - STATE(1222), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, sym_for_lifetimes, - STATE(1472), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1654), 1, + STATE(1305), 1, sym_generic_type, - STATE(1655), 1, + STATE(1841), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73900,7 +74546,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73918,71 +74564,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16767] = 30, + [12386] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1540), 1, + STATE(1826), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73994,7 +74643,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74012,71 +74661,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16891] = 30, + [12515] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1639), 1, + STATE(1902), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74088,7 +74740,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74106,71 +74758,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17015] = 30, + [12644] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + 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(858), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(799), 1, sym_generic_type, - STATE(1633), 1, + STATE(1030), 1, sym__type, - STATE(2157), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2247), 1, sym_lifetime, - STATE(2206), 1, + STATE(2292), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2285), 3, + sym_self, + sym_super, + sym_crate, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74182,7 +74837,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74200,71 +74855,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17139] = 30, + [12773] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + 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(858), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(799), 1, sym_generic_type, - STATE(1958), 1, + STATE(1031), 1, sym__type, - STATE(2157), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2247), 1, sym_lifetime, - STATE(2206), 1, + STATE(2292), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2285), 3, + sym_self, + sym_super, + sym_crate, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74276,7 +74934,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74294,71 +74952,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17263] = 30, + [12902] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + 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(858), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(799), 1, sym_generic_type, - STATE(1955), 1, + STATE(1034), 1, sym__type, - STATE(2157), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2247), 1, sym_lifetime, - STATE(2206), 1, + STATE(2292), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2285), 3, + sym_self, + sym_super, + sym_crate, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74370,7 +75031,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74388,71 +75049,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17387] = 30, + [13031] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(2047), 1, + STATE(1770), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74464,7 +75128,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74482,71 +75146,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17511] = 30, + [13160] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1631), 1, + STATE(1575), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74558,7 +75225,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74576,71 +75243,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17635] = 30, + [13289] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(2088), 1, + STATE(1771), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74652,7 +75322,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74670,71 +75340,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17759] = 30, + [13418] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + 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(858), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(799), 1, sym_generic_type, - STATE(1630), 1, + STATE(1081), 1, sym__type, - STATE(2157), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2247), 1, sym_lifetime, - STATE(2206), 1, + STATE(2292), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2285), 3, + sym_self, + sym_super, + sym_crate, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74746,7 +75419,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74764,71 +75437,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17883] = 30, + [13547] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1940), 1, + STATE(1544), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74840,7 +75516,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74858,71 +75534,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18007] = 30, + [13676] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(2063), 1, + STATE(1896), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74934,7 +75613,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74952,71 +75631,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18131] = 30, + [13805] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1305), 1, sym_generic_type, - STATE(1604), 1, + STATE(2100), 1, sym__type, - STATE(2157), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + 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(1482), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75028,7 +75710,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75046,83 +75728,158 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18255] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + [13934] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1118), 20, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(850), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(856), 1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(858), 1, anon_sym_AMP, - ACTIONS(864), 1, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, + ACTIONS(1120), 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, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1615), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, + 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_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, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(2352), 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(2350), 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, + 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, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 17, + [14069] = 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, @@ -75140,83 +75897,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18379] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 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, + [14134] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(491), 18, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(850), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(856), 1, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(858), 1, anon_sym_AMP, - ACTIONS(864), 1, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1553), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 17, + ACTIONS(2354), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75234,83 +75960,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18503] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + 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(2358), 17, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(850), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(856), 1, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DASH_GT, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(858), 1, anon_sym_AMP, - ACTIONS(864), 1, + anon_sym_DOT_DOT, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1927), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 17, + ACTIONS(2356), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75328,83 +76021,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18627] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 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, + [14264] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1118), 15, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(850), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(858), 1, anon_sym_AMP, - ACTIONS(864), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1617), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 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(852), 17, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75422,29 +76081,334 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18751] = 3, + anon_sym_SQUOTE, + 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_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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2382), 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(2380), 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, + [14594] = 6, + ACTIONS(2390), 1, + anon_sym_BANG, + ACTIONS(2392), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2292), 17, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2388), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(2386), 16, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, - anon_sym_DASH_GT, + anon_sym_as, + 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(2384), 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, + [14656] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1789), 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(2290), 39, + ACTIONS(1791), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75462,51 +76426,42 @@ 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, - [18816] = 3, + [14712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(840), 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(1649), 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, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(838), 39, + ACTIONS(1651), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75524,52 +76479,154 @@ 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, - [18881] = 3, + [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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(465), 18, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, + 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, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_STAR, + 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, - anon_sym_LT, + ACTIONS(2404), 1, anon_sym_COLON_COLON, + 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, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + 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, + [14892] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1343), 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(2294), 38, + ACTIONS(1345), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75587,50 +76644,266 @@ 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, - [18946] = 3, + [14948] = 5, + ACTIONS(2410), 1, + anon_sym_BANG, + ACTIONS(2412), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2298), 17, - sym_raw_string_literal, - sym_float_literal, + 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, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_STAR, + 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, - anon_sym_DASH_GT, + ACTIONS(2420), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2416), 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(2414), 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, + [15068] = 7, + ACTIONS(2366), 1, + anon_sym_BANG, + ACTIONS(2422), 1, + anon_sym_LBRACE, + ACTIONS(2424), 1, anon_sym_COLON_COLON, + STATE(1048), 1, + sym_field_initializer_list, + 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, - 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(459), 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, + [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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2428), 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(2426), 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, + [15196] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1242), 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(2296), 39, + ACTIONS(1244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75648,49 +76921,42 @@ 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, - [19011] = 3, + [15252] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1157), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(1689), 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, - 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(1159), 38, + ACTIONS(1691), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75708,44 +76974,36 @@ 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, - [19073] = 9, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2306), 1, + [15308] = 5, + ACTIONS(2434), 1, anon_sym_BANG, - ACTIONS(2308), 1, + ACTIONS(2436), 1, anon_sym_COLON_COLON, - ACTIONS(2310), 1, - anon_sym_LT2, - STATE(825), 1, - sym_parameters, - STATE(854), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2304), 17, + ACTIONS(2432), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -75763,8 +77021,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2300), 26, + ACTIONS(2430), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -75775,6 +77034,7 @@ static uint16_t ts_small_parse_table[] = { 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, @@ -75790,21 +77050,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19143] = 8, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2308), 1, - anon_sym_COLON_COLON, - ACTIONS(2310), 1, - anon_sym_LT2, - STATE(825), 1, - sym_parameters, - STATE(854), 1, - sym_type_arguments, + [15368] = 5, + ACTIONS(2438), 1, + anon_sym_else, + STATE(1019), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2314), 17, + ACTIONS(377), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -75815,15 +77069,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(2312), 26, + ACTIONS(375), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -75839,6 +77092,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, @@ -75848,22 +77102,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, - [19210] = 8, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2308), 1, - anon_sym_COLON_COLON, - ACTIONS(2310), 1, - anon_sym_LT2, - STATE(825), 1, - sym_parameters, - STATE(854), 1, - sym_type_arguments, + [15427] = 5, + ACTIONS(2444), 1, + anon_sym_SQUOTE, + STATE(1041), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2318), 17, + ACTIONS(2442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -75874,15 +77123,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(2316), 26, + ACTIONS(2440), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -75898,6 +77146,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, @@ -75907,18 +77156,18 @@ 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, - [19277] = 5, - ACTIONS(2324), 1, - anon_sym_BANG, - ACTIONS(2326), 1, - anon_sym_COLON_COLON, + [15486] = 4, + ACTIONS(2446), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2322), 17, + ACTIONS(2434), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -75927,18 +77176,15 @@ 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(2320), 28, + ACTIONS(2436), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -75946,13 +77192,14 @@ 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_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, @@ -75962,22 +77209,18 @@ 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, - [19337] = 7, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_LT2, - STATE(819), 1, - sym_parameters, - STATE(851), 1, - sym_type_arguments, + [15543] = 4, + ACTIONS(2448), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2330), 17, + ACTIONS(2402), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -75986,17 +77229,15 @@ 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(2328), 26, + ACTIONS(2404), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -76004,12 +77245,14 @@ 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, 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, @@ -76019,22 +77262,18 @@ 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, - [19401] = 7, - ACTIONS(2306), 1, - anon_sym_BANG, - ACTIONS(2332), 1, + [15600] = 4, + ACTIONS(2450), 1, anon_sym_LBRACE, - ACTIONS(2334), 1, - anon_sym_COLON_COLON, - STATE(983), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2410), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76048,7 +77287,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 28, + ACTIONS(2412), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -76059,6 +77298,7 @@ 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, @@ -76077,21 +77317,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19465] = 7, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_LT2, - STATE(819), 1, - sym_parameters, - STATE(851), 1, - sym_type_arguments, + [15657] = 4, + ACTIONS(2452), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 17, + ACTIONS(2418), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76100,17 +77335,15 @@ 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(2336), 26, + ACTIONS(2420), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -76118,12 +77351,14 @@ 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, 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, @@ -76133,18 +77368,16 @@ 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, - [19529] = 5, - ACTIONS(2344), 1, - anon_sym_BANG, - ACTIONS(2346), 1, - anon_sym_COLON_COLON, + [15714] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2342), 17, + ACTIONS(2402), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76153,14 +77386,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(2340), 28, + ACTIONS(2404), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -76172,13 +77403,14 @@ 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_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, @@ -76188,16 +77420,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, - [19589] = 5, - ACTIONS(2352), 1, - anon_sym_BANG, - ACTIONS(2354), 1, - anon_sym_COLON_COLON, + [15769] = 5, + ACTIONS(2438), 1, + anon_sym_else, + STATE(1073), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2350), 17, + ACTIONS(385), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76208,14 +77441,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(2348), 28, + ACTIONS(383), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -76228,12 +77459,12 @@ static uint16_t ts_small_parse_table[] = { 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_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -76243,20 +77474,115 @@ 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, - [19649] = 7, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_LT2, - STATE(819), 1, - sym_parameters, - STATE(851), 1, - sym_type_arguments, + [15828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2358), 17, + ACTIONS(427), 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(429), 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, + [15882] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1283), 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(1285), 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, + [15936] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2456), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76267,15 +77593,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(2356), 26, + ACTIONS(2454), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76285,12 +77610,14 @@ 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, 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, @@ -76300,22 +77627,21 @@ 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, - [19713] = 3, + [15990] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1468), 9, + ACTIONS(1457), 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(1470), 38, + ACTIONS(1459), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76354,76 +77680,274 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19769] = 5, - ACTIONS(2364), 1, - anon_sym_BANG, - ACTIONS(2366), 1, + [16044] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1465), 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(1467), 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, + [16098] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2362), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1469), 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(2360), 28, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1471), 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, + [16152] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1477), 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, - [19829] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1479), 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, + [16206] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1481), 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(1483), 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, + [16260] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1485), 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(1487), 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, + [16314] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1612), 9, + ACTIONS(1497), 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(1614), 38, + ACTIONS(1499), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76462,21 +77986,19 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19885] = 3, + [16368] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1772), 9, + ACTIONS(1505), 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(1774), 38, + ACTIONS(1507), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76515,21 +78037,19 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19941] = 3, + [16422] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1846), 9, + ACTIONS(1509), 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(1848), 38, + ACTIONS(1511), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76568,21 +78088,19 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19997] = 3, + [16476] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1105), 9, + ACTIONS(1513), 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(1107), 38, + ACTIONS(1515), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76621,16 +78139,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20053] = 4, - ACTIONS(2368), 1, - anon_sym_LBRACE, + [16530] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 16, + ACTIONS(2460), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76644,10 +78159,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2366), 29, + ACTIONS(2458), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -76674,123 +78190,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20110] = 5, - ACTIONS(2370), 1, - anon_sym_else, - STATE(988), 1, - sym_else_clause, + [16584] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(379), 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(377), 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, - [20169] = 4, - ACTIONS(2372), 1, + ACTIONS(2464), 2, anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2324), 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(2326), 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, - [20226] = 4, - ACTIONS(2374), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2352), 16, + ACTIONS(2466), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76804,7 +78213,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2354), 29, + ACTIONS(2462), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -76815,7 +78224,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, @@ -76834,224 +78242,113 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20283] = 3, + [16640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2324), 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(2326), 30, + ACTIONS(1557), 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, - [20338] = 5, - ACTIONS(2380), 1, - anon_sym_SQUOTE, - STATE(1028), 1, - sym_loop_label, + sym_metavariable, + ACTIONS(1559), 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, + [16694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2378), 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(2376), 29, + ACTIONS(1561), 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, - [20397] = 4, - ACTIONS(2382), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2344), 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(2346), 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, - [20454] = 5, - ACTIONS(2370), 1, - anon_sym_else, - STATE(987), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(373), 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(371), 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, - [20513] = 3, + sym_metavariable, + ACTIONS(1563), 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, + [16748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1157), 7, + ACTIONS(1565), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77059,7 +78356,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1159), 38, + ACTIONS(1567), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77098,63 +78395,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20567] = 4, - ACTIONS(2384), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2358), 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(2356), 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, - [20623] = 3, + [16802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1412), 7, + ACTIONS(1581), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77162,7 +78407,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1414), 38, + ACTIONS(1583), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77201,11 +78446,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20677] = 3, + [16856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1161), 7, + ACTIONS(1589), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77213,7 +78458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1163), 38, + ACTIONS(1591), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77252,63 +78497,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20731] = 4, - ACTIONS(2390), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2388), 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(2386), 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, - [20787] = 3, + [16910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1552), 7, + ACTIONS(1597), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77316,7 +78509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1554), 38, + ACTIONS(1599), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77355,63 +78548,113 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20841] = 4, + [16964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 6, + ACTIONS(1609), 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(1611), 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, - ACTIONS(2394), 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(2392), 23, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17018] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1613), 7, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_macro_rules_BANG, 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, - [20897] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1615), 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, + [17072] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1544), 7, + ACTIONS(1617), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77419,7 +78662,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1546), 38, + ACTIONS(1619), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77458,11 +78701,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20951] = 3, + [17126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1540), 7, + ACTIONS(1629), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77470,7 +78713,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1542), 38, + ACTIONS(1631), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77509,11 +78752,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21005] = 3, + [17180] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1536), 7, + ACTIONS(1633), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77521,7 +78764,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1538), 38, + ACTIONS(1635), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77560,11 +78803,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21059] = 3, + [17234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1600), 7, + ACTIONS(1641), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77572,7 +78815,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1602), 38, + ACTIONS(1643), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77611,11 +78854,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21113] = 3, + [17288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1516), 7, + ACTIONS(1645), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77623,7 +78866,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1518), 38, + ACTIONS(1647), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77662,11 +78905,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21167] = 3, + [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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1384), 7, + ACTIONS(1661), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77674,7 +78969,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1386), 38, + ACTIONS(1663), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77713,11 +79008,14 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21221] = 3, + [17452] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2322), 17, + ACTIONS(2472), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2466), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -77728,18 +79026,15 @@ 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(2320), 28, + ACTIONS(2462), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -77748,12 +79043,12 @@ static uint16_t ts_small_parse_table[] = { 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_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -77763,12 +79058,64 @@ 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, - [21275] = 3, + [17508] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(389), 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(391), 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, + [17562] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1356), 7, + ACTIONS(1665), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77776,7 +79123,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1358), 38, + ACTIONS(1667), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77815,11 +79162,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21329] = 3, + [17616] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1364), 7, + ACTIONS(1669), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77827,7 +79174,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1366), 38, + ACTIONS(1671), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77866,11 +79213,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21383] = 3, + [17670] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1372), 7, + ACTIONS(1673), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77878,7 +79225,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1374), 38, + ACTIONS(1675), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77917,11 +79264,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21437] = 3, + [17724] = 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, + 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, + [17778] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1266), 7, + ACTIONS(1677), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77929,7 +79327,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1268), 38, + ACTIONS(1679), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77968,62 +79366,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21491] = 3, + [17832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2400), 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(2398), 30, + ACTIONS(397), 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, - [21545] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(399), 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, + [17886] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1692), 7, + ACTIONS(1693), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78031,7 +79429,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1694), 38, + ACTIONS(1695), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78070,11 +79468,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21599] = 3, + [17940] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1704), 7, + ACTIONS(393), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78082,7 +79480,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1706), 38, + ACTIONS(395), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78121,11 +79519,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21653] = 3, + [17994] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1616), 7, + ACTIONS(1697), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78133,7 +79531,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1618), 38, + ACTIONS(1699), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78172,62 +79570,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21707] = 3, + [18048] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(393), 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(391), 30, + ACTIONS(1701), 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, - anon_sym_else, - [21761] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1703), 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, + [18102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1320), 7, + ACTIONS(1709), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78235,7 +79633,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1322), 38, + ACTIONS(1711), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78274,11 +79672,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21815] = 3, + [18156] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1720), 7, + ACTIONS(1717), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78286,7 +79684,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1722), 38, + ACTIONS(1719), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78325,11 +79723,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21869] = 3, + [18210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1492), 7, + ACTIONS(1721), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78337,7 +79735,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1494), 38, + ACTIONS(1723), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78376,11 +79774,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21923] = 3, + [18264] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1798), 7, + ACTIONS(1725), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78388,7 +79786,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1800), 38, + ACTIONS(1727), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78427,11 +79825,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21977] = 3, + [18318] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1368), 7, + ACTIONS(1733), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78439,7 +79837,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1370), 38, + ACTIONS(1735), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78478,11 +79876,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22031] = 3, + [18372] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1786), 7, + ACTIONS(1737), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78490,7 +79888,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1788), 38, + ACTIONS(1739), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78529,11 +79927,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22085] = 3, + [18426] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1778), 7, + ACTIONS(1741), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78541,7 +79939,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1780), 38, + ACTIONS(1743), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78580,11 +79978,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22139] = 3, + [18480] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1376), 7, + ACTIONS(1745), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78592,7 +79990,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1378), 38, + ACTIONS(1747), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78631,11 +80029,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22193] = 3, + [18534] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1069), 7, + ACTIONS(1749), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78643,7 +80041,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1071), 38, + ACTIONS(1751), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78682,11 +80080,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22247] = 3, + [18588] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1153), 7, + ACTIONS(596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78694,7 +80092,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1155), 38, + ACTIONS(598), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78733,62 +80131,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22301] = 3, + [18642] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2404), 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(2402), 30, + ACTIONS(1753), 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, - [22355] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1755), 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, + [18696] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1206), 7, + ACTIONS(1757), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78796,7 +80194,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1208), 38, + ACTIONS(1759), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78835,11 +80233,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22409] = 3, + [18750] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1210), 7, + ACTIONS(1761), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78847,7 +80245,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1212), 38, + ACTIONS(1763), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78886,11 +80284,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22463] = 3, + [18804] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1488), 7, + ACTIONS(1769), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78898,7 +80296,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1490), 38, + ACTIONS(1771), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78937,63 +80335,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22517] = 4, + [18858] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2408), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2410), 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(2406), 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, - [22573] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1484), 7, + ACTIONS(1773), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79001,7 +80347,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1486), 38, + ACTIONS(1775), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79040,11 +80386,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22627] = 3, + [18912] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1480), 7, + ACTIONS(1781), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79052,7 +80398,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1482), 38, + ACTIONS(1783), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79091,11 +80437,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22681] = 3, + [18966] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1448), 7, + ACTIONS(1118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79103,7 +80449,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1450), 38, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79142,11 +80488,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22735] = 3, + [19020] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1444), 7, + ACTIONS(1785), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79154,7 +80500,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1446), 38, + ACTIONS(1787), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79193,11 +80539,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22789] = 3, + [19074] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1432), 7, + ACTIONS(467), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79205,7 +80551,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1434), 38, + ACTIONS(469), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79244,11 +80590,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22843] = 3, + [19128] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1428), 7, + ACTIONS(413), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79256,7 +80602,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1430), 38, + ACTIONS(415), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79295,11 +80641,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22897] = 3, + [19182] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1246), 7, + ACTIONS(1110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79307,7 +80653,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1248), 38, + ACTIONS(1112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79346,115 +80692,168 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22951] = 3, + [19236] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1420), 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_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, + [19290] = 4, + ACTIONS(2478), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1422), 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, - [23005] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1294), 7, + 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, 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_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_COLON_COLON, - sym_metavariable, - ACTIONS(1296), 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, - [23059] = 4, - ACTIONS(2412), 1, + 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, + 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, + [19402] = 4, + ACTIONS(2482), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2396), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -79470,7 +80869,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 29, + ACTIONS(2394), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -79500,11 +80899,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23115] = 3, + [19458] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1282), 7, + ACTIONS(1825), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79512,7 +80911,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1284), 38, + ACTIONS(1827), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79551,11 +80950,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23169] = 3, + [19512] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1596), 7, + ACTIONS(1833), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79563,7 +80962,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1598), 38, + ACTIONS(1835), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79602,11 +81001,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23223] = 3, + [19566] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1250), 7, + ACTIONS(1291), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79614,7 +81013,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1252), 38, + ACTIONS(1293), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79653,11 +81052,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23277] = 3, + [19620] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1242), 7, + ACTIONS(1845), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79665,7 +81064,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1244), 38, + ACTIONS(1847), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79704,11 +81103,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23331] = 3, + [19674] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1604), 7, + ACTIONS(1234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79716,7 +81115,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1606), 38, + ACTIONS(1236), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79755,11 +81154,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23385] = 3, + [19728] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1238), 7, + ACTIONS(1849), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79767,7 +81166,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1240), 38, + ACTIONS(1851), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79806,11 +81205,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23439] = 3, + [19782] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1234), 7, + ACTIONS(1861), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79818,7 +81217,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1236), 38, + ACTIONS(1863), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79857,11 +81256,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23493] = 3, + [19836] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2416), 15, + ACTIONS(399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -79877,7 +81276,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2414), 30, + ACTIONS(397), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -79889,7 +81288,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, @@ -79908,11 +81306,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23547] = 3, + anon_sym_else, + [19890] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1870), 7, + ACTIONS(1214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79920,7 +81319,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1872), 38, + ACTIONS(1216), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79959,215 +81358,165 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23601] = 3, + [19944] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1592), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2486), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1594), 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, - [23655] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1230), 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(2484), 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(1232), 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, - [23709] = 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, + [19998] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1226), 7, + 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_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, + 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, - sym_metavariable, - ACTIONS(1228), 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, - [23763] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1222), 7, + 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_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(1224), 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, - [23817] = 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, + [20108] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1290), 7, + ACTIONS(1881), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80175,7 +81524,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1292), 38, + ACTIONS(1883), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80214,11 +81563,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23871] = 3, + [20162] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1218), 7, + ACTIONS(1885), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80226,7 +81575,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1220), 38, + ACTIONS(1887), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80265,11 +81614,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23925] = 3, + [20216] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1882), 7, + ACTIONS(1889), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80277,7 +81626,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1884), 38, + ACTIONS(1891), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80316,11 +81665,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23979] = 3, + [20270] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1214), 7, + ACTIONS(1893), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80328,7 +81677,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1216), 38, + ACTIONS(1895), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80367,11 +81716,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24033] = 3, + [20324] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2496), 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(2494), 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, + [20378] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1588), 7, + ACTIONS(1913), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80379,7 +81779,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1590), 38, + ACTIONS(1915), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80418,11 +81818,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24087] = 3, + [20432] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1810), 7, + ACTIONS(1921), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80430,7 +81830,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1812), 38, + ACTIONS(1923), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80469,13 +81869,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24141] = 4, - STATE(1008), 1, - sym_arguments, + [20486] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2420), 15, + ACTIONS(2500), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80491,7 +81889,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2418), 29, + ACTIONS(2498), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80503,6 +81901,7 @@ 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, @@ -80521,62 +81920,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24197] = 3, + [20540] = 4, + ACTIONS(2506), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1202), 7, + ACTIONS(2504), 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(2502), 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(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, - [24251] = 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, + [20596] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1584), 7, + ACTIONS(1925), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80584,7 +81984,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1586), 38, + ACTIONS(1927), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80623,11 +82023,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24305] = 3, + [20650] = 4, + ACTIONS(2482), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(812), 15, + ACTIONS(2428), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80643,7 +82045,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(814), 30, + ACTIONS(2426), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80652,7 +82054,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, @@ -80674,62 +82075,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24359] = 3, + [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(1576), 7, + ACTIONS(2386), 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(2384), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1578), 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, - [24413] = 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, + [20764] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1572), 7, + ACTIONS(1929), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80737,7 +82140,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1574), 38, + ACTIONS(1931), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80776,113 +82179,115 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24467] = 3, + [20818] = 4, + ACTIONS(2482), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1316), 7, + 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_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(1318), 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, - [24521] = 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, + [20874] = 4, + ACTIONS(2514), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1324), 7, + 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_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(1326), 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, - [24575] = 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, + [20930] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1198), 7, + ACTIONS(1493), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80890,7 +82295,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1200), 38, + ACTIONS(1495), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80929,11 +82334,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24629] = 3, + [20984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1194), 7, + ACTIONS(1947), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80941,7 +82346,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1196), 38, + ACTIONS(1949), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80980,62 +82385,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24683] = 3, + [21038] = 4, + ACTIONS(2520), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1145), 7, + 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_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(1147), 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, - [24737] = 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, + [21094] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1141), 7, + ACTIONS(1943), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81043,7 +82449,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1143), 38, + ACTIONS(1945), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81082,11 +82488,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24791] = 3, + [21148] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1328), 7, + ACTIONS(1525), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81094,7 +82500,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1330), 38, + ACTIONS(1527), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81133,11 +82539,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24845] = 3, + [21202] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1133), 7, + ACTIONS(1545), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81145,7 +82551,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1135), 38, + ACTIONS(1547), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81184,11 +82590,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24899] = 3, + [21256] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1640), 7, + ACTIONS(1937), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81196,7 +82602,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1642), 38, + ACTIONS(1939), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81235,11 +82641,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24953] = 3, + [21310] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1564), 7, + ACTIONS(1549), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81247,7 +82653,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1566), 38, + ACTIONS(1551), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81286,11 +82692,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25007] = 3, + [21364] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1548), 7, + ACTIONS(1573), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81298,7 +82704,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1550), 38, + ACTIONS(1575), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81337,11 +82743,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25061] = 3, + [21418] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1532), 7, + ACTIONS(1933), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81349,7 +82755,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1534), 38, + ACTIONS(1935), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81388,11 +82794,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25115] = 3, + [21472] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1512), 7, + ACTIONS(1585), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81400,7 +82806,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1514), 38, + ACTIONS(1587), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81439,11 +82845,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25169] = 3, + [21526] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1500), 7, + ACTIONS(1917), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81451,7 +82857,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1502), 38, + ACTIONS(1919), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81490,11 +82896,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25223] = 3, + [21580] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1476), 7, + ACTIONS(1909), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81502,7 +82908,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1478), 38, + ACTIONS(1911), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81541,11 +82947,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25277] = 3, + [21634] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1472), 7, + ACTIONS(1905), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81553,7 +82959,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1474), 38, + ACTIONS(1907), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81592,11 +82998,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25331] = 3, + [21688] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1129), 7, + ACTIONS(1901), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81604,7 +83010,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1131), 38, + ACTIONS(1903), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81643,11 +83049,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25385] = 3, + [21742] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1560), 7, + ACTIONS(1897), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81655,7 +83061,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1562), 38, + ACTIONS(1899), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81694,11 +83100,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25439] = 3, + [21796] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1452), 7, + ACTIONS(1877), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81706,7 +83112,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1454), 38, + ACTIONS(1879), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81745,63 +83151,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25493] = 4, - ACTIONS(2426), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2424), 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(2422), 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, - [25549] = 3, + [21850] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1121), 7, + ACTIONS(1873), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81809,7 +83163,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1123), 38, + ACTIONS(1875), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81848,63 +83202,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25603] = 4, - ACTIONS(2432), 1, - anon_sym_DASH_GT, + [21904] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2430), 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(2428), 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, - [25659] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1338), 7, + ACTIONS(1605), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81912,7 +83214,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1340), 38, + ACTIONS(1607), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81951,11 +83253,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25713] = 3, + [21958] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1416), 7, + ACTIONS(1865), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81963,7 +83265,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1418), 38, + ACTIONS(1867), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82002,168 +83304,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25767] = 5, - ACTIONS(2306), 1, - anon_sym_BANG, - ACTIONS(2434), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(455), 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(453), 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, - [25825] = 4, - ACTIONS(2440), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2438), 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(2436), 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, - [25881] = 4, - ACTIONS(2446), 1, - anon_sym_DASH_GT, + [22012] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2444), 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(2442), 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, - [25937] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1608), 7, + ACTIONS(1857), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82171,7 +83316,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1610), 38, + ACTIONS(1859), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82210,11 +83355,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25991] = 3, + [22066] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1109), 7, + ACTIONS(1853), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82222,7 +83367,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1111), 38, + ACTIONS(1855), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82261,63 +83406,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26045] = 4, - ACTIONS(2448), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2330), 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(2328), 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, - [26101] = 3, + [22120] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1620), 7, + ACTIONS(1841), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82325,7 +83418,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1622), 38, + ACTIONS(1843), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82364,11 +83457,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26155] = 3, + [22174] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1097), 7, + ACTIONS(1837), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82376,7 +83469,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1099), 38, + ACTIONS(1839), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82415,11 +83508,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26209] = 3, + [22228] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1348), 7, + ACTIONS(1106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82427,7 +83520,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1350), 38, + ACTIONS(1108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82466,11 +83559,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26263] = 3, + [22282] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(566), 7, + ACTIONS(1621), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82478,7 +83571,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(568), 38, + ACTIONS(1623), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82517,11 +83610,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26317] = 3, + [22336] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1093), 7, + 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, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82529,7 +83673,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1095), 38, + ACTIONS(1831), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82568,11 +83712,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26371] = 3, + [22444] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1073), 7, + ACTIONS(1819), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82580,7 +83724,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1075), 38, + ACTIONS(1821), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82619,11 +83763,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26425] = 3, + [22498] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1308), 7, + ACTIONS(1809), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82631,7 +83775,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1310), 38, + ACTIONS(1811), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82670,11 +83814,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26479] = 3, + [22552] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1822), 7, + ACTIONS(1805), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82682,7 +83826,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1824), 38, + ACTIONS(1807), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82721,11 +83865,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26533] = 3, + [22606] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1380), 7, + ACTIONS(1637), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82733,7 +83877,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1382), 38, + ACTIONS(1639), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82772,114 +83916,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26587] = 4, - ACTIONS(2448), 1, - anon_sym_COLON_COLON, + [22660] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 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(2336), 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, - [26643] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2452), 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(2450), 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, - [26697] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1077), 7, + ACTIONS(1801), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82887,7 +83928,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1079), 38, + ACTIONS(1803), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82926,11 +83967,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26751] = 3, + [22714] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1081), 7, + ACTIONS(1793), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82938,7 +83979,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1083), 38, + ACTIONS(1795), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82977,11 +84018,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26805] = 3, + [22768] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1085), 7, + ACTIONS(1777), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82989,7 +84030,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1087), 38, + ACTIONS(1779), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83028,166 +84069,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26859] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2456), 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(2454), 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, - [26913] = 4, - ACTIONS(2462), 1, - anon_sym_DASH_GT, + [22822] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2460), 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(2458), 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, - [26969] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2464), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2410), 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(2406), 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, - [27025] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1101), 7, + ACTIONS(1713), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83195,7 +84081,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1103), 38, + ACTIONS(1715), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83234,11 +84120,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27079] = 3, + [22876] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1388), 7, + ACTIONS(1765), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83246,7 +84132,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1390), 38, + ACTIONS(1767), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83285,11 +84171,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27133] = 3, + [22930] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1392), 7, + ACTIONS(1729), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83297,7 +84183,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1394), 38, + ACTIONS(1731), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83336,11 +84222,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27187] = 3, + [22984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1624), 7, + ACTIONS(1685), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83348,7 +84234,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1626), 38, + ACTIONS(1687), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83387,62 +84273,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27241] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2468), 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(2466), 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, - [27295] = 3, + [23038] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1149), 7, + ACTIONS(1869), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83450,7 +84285,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1151), 38, + ACTIONS(1871), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83489,11 +84324,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27349] = 3, + [23092] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(578), 7, + ACTIONS(1657), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83501,7 +84336,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(580), 38, + ACTIONS(1659), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83540,62 +84375,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27403] = 3, + [23146] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2472), 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(2470), 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, - [27457] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1396), 7, + ACTIONS(1653), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83603,7 +84387,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1398), 38, + ACTIONS(1655), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83642,11 +84426,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27511] = 3, + [23200] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1400), 7, + ACTIONS(1625), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83654,7 +84438,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1402), 38, + ACTIONS(1627), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83693,11 +84477,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27565] = 3, + [23254] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1404), 7, + ACTIONS(1951), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83705,7 +84489,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1406), 38, + ACTIONS(1953), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83744,11 +84528,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27619] = 3, + [23308] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1125), 7, + ACTIONS(1955), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83756,7 +84540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1127), 38, + ACTIONS(1957), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83795,11 +84579,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27673] = 3, + [23362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1408), 7, + ACTIONS(1797), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83807,7 +84591,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1410), 38, + ACTIONS(1799), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83846,11 +84630,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27727] = 3, + [23416] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(407), 7, + ACTIONS(1601), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83858,7 +84642,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(409), 38, + ACTIONS(1603), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83897,11 +84681,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27781] = 3, + [23470] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1424), 7, + ACTIONS(1593), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83909,7 +84693,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1426), 38, + ACTIONS(1595), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83948,11 +84732,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27835] = 3, + [23524] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1436), 7, + ACTIONS(1705), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83960,7 +84744,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1438), 38, + ACTIONS(1707), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83999,11 +84783,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27889] = 3, + [23578] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1464), 7, + ACTIONS(1577), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84011,7 +84795,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1466), 38, + ACTIONS(1579), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84050,11 +84834,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27943] = 3, + [23632] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(389), 15, + ACTIONS(391), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84070,7 +84854,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(387), 30, + ACTIONS(389), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84101,11 +84885,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_else, - [27997] = 3, + [23686] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(395), 7, + ACTIONS(1681), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84113,7 +84897,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(397), 38, + ACTIONS(1683), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84152,11 +84936,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28051] = 3, + [23740] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(387), 7, + ACTIONS(1553), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84164,7 +84948,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(389), 38, + ACTIONS(1555), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84203,62 +84987,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28105] = 3, + [23794] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1274), 7, + 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_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(1276), 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, - [28159] = 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, + [23848] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(391), 7, + ACTIONS(1569), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84266,7 +85050,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(393), 38, + ACTIONS(1571), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84305,11 +85089,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28213] = 3, + [23902] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1504), 7, + ACTIONS(1541), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84317,7 +85101,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1506), 38, + ACTIONS(1543), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84356,11 +85140,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28267] = 3, + [23956] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1744), 7, + ACTIONS(1537), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84368,7 +85152,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1746), 38, + ACTIONS(1539), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84407,11 +85191,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28321] = 3, + [24010] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1790), 7, + ACTIONS(1533), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84419,7 +85203,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1792), 38, + ACTIONS(1535), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84458,62 +85242,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28375] = 3, + [24064] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1806), 7, + 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_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(1808), 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, - [28429] = 3, + 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1300), 7, + ACTIONS(1529), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84521,7 +85305,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1302), 38, + ACTIONS(1531), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84560,11 +85344,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28483] = 3, + [24172] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1878), 7, + ACTIONS(1521), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84572,7 +85356,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(1523), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84611,11 +85395,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28537] = 3, + [24226] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1568), 7, + ACTIONS(1517), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84623,7 +85407,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1570), 38, + ACTIONS(1519), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84662,62 +85446,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28591] = 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, - 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, - [28645] = 3, + [24280] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1862), 7, + ACTIONS(1102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84725,7 +85458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1864), 38, + ACTIONS(1104), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84764,11 +85497,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28699] = 3, + [24334] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1858), 7, + ACTIONS(1473), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84776,7 +85509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1860), 38, + ACTIONS(1475), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84815,11 +85548,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28753] = 3, + [24388] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1854), 7, + ACTIONS(1453), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84827,7 +85560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1856), 38, + ACTIONS(1455), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84866,11 +85599,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28807] = 3, + [24442] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1850), 7, + ACTIONS(1449), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84878,7 +85611,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1852), 38, + ACTIONS(1451), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84917,11 +85650,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28861] = 3, + [24496] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1304), 7, + ACTIONS(1445), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84929,7 +85662,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1306), 38, + ACTIONS(1447), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84968,11 +85701,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28915] = 3, + [24550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1344), 7, + 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, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84980,7 +85764,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1346), 38, + ACTIONS(1443), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85019,62 +85803,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28969] = 3, + [24658] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2480), 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(2478), 30, + ACTIONS(1437), 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, - [29023] = 3, + sym_metavariable, + ACTIONS(1439), 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, + [24712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1628), 7, + ACTIONS(1431), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85082,7 +85866,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1630), 38, + ACTIONS(1433), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85121,11 +85905,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29077] = 3, + [24766] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1644), 7, + ACTIONS(1427), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85133,7 +85917,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1646), 38, + ACTIONS(1429), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85172,11 +85956,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29131] = 3, + [24820] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1648), 7, + ACTIONS(1423), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85184,7 +85968,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1650), 38, + ACTIONS(1425), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85223,11 +86007,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29185] = 3, + [24874] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1724), 7, + ACTIONS(1419), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85235,7 +86019,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1726), 38, + ACTIONS(1421), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85274,63 +86058,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29239] = 4, - ACTIONS(2486), 1, - anon_sym_DASH_GT, + [24928] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2484), 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(2482), 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, - [29295] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1113), 7, + ACTIONS(1415), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85338,7 +86070,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1115), 38, + ACTIONS(1417), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85377,11 +86109,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29349] = 3, + [24982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1834), 7, + ACTIONS(1411), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85389,7 +86121,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1836), 38, + ACTIONS(1413), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85428,11 +86160,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29403] = 3, + [25036] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1117), 7, + ACTIONS(1407), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85440,7 +86172,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1119), 38, + ACTIONS(1409), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85479,11 +86211,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29457] = 3, + [25090] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1728), 7, + ACTIONS(1403), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85491,7 +86223,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1730), 38, + ACTIONS(1405), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85530,11 +86262,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29511] = 3, + [25144] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1830), 7, + ACTIONS(1399), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85542,7 +86274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1832), 38, + ACTIONS(1401), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85581,63 +86313,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29565] = 4, - ACTIONS(2448), 1, - anon_sym_COLON_COLON, + [25198] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2358), 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(2356), 29, + ACTIONS(1387), 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, - [29621] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1389), 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, + [25252] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1632), 7, + ACTIONS(1489), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85645,7 +86376,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1634), 38, + ACTIONS(1491), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85684,11 +86415,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29675] = 3, + [25306] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1826), 7, + ACTIONS(1383), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85696,7 +86427,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1828), 38, + ACTIONS(1385), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85735,62 +86466,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29729] = 3, + [25360] = 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_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, - [29783] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1818), 7, + ACTIONS(1461), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85798,7 +86478,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1820), 38, + ACTIONS(1463), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85837,62 +86517,64 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29837] = 3, + [25414] = 5, + ACTIONS(2366), 1, + anon_sym_BANG, + ACTIONS(2534), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1636), 7, + 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), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1638), 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, - [29891] = 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, + [25472] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1496), 7, + ACTIONS(1379), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85900,7 +86582,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1498), 38, + ACTIONS(1381), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85939,11 +86621,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29945] = 3, + [25526] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1814), 7, + ACTIONS(1375), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85951,7 +86633,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1816), 38, + ACTIONS(1377), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85990,11 +86672,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29999] = 3, + [25580] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1764), 7, + ACTIONS(1371), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86002,7 +86684,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1766), 38, + ACTIONS(1373), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86041,11 +86723,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30053] = 3, + [25634] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1760), 7, + 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, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86053,7 +86786,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1762), 38, + ACTIONS(1369), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86092,63 +86825,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30107] = 4, - ACTIONS(2492), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2358), 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(2356), 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, - [30163] = 3, + [25742] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1360), 7, + ACTIONS(1363), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86156,7 +86837,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1362), 38, + ACTIONS(1365), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86195,11 +86876,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30217] = 3, + [25796] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1756), 7, + ACTIONS(1359), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86207,7 +86888,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1758), 38, + ACTIONS(1361), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86246,11 +86927,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30271] = 3, + [25850] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1752), 7, + ACTIONS(1355), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86258,7 +86939,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1754), 38, + ACTIONS(1357), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86297,11 +86978,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30325] = 3, + [25904] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1556), 7, + ACTIONS(1351), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86309,7 +86990,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1558), 38, + ACTIONS(1353), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86348,11 +87029,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30379] = 3, + [25958] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1508), 7, + ACTIONS(1347), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86360,7 +87041,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1510), 38, + ACTIONS(1349), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86399,11 +87080,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30433] = 3, + [26012] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1528), 7, + ACTIONS(1339), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86411,7 +87092,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1530), 38, + ACTIONS(1341), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86450,11 +87131,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30487] = 3, + [26066] = 4, + ACTIONS(2540), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(397), 15, + ACTIONS(2538), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86470,7 +87153,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(395), 30, + ACTIONS(2536), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86500,12 +87183,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_else, - [30541] = 3, + [26122] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1740), 7, + ACTIONS(1315), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86513,7 +87195,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1742), 38, + ACTIONS(1317), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86552,11 +87234,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30595] = 3, + [26176] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1045), 7, + ACTIONS(1311), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86564,7 +87246,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1047), 38, + ACTIONS(1313), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86603,11 +87285,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30649] = 3, + [26230] = 4, + ACTIONS(2546), 1, + anon_sym_DASH_GT, + 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(1748), 7, + ACTIONS(1335), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86615,7 +87349,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1750), 38, + ACTIONS(1337), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86654,11 +87388,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30703] = 3, + [26340] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1732), 7, + ACTIONS(1331), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86666,7 +87400,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1734), 38, + ACTIONS(1333), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86705,62 +87439,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30757] = 3, + [26394] = 4, + ACTIONS(2552), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1716), 7, + 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_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(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, - [30811] = 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, + [26450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1768), 7, + ACTIONS(1303), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86768,7 +87503,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1770), 38, + ACTIONS(1305), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86807,11 +87542,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30865] = 3, + [26504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1794), 7, + ACTIONS(1230), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86819,7 +87554,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1796), 38, + ACTIONS(1232), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86858,11 +87593,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30919] = 3, + [26558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1712), 7, + ACTIONS(1327), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86870,7 +87605,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1714), 38, + ACTIONS(1329), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86909,62 +87644,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30973] = 3, + [26612] = 4, + ACTIONS(2558), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1802), 7, + 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, 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(1804), 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, - [31027] = 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, + [26668] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1708), 7, + ACTIONS(1226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86972,7 +87708,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1710), 38, + ACTIONS(1228), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87011,11 +87747,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31081] = 3, + [26722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1580), 7, + ACTIONS(1323), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87023,7 +87759,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1582), 38, + ACTIONS(1325), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87062,11 +87798,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31135] = 3, + [26776] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(1222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87074,7 +87810,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1844), 38, + ACTIONS(1224), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87113,11 +87849,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31189] = 3, + [26830] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1866), 7, + ACTIONS(1218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87125,7 +87861,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1868), 38, + ACTIONS(1220), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87164,11 +87900,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31243] = 3, + [26884] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1186), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87176,7 +87912,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1654), 38, + ACTIONS(1188), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87215,11 +87951,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31297] = 3, + [26938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1660), 7, + ACTIONS(1319), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87227,7 +87963,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1662), 38, + ACTIONS(1321), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87266,11 +88002,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31351] = 3, + [26992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1700), 7, + ACTIONS(1182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87278,7 +88014,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1702), 38, + ACTIONS(1184), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87317,11 +88053,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31405] = 3, + [27046] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1520), 7, + ACTIONS(1178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87329,7 +88065,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1522), 38, + ACTIONS(1180), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87368,11 +88104,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31459] = 3, + [27100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(1162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87380,7 +88116,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1666), 38, + ACTIONS(1164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87419,11 +88155,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31513] = 3, + [27154] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1672), 7, + ACTIONS(1158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87431,7 +88167,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1674), 38, + ACTIONS(1160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87470,11 +88206,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31567] = 3, + [27208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1312), 7, + ACTIONS(1154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87482,7 +88218,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1314), 38, + ACTIONS(1156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87521,11 +88257,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31621] = 3, + [27262] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1286), 7, + ACTIONS(1130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87533,7 +88269,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1288), 38, + ACTIONS(1132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87572,11 +88308,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31675] = 3, + [27316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1696), 7, + ACTIONS(1126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87584,7 +88320,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1698), 38, + ACTIONS(1128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87623,11 +88359,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31729] = 3, + [27370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1137), 7, + ACTIONS(1114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87635,7 +88371,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1139), 38, + ACTIONS(1116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87674,11 +88410,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31783] = 3, + [27424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1688), 7, + ACTIONS(1122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87686,7 +88422,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1690), 38, + ACTIONS(1124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87725,62 +88461,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31837] = 3, + [27478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1782), 7, + ACTIONS(2562), 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(2560), 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(1784), 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, - [31891] = 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, + [27532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1676), 7, + ACTIONS(1134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87788,7 +88524,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1678), 38, + ACTIONS(1136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87827,11 +88563,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31945] = 3, + [27586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1352), 7, + ACTIONS(1307), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87839,7 +88575,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1354), 38, + ACTIONS(1309), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87878,11 +88614,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31999] = 3, + [27640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1278), 7, + ACTIONS(1299), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87890,7 +88626,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1280), 38, + ACTIONS(1301), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87929,11 +88665,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32053] = 3, + [27694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, + ACTIONS(1295), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87941,7 +88677,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1256), 38, + ACTIONS(1297), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87980,11 +88716,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32107] = 3, + [27748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1874), 7, + ACTIONS(1287), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87992,7 +88728,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1876), 38, + ACTIONS(1289), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88031,11 +88767,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32161] = 3, + [27802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1680), 7, + ACTIONS(1138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88043,7 +88779,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1682), 38, + ACTIONS(1140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88082,11 +88818,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32215] = 3, + [27856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1838), 7, + ACTIONS(2566), 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(2564), 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, + [27910] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88094,7 +88881,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1840), 38, + ACTIONS(1144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88133,11 +88920,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32269] = 3, + [27964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1736), 7, + ACTIONS(1146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88145,7 +88932,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1738), 38, + ACTIONS(1148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88184,11 +88971,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32323] = 3, + [28018] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1668), 7, + ACTIONS(1279), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88196,7 +88983,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1670), 38, + ACTIONS(1281), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88235,11 +89022,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32377] = 3, + [28072] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1656), 7, + ACTIONS(1150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88247,7 +89034,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1658), 38, + ACTIONS(1152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88286,62 +89073,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32431] = 3, + [28126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2496), 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(2494), 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, - [32485] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1524), 7, + ACTIONS(1246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88349,7 +89085,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1526), 38, + ACTIONS(1248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88388,62 +89124,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32539] = 3, + [28180] = 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, - 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, - [32593] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1684), 7, + ACTIONS(1238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88451,7 +89136,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1686), 38, + ACTIONS(1240), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88490,11 +89175,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32647] = 3, + [28234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1460), 7, + ACTIONS(1210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88502,7 +89187,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1462), 38, + ACTIONS(1212), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88541,11 +89226,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32701] = 3, + [28288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1456), 7, + ACTIONS(1170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88553,7 +89238,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1458), 38, + ACTIONS(1172), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88592,11 +89277,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32755] = 3, + [28342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1440), 7, + ACTIONS(1174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88604,7 +89289,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1442), 38, + ACTIONS(1176), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88643,11 +89328,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32809] = 3, + [28396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 15, + ACTIONS(2155), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88663,7 +89348,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2502), 29, + ACTIONS(2157), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88693,11 +89378,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32862] = 3, + [28449] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 15, + ACTIONS(2570), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88713,7 +89398,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2392), 29, + ACTIONS(2568), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88743,11 +89428,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32915] = 3, + [28502] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2111), 15, + ACTIONS(429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88763,7 +89448,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2113), 29, + ACTIONS(427), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88793,11 +89478,319 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32968] = 3, + [28555] = 18, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_EQ, + 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, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(441), 15, + 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(2572), 19, + 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_PIPE_PIPE, + 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, + [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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 2, + 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), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(2572), 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, + [28713] = 17, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2594), 1, + anon_sym_PIPE, + ACTIONS(2596), 1, + anon_sym_CARET, + ACTIONS(2602), 1, + anon_sym_DOT, + 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(2572), 20, + 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_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, + [28794] = 13, + 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(2602), 1, + anon_sym_DOT, + STATE(1078), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 2, + 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), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2572), 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, + [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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 2, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2572), 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, + [28936] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88813,7 +89806,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(439), 29, + ACTIONS(2604), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88843,11 +89836,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33021] = 3, + [28989] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(417), 15, + ACTIONS(407), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88863,7 +89856,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(415), 29, + ACTIONS(405), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88893,13 +89886,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33074] = 4, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, + [29042] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 15, + ACTIONS(2610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88915,10 +89906,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2392), 28, + ACTIONS(2608), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -88944,11 +89936,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33129] = 3, + [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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(437), 15, + 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(2612), 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, + [29180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2620), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88964,7 +90022,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(435), 29, + ACTIONS(2618), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88994,11 +90052,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33182] = 3, + [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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 15, + 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(2622), 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, + [29318] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(403), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89014,7 +90138,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2508), 29, + ACTIONS(401), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89044,11 +90168,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33235] = 3, + [29371] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2514), 15, + ACTIONS(2628), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89064,7 +90188,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2512), 29, + ACTIONS(2626), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89094,11 +90218,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33288] = 3, + [29424] = 4, + ACTIONS(2392), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2518), 15, + ACTIONS(2386), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89114,11 +90240,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2516), 29, + ACTIONS(2384), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -89144,11 +90269,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33341] = 3, + [29479] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(580), 15, + ACTIONS(2632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89164,7 +90289,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(578), 29, + ACTIONS(2630), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89194,40 +90319,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33394] = 3, + [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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2522), 15, - anon_sym_PLUS, + 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, + anon_sym_PLUS, 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), 29, + ACTIONS(2572), 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, @@ -89244,11 +90376,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33447] = 3, + [29599] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2526), 15, + ACTIONS(2636), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89264,7 +90396,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2524), 29, + ACTIONS(2634), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89294,62 +90426,152 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33500] = 19, - ACTIONS(2530), 1, + [29652] = 9, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2582), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2572), 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, + [29717] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(441), 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, - ACTIONS(2556), 4, + anon_sym_DOT, + ACTIONS(439), 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, - ACTIONS(2528), 18, + 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, + [29770] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + 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), 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, @@ -89360,11 +90582,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33585] = 3, + [29823] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 15, + ACTIONS(2644), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89380,7 +90602,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2562), 29, + ACTIONS(2642), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89410,11 +90632,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33638] = 3, + [29876] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2568), 15, + ACTIONS(2648), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89430,7 +90652,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2566), 29, + ACTIONS(2646), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89460,11 +90682,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33691] = 3, + [29929] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(564), 15, + ACTIONS(2652), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89480,7 +90702,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(562), 29, + ACTIONS(2650), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89510,11 +90732,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33744] = 3, + [29982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 15, + ACTIONS(2656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89530,7 +90752,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2570), 29, + ACTIONS(2654), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89560,11 +90782,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33797] = 3, + [30035] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(594), 15, + 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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2664), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89580,7 +90852,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(592), 29, + ACTIONS(2662), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89610,40 +90882,118 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33850] = 3, + [30141] = 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(2668), 1, + anon_sym_EQ, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2576), 15, + ACTIONS(2578), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + 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(2666), 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, + [30226] = 15, + 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, - anon_sym_DASH, + ACTIONS(2594), 1, anon_sym_PIPE, + ACTIONS(2596), 1, anon_sym_CARET, + ACTIONS(2602), 1, + anon_sym_DOT, + STATE(1078), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 2, + 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, - anon_sym_DOT, - ACTIONS(2574), 29, + ACTIONS(2582), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2572), 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, @@ -89660,11 +91010,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33903] = 3, + [30303] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, + ACTIONS(2672), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89680,7 +91030,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2578), 29, + ACTIONS(2670), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89710,11 +91060,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33956] = 3, + [30356] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(447), 15, + ACTIONS(2466), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89730,7 +91080,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(445), 29, + ACTIONS(2462), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89760,11 +91110,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34009] = 3, + [30409] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 15, + ACTIONS(465), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89780,7 +91130,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2582), 29, + ACTIONS(463), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89810,40 +91160,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34062] = 3, + [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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2358), 15, + ACTIONS(2578), 2, 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2356), 29, + ACTIONS(2572), 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, @@ -89860,11 +91219,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34115] = 3, + [30533] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(598), 15, + ACTIONS(2676), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89880,7 +91239,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(596), 29, + ACTIONS(2674), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89910,11 +91269,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34168] = 3, + [30586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 15, + ACTIONS(2680), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89930,7 +91289,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2586), 29, + ACTIONS(2678), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89960,18 +91319,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34221] = 3, + [30639] = 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(2592), 15, + ACTIONS(2588), 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_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -89979,21 +91350,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2590), 29, + ACTIONS(2682), 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, @@ -90010,18 +91375,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34274] = 3, + [30704] = 6, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(572), 15, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(313), 14, 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, @@ -90030,11 +91401,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(570), 29, + ACTIONS(311), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -90042,8 +91412,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, @@ -90060,11 +91428,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34327] = 3, + [30763] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 15, + 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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(425), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90080,7 +91498,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2594), 29, + ACTIONS(423), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90110,11 +91528,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34380] = 3, + [30869] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 15, + ACTIONS(2692), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90130,7 +91548,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2598), 29, + ACTIONS(2690), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90160,11 +91578,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34433] = 3, + [30922] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 15, + 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, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90180,7 +91648,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2602), 29, + ACTIONS(2698), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90210,11 +91678,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34486] = 3, + [31028] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 15, + ACTIONS(2704), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90230,7 +91698,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2606), 29, + ACTIONS(2702), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90260,11 +91728,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34539] = 3, + [31081] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 15, + ACTIONS(2708), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90280,7 +91748,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2610), 29, + ACTIONS(2706), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90310,11 +91778,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34592] = 3, + [31134] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(401), 15, + ACTIONS(2712), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90330,7 +91798,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(399), 29, + ACTIONS(2710), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90360,11 +91828,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34645] = 3, + [31187] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(590), 15, + ACTIONS(2712), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90380,7 +91848,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(588), 29, + ACTIONS(2710), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90410,111 +91878,112 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34698] = 3, + [31240] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2526), 15, - anon_sym_PLUS, + ACTIONS(2716), 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(2524), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + sym_metavariable, + ACTIONS(2714), 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, + [31293] = 4, + ACTIONS(2722), 1, 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, - [34751] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(584), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2720), 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(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, - 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, - [34804] = 3, + 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, + ACTIONS(2726), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90530,7 +91999,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2614), 29, + ACTIONS(2724), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90560,11 +92029,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34857] = 3, + [31401] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 15, + ACTIONS(2730), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90580,7 +92049,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2618), 29, + ACTIONS(2728), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90610,11 +92079,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34910] = 3, + [31454] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, + ACTIONS(2734), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90630,7 +92099,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2622), 29, + ACTIONS(2732), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90660,11 +92129,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34963] = 3, + [31507] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 15, + ACTIONS(2738), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90680,7 +92149,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2626), 29, + ACTIONS(2736), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90710,11 +92179,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35016] = 3, + [31560] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(413), 15, + ACTIONS(453), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90730,7 +92199,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(411), 29, + ACTIONS(451), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90760,61 +92229,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35069] = 3, + [31613] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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), 29, + ACTIONS(2742), 12, 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, - [35122] = 3, + 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 15, + ACTIONS(2746), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90830,7 +92299,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2634), 29, + ACTIONS(2744), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90860,62 +92329,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35175] = 19, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2640), 1, - anon_sym_EQ, - STATE(1008), 1, - sym_arguments, + [31719] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2159), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 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(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2638), 18, + anon_sym_DOT, + ACTIONS(2161), 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, @@ -90926,11 +92379,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35260] = 3, + [31772] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2644), 15, + ACTIONS(2750), 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(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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90946,7 +92449,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2642), 29, + ACTIONS(459), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90976,11 +92479,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35313] = 3, + [31878] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(421), 15, + ACTIONS(602), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90996,7 +92499,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(419), 29, + ACTIONS(600), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91026,11 +92529,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35366] = 3, + [31931] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, + ACTIONS(2754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91046,7 +92549,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2646), 29, + ACTIONS(2752), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91076,11 +92579,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35419] = 3, + [31984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2135), 15, + ACTIONS(2758), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91096,7 +92599,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2137), 29, + ACTIONS(2756), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91126,11 +92629,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35472] = 3, + [32037] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2410), 15, + ACTIONS(598), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91146,7 +92649,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2406), 29, + ACTIONS(596), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91176,46 +92679,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35525] = 3, + [32090] = 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, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2652), 15, + ACTIONS(2578), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + 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, - anon_sym_DOT, - ACTIONS(2650), 29, + 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_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, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91226,11 +92748,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35578] = 3, + [32181] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2656), 15, + ACTIONS(2772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91246,7 +92768,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2654), 29, + ACTIONS(2770), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91276,11 +92798,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35631] = 3, + [32234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2660), 15, + ACTIONS(2776), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91296,7 +92818,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2658), 29, + ACTIONS(2774), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91326,11 +92848,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35684] = 3, + [32287] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(425), 15, + ACTIONS(582), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91346,7 +92868,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(423), 29, + ACTIONS(580), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91376,18 +92898,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35737] = 3, + [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(2664), 15, + 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_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -91395,21 +92929,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2662), 29, + ACTIONS(2778), 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, @@ -91426,11 +92954,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35790] = 3, + [32405] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 15, + ACTIONS(2784), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91446,7 +92974,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2336), 29, + ACTIONS(2782), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91476,47 +93004,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35843] = 4, - ACTIONS(2666), 1, - anon_sym_COLON_COLON, + [32458] = 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(2788), 1, + anon_sym_EQ, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2578), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + 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, - anon_sym_DOT, - ACTIONS(453), 28, + ACTIONS(2598), 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_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, @@ -91527,11 +93070,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35898] = 3, + [32543] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 15, + ACTIONS(590), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91547,7 +93090,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2668), 29, + ACTIONS(588), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91577,62 +93120,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35951] = 19, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2674), 1, - anon_sym_EQ, - STATE(1008), 1, - sym_arguments, + [32596] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2211), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 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(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2672), 18, + anon_sym_DOT, + ACTIONS(2213), 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, @@ -91643,11 +93170,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36036] = 3, + [32649] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 15, + ACTIONS(469), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91663,7 +93190,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2676), 29, + ACTIONS(467), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91693,48 +93220,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36089] = 11, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, + [32702] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(449), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2536), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2682), 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(2680), 24, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(447), 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, @@ -91751,11 +93270,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36158] = 3, + [32755] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2330), 15, + ACTIONS(2792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91771,7 +93290,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2328), 29, + ACTIONS(2790), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91801,30 +93320,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36211] = 9, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, + [32808] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2686), 13, + ACTIONS(2796), 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, @@ -91832,15 +93339,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2684), 24, + anon_sym_DOT, + ACTIONS(2794), 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, @@ -91857,106 +93370,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36276] = 13, - ACTIONS(2530), 1, + [32861] = 19, + ACTIONS(283), 1, + anon_sym_EQ, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2560), 1, + 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, - STATE(1008), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2544), 2, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2680), 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, + ACTIONS(2598), 4, 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, - [36349] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2690), 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(2688), 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, @@ -91967,11 +93436,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36402] = 3, + [32946] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2694), 15, + ACTIONS(2800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91987,7 +93456,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2692), 29, + ACTIONS(2798), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92017,11 +93486,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36455] = 3, + [32999] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(405), 15, + ACTIONS(445), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92037,7 +93506,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(403), 29, + ACTIONS(443), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92067,11 +93536,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36508] = 3, + [33052] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(594), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92087,7 +93556,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 29, + ACTIONS(592), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92117,79 +93586,94 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36561] = 3, + [33105] = 21, + 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, + anon_sym_LPAREN, + ACTIONS(2808), 1, + anon_sym_STAR, + ACTIONS(2814), 1, + anon_sym_for, + ACTIONS(2816), 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(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2698), 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(2696), 29, + ACTIONS(2804), 2, 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, - [36614] = 10, - ACTIONS(2530), 1, + 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, + [33194] = 9, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2682), 10, + ACTIONS(2822), 13, anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92199,7 +93683,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2680), 24, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2820), 24, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -92224,130 +93710,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36681] = 18, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2682), 1, - anon_sym_EQ, - STATE(1008), 1, - sym_arguments, + [33259] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2826), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 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(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2680), 19, + anon_sym_DOT, + ACTIONS(2824), 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_PIPE_PIPE, - 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, - [36764] = 22, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 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(2700), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92358,11 +93760,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36855] = 3, + [33312] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(576), 15, + ACTIONS(2830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92378,7 +93780,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(574), 29, + ACTIONS(2828), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92408,11 +93810,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36908] = 3, + [33365] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2834), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92428,7 +93830,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 29, + ACTIONS(2832), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92458,11 +93860,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36961] = 3, + [33418] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 15, + ACTIONS(437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92478,7 +93880,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2710), 29, + ACTIONS(435), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92508,61 +93910,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37014] = 3, + [33471] = 4, + ACTIONS(2840), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(560), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2838), 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(558), 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, - [37067] = 3, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2836), 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, + [33526] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2716), 15, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92578,7 +93981,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2714), 29, + ACTIONS(459), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92608,80 +94011,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37120] = 22, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, - sym_arguments, + [33579] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2718), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2708), 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, - [37211] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(409), 15, + ACTIONS(2199), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92697,7 +94031,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(407), 29, + ACTIONS(2201), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92727,11 +94061,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37264] = 3, + [33632] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2722), 15, + ACTIONS(2844), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92747,7 +94081,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2720), 29, + ACTIONS(2842), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92777,30 +94111,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37317] = 9, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, + [33685] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2682), 13, + ACTIONS(2848), 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, @@ -92808,148 +94130,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2680), 24, + anon_sym_DOT, + ACTIONS(2846), 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_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, - [37382] = 14, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2682), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2680), 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, - [37457] = 19, - ACTIONS(283), 1, - anon_sym_EQ, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(277), 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, @@ -92960,11 +94161,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37542] = 3, + [33738] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2726), 15, + ACTIONS(2382), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92980,7 +94181,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2724), 29, + ACTIONS(2380), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93010,11 +94211,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37595] = 3, + [33791] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2852), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93030,7 +94231,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 29, + ACTIONS(2850), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93060,11 +94261,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37648] = 3, + [33844] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(429), 15, + ACTIONS(2856), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93080,7 +94281,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(427), 29, + ACTIONS(2854), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93110,11 +94311,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37701] = 3, + [33897] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 15, + ACTIONS(2396), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93130,7 +94331,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2728), 29, + ACTIONS(2394), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93160,11 +94361,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37754] = 3, + [33950] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, + ACTIONS(2428), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93180,7 +94381,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2732), 29, + ACTIONS(2426), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93210,11 +94411,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37807] = 3, + [34003] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2738), 15, + ACTIONS(2860), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93230,7 +94431,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2736), 29, + ACTIONS(2858), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93260,11 +94461,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37860] = 3, + [34056] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93280,7 +94481,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 29, + ACTIONS(2862), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93309,61 +94510,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37913] = 17, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2682), 1, - anon_sym_EQ, - STATE(1008), 1, - sym_arguments, + anon_sym_GT_GT_EQ, + [34109] = 4, + ACTIONS(2866), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(461), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 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(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2680), 20, + anon_sym_DOT, + ACTIONS(459), 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, @@ -93374,30 +94562,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37994] = 9, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, + [34164] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2742), 13, + ACTIONS(2870), 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, @@ -93405,15 +94581,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2740), 24, + anon_sym_DOT, + ACTIONS(2868), 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, @@ -93430,11 +94612,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38059] = 3, + [34217] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 15, + ACTIONS(2874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93450,7 +94632,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2744), 29, + ACTIONS(2872), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93480,11 +94662,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38112] = 3, + [34270] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 15, + ACTIONS(2878), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93500,7 +94682,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2748), 29, + ACTIONS(2876), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93530,11 +94712,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38165] = 3, + [34323] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2131), 15, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93550,7 +94732,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2133), 29, + ACTIONS(459), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93580,11 +94762,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38218] = 3, + [34376] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2882), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93600,7 +94782,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 29, + ACTIONS(2880), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93630,55 +94812,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38271] = 12, - ACTIONS(2530), 1, + [34429] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2546), 1, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2560), 1, + 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, - STATE(1008), 1, + 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, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2544), 2, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2680), 24, + ACTIONS(2598), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2884), 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(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93689,11 +94881,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38342] = 3, + [34520] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 15, + ACTIONS(477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93709,7 +94901,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2752), 29, + ACTIONS(475), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93739,11 +94931,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38395] = 3, + [34573] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2151), 15, + ACTIONS(419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93759,7 +94951,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2153), 29, + ACTIONS(417), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93789,11 +94981,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38448] = 3, + [34626] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2758), 15, + ACTIONS(481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93809,7 +95001,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2756), 29, + ACTIONS(479), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93839,30 +95031,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38501] = 9, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, + [34679] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2762), 13, + ACTIONS(415), 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, @@ -93870,15 +95050,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2760), 24, + anon_sym_DOT, + ACTIONS(413), 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, @@ -93895,11 +95081,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38566] = 3, + [34732] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 15, + ACTIONS(586), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93915,7 +95101,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2764), 29, + ACTIONS(584), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93945,11 +95131,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38619] = 3, + [34785] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 15, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93965,7 +95151,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2768), 29, + ACTIONS(459), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93995,24 +95181,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38672] = 6, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - STATE(1008), 1, - sym_arguments, + [34838] = 5, + ACTIONS(2886), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(325), 14, + STATE(1077), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2333), 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(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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2891), 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, @@ -94021,10 +95253,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(323), 26, + ACTIONS(2889), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -94032,6 +95265,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, @@ -94048,11 +95283,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38731] = 3, + [34948] = 21, + 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, + anon_sym_LPAREN, + ACTIONS(2808), 1, + anon_sym_STAR, + ACTIONS(2814), 1, + anon_sym_for, + ACTIONS(2816), 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(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2812), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2893), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + 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, + [35037] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 15, + ACTIONS(2897), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94068,7 +95371,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2772), 29, + ACTIONS(2895), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94098,11 +95401,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38784] = 3, + [35090] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(433), 15, + ACTIONS(2901), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94118,7 +95421,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(431), 29, + ACTIONS(2899), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94148,77 +95451,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38837] = 19, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2778), 1, - anon_sym_EQ, - STATE(1008), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2776), 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, - [38922] = 3, + [35143] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 15, + ACTIONS(2905), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94234,7 +95471,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2780), 29, + ACTIONS(2903), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94264,11 +95501,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38975] = 3, + [35196] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2786), 15, + ACTIONS(2909), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94284,7 +95521,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2784), 29, + ACTIONS(2907), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94314,52 +95551,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39028] = 15, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, + [35249] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 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(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2680), 24, + 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, @@ -94375,316 +95600,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39105] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2790), 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(2788), 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_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39157] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2794), 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(2792), 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_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39209] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2798), 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(2796), 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_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39261] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2802), 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(2800), 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_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39313] = 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), 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_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39365] = 5, - ACTIONS(2808), 1, - anon_sym_POUND, + anon_sym_GT_GT_EQ, + [35302] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2223), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(433), 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(2221), 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_pub, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39421] = 7, - ACTIONS(2332), 1, + 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(431), 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, + [35355] = 7, + ACTIONS(2422), 1, anon_sym_LBRACE, - ACTIONS(2334), 1, + ACTIONS(2424), 1, anon_sym_COLON_COLON, - ACTIONS(2811), 1, + ACTIONS(2911), 1, anon_sym_BANG, - STATE(983), 1, + STATE(1048), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94700,7 +95679,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 24, + ACTIONS(459), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -94725,24 +95704,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39481] = 3, + [35415] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2815), 12, - anon_sym_SEMI, + ACTIONS(2838), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + 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(2813), 31, + ACTIONS(2836), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94760,27 +95741,23 @@ 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_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, + 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, - [39533] = 4, - ACTIONS(2821), 1, - anon_sym_RBRACE, + [35467] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2819), 14, + ACTIONS(2720), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -94795,7 +95772,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2817), 27, + ACTIONS(2718), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94814,6 +95791,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_const, + anon_sym_default, + anon_sym_union, anon_sym_ref, anon_sym__, sym_mutable_specifier, @@ -94823,54 +95802,54 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39586] = 20, + [35519] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(856), 1, + 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(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2823), 1, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(2827), 1, - anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_STAR, - ACTIONS(2833), 1, - anon_sym_for, - ACTIONS(2835), 1, - anon_sym_AMP, - ACTIONS(2837), 1, + ACTIONS(2917), 1, + anon_sym_default, + ACTIONS(2919), 1, sym_metavariable, - STATE(1721), 1, + STATE(711), 1, sym_scoped_type_identifier, - STATE(1773), 1, - sym_where_predicate, - STATE(1849), 1, + STATE(825), 1, sym_generic_type, - STATE(2241), 1, + STATE(1057), 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(2242), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2323), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2825), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(862), 3, + 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(2176), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2831), 17, + ACTIONS(2915), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94888,66 +95867,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [39671] = 25, - ACTIONS(612), 1, + anon_sym_union, + [35606] = 25, + ACTIONS(363), 1, anon_sym_RBRACK, - ACTIONS(2530), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2839), 1, + ACTIONS(2921), 1, anon_sym_SEMI, - ACTIONS(2841), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, - STATE(1904), 1, + STATE(1794), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94958,124 +95938,168 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39766] = 25, - ACTIONS(365), 1, - anon_sym_RBRACK, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2843), 1, - anon_sym_SEMI, - ACTIONS(2845), 1, - anon_sym_COMMA, - STATE(1008), 1, - sym_arguments, - STATE(1770), 1, - aux_sym_array_expression_repeat1, + [35701] = 21, + 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, + anon_sym_COLON_COLON, + ACTIONS(2818), 1, + sym_metavariable, + ACTIONS(2925), 1, + sym_identifier, + ACTIONS(2927), 1, + anon_sym_default, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1271), 1, + sym_scoped_type_identifier, + STATE(1308), 1, + sym_generic_type, + STATE(1341), 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, + 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, + [35788] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2876), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2708), 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, - [39861] = 20, - ACTIONS(77), 1, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_LT, - ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2823), 1, + anon_sym_AMP, + 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, + 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(2827), 1, - anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_STAR, - ACTIONS(2833), 1, + sym_self, + sym_super, + sym_crate, + [35839] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(2835), 1, - anon_sym_AMP, - ACTIONS(2837), 1, + ACTIONS(696), 1, + anon_sym_extern, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2818), 1, sym_metavariable, - STATE(1721), 1, + ACTIONS(2927), 1, + anon_sym_default, + ACTIONS(2929), 1, + sym_identifier, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1272), 1, sym_scoped_type_identifier, - STATE(1773), 1, - sym_where_predicate, - STATE(1849), 1, + STATE(1312), 1, sym_generic_type, - STATE(2241), 1, + STATE(1323), 1, + sym_function_type, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2323), 1, + STATE(2308), 1, + sym_function_modifiers, + STATE(2415), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2847), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(862), 3, + 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(2176), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2831), 17, + ACTIONS(2812), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95093,28 +96117,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [39946] = 4, - ACTIONS(2853), 1, - anon_sym_RBRACE, + anon_sym_union, + [35926] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2851), 14, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(1118), 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(2849), 27, + ACTIONS(1120), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95132,74 +96151,143 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, anon_sym_const, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, + 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, + 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(2933), 1, + anon_sym_RPAREN, + ACTIONS(2937), 1, + anon_sym_COMMA, + 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, - sym_identifier, + STATE(965), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1937), 2, + sym_meta_item, + sym__literal, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - [39999] = 24, - ACTIONS(2530), 1, + 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, + [36056] = 25, + ACTIONS(628), 1, + anon_sym_RBRACK, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2855), 1, - anon_sym_RPAREN, - ACTIONS(2857), 1, + ACTIONS(2943), 1, + anon_sym_SEMI, + ACTIONS(2945), 1, anon_sym_COMMA, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, - STATE(1807), 1, - aux_sym_arguments_repeat1, + STATE(2004), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95210,53 +96298,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40091] = 20, + [36151] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(856), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2837), 1, - sym_metavariable, - ACTIONS(2859), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2802), 1, sym_identifier, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1260), 1, + 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, + sym_metavariable, + STATE(1773), 1, sym_scoped_type_identifier, - STATE(1297), 1, + STATE(1989), 1, + sym_where_predicate, + STATE(2036), 1, sym_generic_type, - STATE(1306), 1, - sym_function_type, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2323), 1, + STATE(2415), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(2812), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(2861), 17, + 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, @@ -95274,69 +96363,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [40175] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2851), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, + [36236] = 20, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(886), 1, 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(2849), 27, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2802), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [40225] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1157), 10, + ACTIONS(2806), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2808), 1, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(2814), 1, + anon_sym_for, + ACTIONS(2816), 1, anon_sym_AMP, + ACTIONS(2818), 1, sym_metavariable, - ACTIONS(1159), 31, + STATE(1715), 1, + sym_where_predicate, + STATE(1773), 1, + sym_scoped_type_identifier, + 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(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, @@ -95354,31 +96428,20 @@ 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_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [40275] = 5, - ACTIONS(2434), 1, - anon_sym_COLON_COLON, - ACTIONS(2811), 1, + [36321] = 6, + ACTIONS(2390), 1, anon_sym_BANG, + ACTIONS(2392), 1, + anon_sym_COLON_COLON, + ACTIONS(2947), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2386), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95392,13 +96455,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 24, + ACTIONS(2384), 23, 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, @@ -95417,26 +96479,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40329] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2819), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, + [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, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(2917), 1, + anon_sym_default, + ACTIONS(2919), 1, sym_metavariable, - ACTIONS(2817), 27, + 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, @@ -95454,74 +96544,232 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_const, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [40379] = 24, - ACTIONS(385), 1, - anon_sym_RPAREN, - ACTIONS(2530), 1, + anon_sym_union, + [36465] = 5, + ACTIONS(2534), 1, + anon_sym_COLON_COLON, + ACTIONS(2911), 1, + anon_sym_BANG, + 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), 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, + 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, + [36519] = 24, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + 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(2552), 1, + 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, + sym_arguments, + STATE(1837), 1, + aux_sym_arguments_repeat1, + 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, + [36611] = 24, + ACTIONS(371), 1, + anon_sym_RPAREN, + 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(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2863), 1, + ACTIONS(2955), 1, anon_sym_COMMA, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, - STATE(1793), 1, + STATE(1969), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + 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, + [36703] = 6, + ACTIONS(2366), 1, + anon_sym_BANG, + ACTIONS(2957), 1, + anon_sym_COLON_COLON, + STATE(1048), 1, + sym_field_initializer_list, + 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, - ACTIONS(2556), 4, + 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, - ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95532,53 +96780,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40471] = 20, + [36759] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2207), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2865), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2869), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(709), 1, - sym_scoped_type_identifier, - STATE(839), 1, - sym_generic_type, - STATE(1009), 1, - sym_function_type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2243), 1, - sym_function_modifiers, - STATE(2260), 1, + ACTIONS(2959), 1, + anon_sym_RPAREN, + STATE(1553), 1, sym_scoped_identifier, - STATE(2331), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2332), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, + 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(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(2867), 17, + 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, @@ -95596,53 +96838,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [40555] = 20, + anon_sym_default, + anon_sym_union, + [36835] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2207), 1, + ACTIONS(714), 1, + anon_sym_DASH, + ACTIONS(718), 1, + aux_sym_string_literal_token1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_metavariable, - ACTIONS(2871), 1, + ACTIONS(2961), 1, sym_identifier, - STATE(707), 1, - sym_scoped_type_identifier, - STATE(829), 1, - sym_generic_type, - STATE(1015), 1, - sym_function_type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2243), 1, - sym_function_modifiers, - STATE(2260), 1, + ACTIONS(2967), 1, + sym_metavariable, + STATE(1346), 1, sym_scoped_identifier, - STATE(2331), 1, + STATE(1386), 1, + sym__literal_pattern, + STATE(2287), 1, sym_bracketed_type, - STATE(2332), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, + ACTIONS(720), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2965), 3, sym_self, sym_super, sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(2867), 17, + 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, @@ -95660,64 +96898,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [40639] = 6, - ACTIONS(2306), 1, - anon_sym_BANG, - ACTIONS(2873), 1, + anon_sym_default, + anon_sym_union, + [36911] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(714), 1, + anon_sym_DASH, + ACTIONS(718), 1, + aux_sym_string_literal_token1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - STATE(983), 1, - sym_field_initializer_list, + 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(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + 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, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [36987] = 16, + ACTIONS(77), 1, 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(453), 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, - [40695] = 3, + 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(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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2654), 10, + ACTIONS(2981), 9, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_PLUS, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, @@ -95725,7 +97034,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2656), 31, + ACTIONS(2979), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95749,61 +97058,119 @@ static uint16_t ts_small_parse_table[] = { 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, sym_self, sym_super, sym_crate, - [40745] = 20, + [37112] = 23, + ACTIONS(483), 1, + anon_sym_RPAREN, + 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(2983), 1, + anon_sym_COMMA, + 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, + [37201] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(856), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2837), 1, - sym_metavariable, - ACTIONS(2875), 1, + ACTIONS(2931), 1, sym_identifier, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1258), 1, - sym_scoped_type_identifier, - STATE(1290), 1, - sym_generic_type, - STATE(1322), 1, - sym_function_type, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + ACTIONS(2941), 1, + sym_metavariable, + STATE(1553), 1, + sym_scoped_identifier, + STATE(2370), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, - STATE(2323), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + 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(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(2861), 17, + 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, @@ -95821,62 +97188,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [40829] = 23, - ACTIONS(638), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + anon_sym_default, + anon_sym_union, + [37274] = 23, + ACTIONS(119), 1, + anon_sym_RBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(225), 1, - sym_block, - STATE(1008), 1, + 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, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95887,42 +97256,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40918] = 3, + [37363] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 16, - anon_sym_PLUS, + ACTIONS(2742), 9, + anon_sym_LPAREN, + 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, + 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_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, anon_sym_AMP, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, anon_sym_PIPE, + ACTIONS(2596), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2366), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, + ACTIONS(2764), 1, anon_sym_as, - anon_sym_COLON_COLON, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + anon_sym_RPAREN, + ACTIONS(2989), 1, + anon_sym_COMMA, + 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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, @@ -95933,49 +97368,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40967] = 17, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, + [37501] = 4, + ACTIONS(2995), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, - sym_identifier, - ACTIONS(2907), 1, - anon_sym_RPAREN, - ACTIONS(2911), 1, - anon_sym_COMMA, - ACTIONS(2915), 1, - sym_metavariable, - STATE(1512), 1, - sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 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(1052), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1864), 2, - sym_meta_item, - sym__literal, - ACTIONS(2913), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2909), 17, + 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, @@ -95993,62 +97401,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [41044] = 23, - ACTIONS(2530), 1, + 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, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2917), 1, - anon_sym_RPAREN, - ACTIONS(2919), 1, - anon_sym_COMMA, - STATE(1008), 1, + ACTIONS(2985), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96059,61 +97481,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41133] = 22, - ACTIONS(2530), 1, + [37641] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2921), 2, + ACTIONS(2997), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96124,61 +97546,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41220] = 22, - ACTIONS(2530), 1, + [37728] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2923), 2, + ACTIONS(2999), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96189,43 +97611,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41307] = 4, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2394), 16, - anon_sym_PLUS, - anon_sym_STAR, + [37815] = 23, + ACTIONS(15), 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, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3009), 1, anon_sym_AMP, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - anon_sym_DASH, + 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(53), 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, - anon_sym_DOT, - ACTIONS(2392), 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, + 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, @@ -96236,124 +97677,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41358] = 19, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(2827), 1, - anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_STAR, - ACTIONS(2833), 1, - anon_sym_for, - ACTIONS(2835), 1, - anon_sym_AMP, - ACTIONS(2837), 1, - sym_metavariable, - STATE(1721), 1, - sym_scoped_type_identifier, - STATE(1773), 1, - sym_where_predicate, - STATE(1849), 1, - sym_generic_type, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - STATE(2323), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - STATE(2176), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2831), 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, - [41439] = 23, - ACTIONS(2530), 1, + [37904] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - ACTIONS(2929), 1, - anon_sym_RBRACE, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3029), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96364,44 +97742,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41528] = 5, - ACTIONS(2306), 1, - anon_sym_BANG, - ACTIONS(2931), 1, - anon_sym_COLON_COLON, + [37991] = 23, + ACTIONS(117), 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, + 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(2985), 1, + anon_sym_SEMI, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2578), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + 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, - anon_sym_DOT, - ACTIONS(453), 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(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, @@ -96412,123 +97808,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41581] = 19, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(2827), 1, - anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_STAR, - ACTIONS(2833), 1, - anon_sym_for, - ACTIONS(2835), 1, - anon_sym_AMP, - ACTIONS(2837), 1, - sym_metavariable, - STATE(1717), 1, - sym_where_predicate, - STATE(1721), 1, - sym_scoped_type_identifier, - STATE(1849), 1, - sym_generic_type, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - STATE(2323), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - STATE(2176), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2831), 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, - [41662] = 22, - ACTIONS(2530), 1, + [38080] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + 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(2546), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, + STATE(725), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2933), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96539,62 +97874,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41749] = 23, - ACTIONS(2530), 1, + [38169] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + 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(2546), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2935), 1, - anon_sym_RBRACE, - ACTIONS(2937), 1, - anon_sym_COMMA, - STATE(1008), 1, + STATE(1044), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96605,61 +97940,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41838] = 22, - ACTIONS(2530), 1, + [38258] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + 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(2546), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, + STATE(1025), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2939), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96670,62 +98006,154 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41925] = 23, - ACTIONS(15), 1, + [38347] = 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_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), 24, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(2530), 1, + 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, + 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, + [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, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(71), 1, - sym_block, - STATE(1008), 1, + ACTIONS(3031), 1, + anon_sym_LBRACE, + STATE(1051), 1, + sym_match_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96736,11 +98164,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42014] = 3, + [38534] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2344), 16, + ACTIONS(2410), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -96757,7 +98185,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2346), 24, + ACTIONS(2412), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -96782,61 +98210,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42063] = 22, - ACTIONS(2530), 1, + [38583] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - STATE(1008), 1, + ACTIONS(2985), 1, + anon_sym_SEMI, + ACTIONS(3033), 1, + anon_sym_RBRACE, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2941), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96847,61 +98276,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42150] = 22, - ACTIONS(2530), 1, + [38672] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + 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(2546), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, + STATE(34), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2943), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96912,62 +98342,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42237] = 23, - ACTIONS(15), 1, + [38761] = 23, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(51), 1, + STATE(986), 1, sym_block, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96978,62 +98408,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42326] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [38850] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(55), 1, - sym_block, - STATE(1008), 1, + 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, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97044,62 +98474,90 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42415] = 23, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, + [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, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2560), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2384), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2945), 1, - anon_sym_RPAREN, - ACTIONS(2947), 1, - anon_sym_COMMA, - STATE(1008), 1, - sym_arguments, + 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, + [38992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2418), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 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(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + anon_sym_DOT, + ACTIONS(2420), 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(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97110,61 +98568,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42504] = 22, - ACTIONS(2530), 1, + [39041] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3043), 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(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(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - STATE(1008), 1, + ACTIONS(2985), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2949), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97175,62 +98680,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42591] = 23, - ACTIONS(638), 1, + [39179] = 23, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(237), 1, + STATE(1039), 1, sym_block, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97241,62 +98746,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42680] = 23, - ACTIONS(265), 1, - anon_sym_RBRACE, - ACTIONS(2530), 1, + [39268] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3045), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97307,62 +98811,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42769] = 23, - ACTIONS(271), 1, - anon_sym_RBRACE, - ACTIONS(2530), 1, + [39355] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2927), 1, + ACTIONS(2985), 1, anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3047), 1, + anon_sym_RBRACE, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97373,42 +98877,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42858] = 3, + [39444] = 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(1045), 1, + sym_block, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2324), 16, + ACTIONS(3001), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + 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, - anon_sym_DOT, - ACTIONS(2326), 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(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, @@ -97419,61 +98943,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42907] = 22, - ACTIONS(2530), 1, + [39533] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2951), 2, + ACTIONS(3049), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97484,62 +99008,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42994] = 23, - ACTIONS(586), 1, - anon_sym_RPAREN, - ACTIONS(2530), 1, + [39620] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2919), 1, - anon_sym_COMMA, - STATE(1008), 1, + ACTIONS(2985), 1, + anon_sym_SEMI, + ACTIONS(3051), 1, + anon_sym_RBRACE, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97550,62 +99074,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43083] = 23, - ACTIONS(2530), 1, + [39709] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - ACTIONS(2953), 1, - anon_sym_RBRACE, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3053), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97616,62 +99139,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43172] = 23, - ACTIONS(257), 1, - anon_sym_RBRACE, - ACTIONS(2530), 1, + [39796] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + 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(2546), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - STATE(1008), 1, + STATE(732), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97682,62 +99205,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43261] = 23, - ACTIONS(279), 1, + [39885] = 23, + ACTIONS(644), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(720), 1, + STATE(208), 1, sym_block, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97748,62 +99271,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43350] = 23, - ACTIONS(2530), 1, + [39974] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2955), 1, - anon_sym_LBRACE, - STATE(1008), 1, + STATE(54), 1, + sym_block, + STATE(1078), 1, sym_arguments, - STATE(1026), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97814,62 +99337,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43439] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [40063] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(32), 1, - sym_block, - STATE(1008), 1, + ACTIONS(3055), 1, + anon_sym_LBRACE, + STATE(219), 1, + sym_match_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97880,62 +99403,127 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43528] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [40152] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + 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(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2885), 1, + 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, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(50), 1, - sym_block, - STATE(1008), 1, + 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, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97946,62 +99534,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43617] = 23, - ACTIONS(2530), 1, + [40328] = 23, + ACTIONS(644), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + 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(2546), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - ACTIONS(2957), 1, - anon_sym_RBRACE, - STATE(1008), 1, + STATE(220), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98012,62 +99600,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43706] = 23, - ACTIONS(267), 1, + [40417] = 23, + ACTIONS(111), 1, anon_sym_RBRACE, - ACTIONS(2530), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2927), 1, + ACTIONS(2985), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98078,62 +99666,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43795] = 23, - ACTIONS(2530), 1, + [40506] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2927), 1, + ACTIONS(2985), 1, anon_sym_SEMI, - ACTIONS(2959), 1, + ACTIONS(3061), 1, anon_sym_RBRACE, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98144,62 +99732,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43884] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [40595] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(1008), 1, + 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, sym_arguments, - STATE(1029), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3063), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98210,62 +99797,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43973] = 23, - ACTIONS(2530), 1, + [40682] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + 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(2546), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2961), 1, - anon_sym_RBRACE, - ACTIONS(2963), 1, - anon_sym_COMMA, - STATE(1008), 1, + STATE(68), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98276,62 +99863,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44062] = 23, - ACTIONS(103), 1, - anon_sym_RBRACE, - ACTIONS(2530), 1, + [40771] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3065), 1, + anon_sym_RBRACE, + ACTIONS(3067), 1, + anon_sym_COMMA, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98342,62 +99929,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44151] = 23, - ACTIONS(638), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [40860] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(227), 1, - sym_block, - STATE(1008), 1, + ACTIONS(3069), 1, + anon_sym_LBRACE, + STATE(52), 1, + sym_match_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98408,62 +99995,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44240] = 23, - ACTIONS(638), 1, + [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, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(217), 1, + STATE(32), 1, sym_block, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98474,62 +100107,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44329] = 23, - ACTIONS(638), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [41087] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(206), 1, - sym_block, - STATE(1008), 1, + 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, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3075), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98540,128 +100172,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44418] = 23, - ACTIONS(2530), 1, + [41174] = 4, + ACTIONS(3077), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - ACTIONS(2965), 1, - anon_sym_RBRACE, - STATE(1008), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2993), 8, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2708), 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, - [44507] = 23, - ACTIONS(638), 1, + 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, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(233), 1, + STATE(974), 1, sym_block, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98672,62 +100285,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44596] = 23, - ACTIONS(15), 1, + [41314] = 23, + ACTIONS(644), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(53), 1, + STATE(218), 1, sym_block, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98738,108 +100351,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44685] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2352), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + [41403] = 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, - anon_sym_DASH, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, anon_sym_PIPE, + ACTIONS(2596), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2354), 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, + ACTIONS(2616), 1, 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, - [44734] = 23, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2885), 1, - anon_sym_AMP, - ACTIONS(2889), 1, - anon_sym_DOT_DOT, - ACTIONS(2891), 1, - anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, - anon_sym_PIPE, - ACTIONS(2897), 1, - anon_sym_CARET, - ACTIONS(2967), 1, - anon_sym_LBRACE, - STATE(65), 1, - sym_match_block, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3079), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98850,62 +100416,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44823] = 23, - ACTIONS(279), 1, + [41490] = 23, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(957), 1, + STATE(55), 1, sym_block, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98916,62 +100482,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44912] = 23, - ACTIONS(2530), 1, + [41579] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2927), 1, + ACTIONS(2985), 1, anon_sym_SEMI, - ACTIONS(2969), 1, + ACTIONS(3081), 1, anon_sym_RBRACE, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98982,62 +100548,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45001] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [41668] = 23, + ACTIONS(113), 1, + anon_sym_RBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(61), 1, - sym_block, - STATE(1008), 1, + 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, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99048,62 +100614,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45090] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2885), 1, - anon_sym_AMP, - ACTIONS(2889), 1, - anon_sym_DOT_DOT, - ACTIONS(2891), 1, - anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, - anon_sym_PIPE, - ACTIONS(2897), 1, - anon_sym_CARET, - STATE(1008), 1, - sym_arguments, - STATE(1059), 1, - sym_block, + [41757] = 5, + ACTIONS(2366), 1, + anon_sym_BANG, + ACTIONS(3083), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(461), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2883), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 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(2879), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + 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, - ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99114,61 +100662,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45179] = 22, - ACTIONS(2530), 1, + [41810] = 23, + ACTIONS(644), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + 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(2546), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, + STATE(215), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99179,62 +100728,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45266] = 23, - ACTIONS(15), 1, + [41899] = 23, + ACTIONS(644), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(31), 1, + STATE(212), 1, sym_block, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99245,62 +100794,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45355] = 23, - ACTIONS(279), 1, + [41988] = 23, + ACTIONS(644), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(726), 1, + STATE(207), 1, sym_block, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99311,62 +100860,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45444] = 23, - ACTIONS(638), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [42077] = 23, + ACTIONS(604), 1, + anon_sym_RPAREN, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(243), 1, - sym_block, - STATE(1008), 1, + 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, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99377,62 +100926,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45533] = 23, - ACTIONS(2530), 1, + [42166] = 23, + ACTIONS(644), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2973), 1, - anon_sym_LBRACE, - STATE(221), 1, - sym_match_block, - STATE(1008), 1, + STATE(222), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99443,62 +100992,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45622] = 23, - ACTIONS(443), 1, - anon_sym_RPAREN, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2919), 1, - anon_sym_COMMA, - STATE(1008), 1, - sym_arguments, + [42255] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2434), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 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(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + anon_sym_DOT, + ACTIONS(2436), 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(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99509,62 +101038,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45711] = 23, - ACTIONS(279), 1, + [42304] = 23, + ACTIONS(644), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(1008), 1, - sym_arguments, - STATE(1039), 1, + STATE(232), 1, sym_block, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99575,62 +101104,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45800] = 23, - ACTIONS(638), 1, + [42393] = 23, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(207), 1, + STATE(44), 1, sym_block, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99641,62 +101170,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45889] = 23, - ACTIONS(263), 1, - anon_sym_RBRACE, - ACTIONS(2530), 1, + [42482] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + 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(2546), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - STATE(1008), 1, + STATE(70), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99707,61 +101236,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45978] = 22, - ACTIONS(2530), 1, + [42571] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - STATE(1008), 1, + ACTIONS(2985), 1, + anon_sym_SEMI, + ACTIONS(3085), 1, + anon_sym_RBRACE, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2975), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99772,62 +101302,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46065] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [42660] = 18, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(978), 1, - sym_block, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2572), 14, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99838,62 +101362,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46154] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [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, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(975), 1, - sym_block, - STATE(1008), 1, + 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(3091), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99904,60 +101486,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46243] = 22, - ACTIONS(2530), 1, + [42902] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2977), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(2983), 1, + anon_sym_COMMA, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99968,106 +101550,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46329] = 4, - ACTIONS(2979), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2394), 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(2392), 23, + [42988] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2576), 1, 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, - [46379] = 22, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2981), 1, + ACTIONS(3093), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100078,60 +101614,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46465] = 22, - ACTIONS(2530), 1, + [43074] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2983), 1, + ACTIONS(3095), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100142,60 +101678,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46551] = 22, - ACTIONS(2530), 1, + [43160] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3097), 1, + anon_sym_COMMA, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100206,60 +101742,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46637] = 22, - ACTIONS(2530), 1, + [43246] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2987), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3099), 1, + anon_sym_RBRACK, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100270,60 +101806,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46723] = 22, - ACTIONS(2530), 1, + [43332] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2989), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3101), 1, + anon_sym_EQ_GT, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + 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, + [43418] = 4, + ACTIONS(3039), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2386), 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, - ACTIONS(2556), 4, + 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, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100334,60 +101916,121 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46809] = 22, - ACTIONS(2530), 1, + [43468] = 19, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2624), 1, + anon_sym_EQ, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2560), 1, + 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(2622), 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, + [43548] = 22, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2884), 1, + anon_sym_LBRACE, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2991), 1, - anon_sym_SEMI, - STATE(1008), 1, + 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(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100398,60 +102041,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46895] = 22, - ACTIONS(2530), 1, + [43634] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2993), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3103), 1, + anon_sym_COMMA, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100462,60 +102105,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46981] = 22, - ACTIONS(2530), 1, + [43720] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2919), 1, - anon_sym_COMMA, - STATE(1008), 1, + ACTIONS(3105), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100526,60 +102169,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47067] = 22, - ACTIONS(2530), 1, + [43806] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2995), 1, - anon_sym_RBRACK, - STATE(1008), 1, + ACTIONS(3107), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100590,60 +102233,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47153] = 22, - ACTIONS(2530), 1, + [43892] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2997), 1, - anon_sym_RBRACK, - STATE(1008), 1, + ACTIONS(3109), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100654,13 +102297,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47239] = 4, - ACTIONS(2464), 1, + [43978] = 4, + ACTIONS(3111), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2410), 15, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100676,7 +102319,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2406), 23, + ACTIONS(459), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -100700,60 +102343,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47289] = 22, - ACTIONS(2530), 1, + [44028] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2999), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3113), 1, + anon_sym_RBRACK, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100764,57 +102407,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47375] = 19, - ACTIONS(2530), 1, + [44114] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2674), 1, - anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(1008), 1, + 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(3115), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2672), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100825,60 +102471,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47455] = 22, - ACTIONS(2530), 1, + [44200] = 9, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3001), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3013), 1, + anon_sym_DOT_DOT, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(3011), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2684), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + 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, - ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100889,60 +102522,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47541] = 22, - ACTIONS(2530), 1, + [44260] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3003), 1, + ACTIONS(3117), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100953,118 +102586,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47627] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, - anon_sym_COLON_COLON, - ACTIONS(2905), 1, - sym_identifier, - ACTIONS(2915), 1, - sym_metavariable, - ACTIONS(3005), 1, - anon_sym_RPAREN, - STATE(1512), 1, - sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 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(1052), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2079), 2, - sym_meta_item, - sym__literal, - ACTIONS(2913), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2909), 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, - [47701] = 22, - ACTIONS(2530), 1, + [44346] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2700), 1, - anon_sym_LBRACE, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(1008), 1, + 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(3119), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101075,60 +102650,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47787] = 22, - ACTIONS(2530), 1, + [44432] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3007), 1, + ACTIONS(3121), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101139,60 +102714,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47873] = 22, - ACTIONS(2530), 1, + [44518] = 19, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2788), 1, + anon_sym_EQ, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_RBRACK, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2786), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101203,40 +102775,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47959] = 11, - ACTIONS(2530), 1, + [44598] = 9, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2879), 3, + ACTIONS(2780), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2682), 8, 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(2680), 19, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2778), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -101256,106 +102826,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48023] = 4, + [44658] = 6, ACTIONS(3013), 1, - anon_sym_LPAREN, + anon_sym_DOT_DOT, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3015), 8, - anon_sym_LBRACK, + ACTIONS(3011), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(313), 14, + 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(3011), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [48073] = 22, - ACTIONS(2530), 1, + 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(311), 21, anon_sym_LPAREN, - ACTIONS(2532), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, + anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP, - ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, + 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, + [44712] = 22, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2760), 1, + anon_sym_LBRACE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + 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_SEMI, - STATE(1008), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3019), 1, + anon_sym_PIPE, + ACTIONS(3021), 1, + anon_sym_CARET, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101366,60 +102938,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48159] = 22, - ACTIONS(2530), 1, + [44798] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3019), 1, + ACTIONS(3123), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101430,115 +103002,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48245] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, - anon_sym_COLON_COLON, - ACTIONS(3021), 1, - sym_identifier, - ACTIONS(3027), 1, - sym_metavariable, - STATE(1341), 1, - sym_scoped_identifier, - STATE(1389), 1, - sym__literal_pattern, - STATE(2237), 1, - sym_bracketed_type, - STATE(2403), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3025), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3023), 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, - [48319] = 19, - ACTIONS(2530), 1, + [44884] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(1008), 1, + 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(3125), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2528), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101549,60 +103066,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48399] = 22, - ACTIONS(2530), 1, + [44970] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3029), 1, + ACTIONS(3127), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101613,147 +103130,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48485] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, - anon_sym_COLON_COLON, - ACTIONS(2905), 1, - sym_identifier, - ACTIONS(2915), 1, - sym_metavariable, - ACTIONS(3031), 1, - anon_sym_RPAREN, - STATE(1512), 1, - sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 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(1052), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2079), 2, - sym_meta_item, - sym__literal, - ACTIONS(2913), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2909), 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, - [48559] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2798), 9, + [45056] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, + ACTIONS(2576), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(2586), 1, anon_sym_AMP, - sym_metavariable, - ACTIONS(2796), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [48607] = 6, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + 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(3129), 1, + anon_sym_RBRACK, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(325), 14, + ACTIONS(2578), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + 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, - anon_sym_DOT, - ACTIONS(323), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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, @@ -101764,75 +103194,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48661] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3035), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, + [45142] = 4, + ACTIONS(2472), 1, anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3033), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [48709] = 9, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2889), 1, - anon_sym_DOT_DOT, - STATE(1008), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2762), 13, + 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, @@ -101840,10 +103215,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2760), 19, + 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, anon_sym_EQ_EQ, @@ -101860,60 +103240,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48769] = 22, - ACTIONS(2530), 1, + [45192] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3037), 1, - anon_sym_EQ_GT, - STATE(1008), 1, + ACTIONS(3131), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101924,22 +103304,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48855] = 4, - ACTIONS(3039), 1, + [45278] = 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(3133), 1, + sym_identifier, + ACTIONS(3135), 1, + anon_sym_fn, + STATE(1692), 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(2315), 1, + sym_function_modifiers, + STATE(2415), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3015), 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(3011), 30, + 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, @@ -101955,255 +103361,63 @@ static uint16_t ts_small_parse_table[] = { 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_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [48905] = 22, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3041), 1, - anon_sym_COMMA, - STATE(1008), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2708), 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, - [48991] = 22, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3043), 1, - anon_sym_SEMI, - STATE(1008), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2708), 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, - [49077] = 13, - ACTIONS(2530), 1, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [45356] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - STATE(1008), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2877), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2887), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2879), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2682), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, anon_sym_PIPE, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2680), 19, - anon_sym_LBRACE, + 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, - 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, - [49145] = 19, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2640), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2885), 1, - anon_sym_AMP, - ACTIONS(2889), 1, - anon_sym_DOT_DOT, - ACTIONS(2891), 1, - anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, - anon_sym_PIPE, - ACTIONS(2897), 1, - anon_sym_CARET, - STATE(1008), 1, + ACTIONS(2985), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2638), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102214,60 +103428,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49225] = 22, - ACTIONS(2530), 1, + [45442] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3045), 1, - anon_sym_COMMA, - STATE(1008), 1, + ACTIONS(3137), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102278,60 +103492,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49311] = 22, - ACTIONS(2530), 1, + [45528] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3047), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3139), 1, + anon_sym_RBRACK, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102342,43 +103556,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49397] = 14, - ACTIONS(2530), 1, + [45614] = 10, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2885), 1, - anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2897), 1, - anon_sym_CARET, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 4, + ACTIONS(2582), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2680), 19, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2572), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -102398,20 +103608,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49467] = 4, - ACTIONS(3049), 1, - anon_sym_COLON_COLON, + [45676] = 9, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 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(455), 15, + ACTIONS(3011), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2582), 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, @@ -102419,15 +103639,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(453), 23, - anon_sym_LPAREN, + ACTIONS(2572), 19, 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, @@ -102444,56 +103659,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49517] = 18, - ACTIONS(2530), 1, + [45736] = 19, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2682), 1, + ACTIONS(2668), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2895), 1, + ACTIONS(3017), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2680), 14, + ACTIONS(2666), 13, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102504,105 +103720,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49595] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2794), 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(2792), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [49643] = 22, - ACTIONS(2530), 1, + [45816] = 15, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3051), 1, - anon_sym_RBRACK, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2582), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2572), 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(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102613,38 +103777,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49729] = 9, - ACTIONS(2530), 1, + [45888] = 12, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, + ACTIONS(3001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2686), 13, - anon_sym_PLUS, + ACTIONS(3025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3003), 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_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2684), 19, + ACTIONS(2572), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -102664,57 +103831,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49789] = 19, - ACTIONS(283), 1, - anon_sym_EQ, - ACTIONS(2530), 1, + [45954] = 17, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, - anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(277), 13, + ACTIONS(2572), 15, 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, anon_sym_STAR_EQ, @@ -102725,60 +103890,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49869] = 22, - ACTIONS(2530), 1, + [46030] = 19, + ACTIONS(283), 1, + anon_sym_EQ, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2718), 1, - anon_sym_LBRACE, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(277), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102789,71 +103951,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49955] = 9, - ACTIONS(2530), 1, + [46110] = 9, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2742), 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(2740), 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, - [50015] = 4, - ACTIONS(2408), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2410), 15, + ACTIONS(2822), 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, @@ -102861,15 +103982,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2406), 23, - anon_sym_LPAREN, + ACTIONS(2820), 19, 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, @@ -102886,272 +104002,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50065] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, - anon_sym_COLON_COLON, - ACTIONS(3053), 1, - sym_identifier, - ACTIONS(3059), 1, - sym_metavariable, - STATE(1354), 1, - sym_scoped_identifier, - STATE(1359), 1, - sym__literal_pattern, - STATE(2237), 1, - sym_bracketed_type, - STATE(2403), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3057), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3055), 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, - [50139] = 22, - ACTIONS(2530), 1, + [46170] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3061), 1, - anon_sym_SEMI, - STATE(1008), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2708), 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, - [50225] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3065), 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(3063), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [50273] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3069), 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(3067), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [50321] = 22, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2616), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3071), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3141), 1, + anon_sym_RBRACK, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103162,60 +104066,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50407] = 22, - ACTIONS(2530), 1, + [46256] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3073), 1, + ACTIONS(3143), 1, anon_sym_COMMA, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103226,119 +104130,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50493] = 17, - ACTIONS(2530), 1, + [46342] = 14, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2682), 1, - anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2895), 1, - anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2680), 15, + ACTIONS(2582), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(2572), 19, 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, - 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, - [50569] = 22, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - STATE(1008), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103349,39 +104186,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50655] = 10, - ACTIONS(2530), 1, + [46412] = 13, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2889), 1, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, + ACTIONS(3001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2879), 3, + ACTIONS(3025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 10, - anon_sym_PLUS, + ACTIONS(2582), 5, 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(2680), 19, + ACTIONS(2572), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -103401,38 +104241,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50717] = 9, - ACTIONS(2530), 1, + [46480] = 11, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, + ACTIONS(3001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2682), 13, - anon_sym_PLUS, + ACTIONS(3003), 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_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2680), 19, + ACTIONS(2572), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -103452,60 +104294,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50777] = 22, - ACTIONS(2530), 1, + [46544] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3075), 1, - anon_sym_RBRACK, - STATE(1008), 1, + ACTIONS(3145), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103516,54 +104358,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50863] = 19, - ACTIONS(2530), 1, + [46630] = 19, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2778), 1, + ACTIONS(2614), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2776), 13, + ACTIONS(2612), 13, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -103577,53 +104419,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50943] = 15, - ACTIONS(2530), 1, + [46710] = 4, + ACTIONS(2464), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + 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), 23, anon_sym_LPAREN, - ACTIONS(2532), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2885), 1, + 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, + [46760] = 22, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2895), 1, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(1008), 1, + 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(3147), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2887), 2, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2682), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2879), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2680), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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, @@ -103634,50 +104529,124 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51015] = 12, - ACTIONS(2530), 1, + [46846] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2889), 1, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2887), 2, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + 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_PIPE, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2680), 19, - anon_sym_LBRACE, + 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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, @@ -103688,60 +104657,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51081] = 22, - ACTIONS(2530), 1, + [47018] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3077), 1, + ACTIONS(3153), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103752,215 +104721,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51167] = 17, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(2837), 1, - sym_metavariable, - ACTIONS(3079), 1, - sym_identifier, - ACTIONS(3081), 1, - anon_sym_fn, - STATE(1690), 1, - sym_scoped_type_identifier, - STATE(2233), 1, - sym_generic_type, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - STATE(2262), 1, - sym_function_modifiers, - STATE(2323), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(2861), 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, - [51242] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, - anon_sym_COLON_COLON, - ACTIONS(2905), 1, - sym_identifier, - ACTIONS(2915), 1, - sym_metavariable, - STATE(1512), 1, - sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 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(1052), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2079), 2, - sym_meta_item, - sym__literal, - ACTIONS(2913), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2909), 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, - [51313] = 17, + [47104] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(2837), 1, - sym_metavariable, - ACTIONS(3083), 1, - sym_identifier, - ACTIONS(3085), 1, - anon_sym_fn, - STATE(1733), 1, - sym_scoped_type_identifier, - STATE(2233), 1, - sym_generic_type, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - STATE(2288), 1, - sym_function_modifiers, - STATE(2323), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(2861), 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, - [51388] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3091), 1, + ACTIONS(3159), 1, anon_sym_RBRACE, - ACTIONS(3093), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3097), 1, + ACTIONS(3165), 1, anon_sym_COMMA, - ACTIONS(3099), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3171), 1, sym_metavariable, - STATE(1652), 1, + STATE(1629), 1, sym_scoped_identifier, - STATE(2310), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(1853), 5, + STATE(1862), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103978,41 +104775,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51457] = 14, + anon_sym_default, + anon_sym_union, + [47175] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3099), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3171), 1, sym_metavariable, - ACTIONS(3105), 1, + ACTIONS(3173), 1, anon_sym_RBRACE, - STATE(1652), 1, + STATE(1629), 1, sym_scoped_identifier, - STATE(2310), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(2160), 5, + STATE(2188), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104030,41 +104829,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51523] = 14, + anon_sym_default, + anon_sym_union, + [47243] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3099), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3171), 1, sym_metavariable, - ACTIONS(3107), 1, + ACTIONS(3175), 1, anon_sym_RBRACE, - STATE(1652), 1, + STATE(1629), 1, sym_scoped_identifier, - STATE(2310), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(2160), 5, + STATE(2188), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104082,39 +104883,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51589] = 13, + anon_sym_default, + anon_sym_union, + [47311] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3099), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3171), 1, sym_metavariable, - STATE(1652), 1, + STATE(1629), 1, sym_scoped_identifier, - STATE(2310), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(2401), 5, + STATE(2354), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104132,39 +104935,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51652] = 13, + anon_sym_default, + anon_sym_union, + [47376] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3099), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3171), 1, sym_metavariable, - STATE(1652), 1, + STATE(1629), 1, sym_scoped_identifier, - STATE(2310), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(2414), 5, + STATE(2388), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104182,39 +104987,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51715] = 13, + anon_sym_default, + anon_sym_union, + [47441] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3099), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3171), 1, sym_metavariable, - STATE(1652), 1, + STATE(1629), 1, sym_scoped_identifier, - STATE(2310), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(2324), 5, + STATE(2188), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104232,39 +105039,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51778] = 13, + anon_sym_default, + anon_sym_union, + [47506] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3099), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3171), 1, sym_metavariable, - STATE(1652), 1, + STATE(1629), 1, sym_scoped_identifier, - STATE(2310), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(2189), 5, + STATE(2270), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104282,39 +105091,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51841] = 13, + anon_sym_default, + anon_sym_union, + [47571] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3099), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3171), 1, sym_metavariable, - STATE(1652), 1, + STATE(1629), 1, sym_scoped_identifier, - STATE(2310), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(2160), 5, + STATE(2443), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104332,15 +105143,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51904] = 3, + anon_sym_default, + anon_sym_union, + [47636] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3111), 3, + ACTIONS(3179), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3109), 27, + ACTIONS(3177), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104362,21 +105175,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_default, anon_sym_fn, + anon_sym_union, anon_sym_unsafe, anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [51943] = 3, + [47676] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 3, + ACTIONS(3183), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3113), 27, + ACTIONS(3181), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104398,21 +105212,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_default, anon_sym_fn, + anon_sym_union, anon_sym_unsafe, anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [51982] = 3, + [47716] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3119), 3, + ACTIONS(3187), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3117), 27, + ACTIONS(3185), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104434,37 +105249,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_default, anon_sym_fn, + anon_sym_union, anon_sym_unsafe, anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [52021] = 11, + [47756] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2915), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(1512), 1, + STATE(1553), 1, sym_scoped_identifier, - STATE(2300), 1, + STATE(2255), 1, sym_meta_item, - STATE(2310), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 3, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(2909), 17, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104482,31 +105298,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52074] = 11, + anon_sym_default, + anon_sym_union, + [47811] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2915), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(1512), 1, + STATE(1553), 1, sym_scoped_identifier, - STATE(2264), 1, + STATE(2370), 1, + sym_bracketed_type, + STATE(2383), 1, sym_meta_item, - STATE(2310), 1, + STATE(2431), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2939), 3, + sym_self, + sym_super, + sym_crate, + 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, + [47866] = 11, + ACTIONS(77), 1, + anon_sym_LT, + 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(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, + STATE(2433), 1, + sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 3, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(2909), 17, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104524,73 +105386,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52127] = 11, + anon_sym_default, + anon_sym_union, + [47921] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2915), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(1512), 1, + STATE(1553), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2313), 1, + STATE(2363), 1, sym_meta_item, - STATE(2403), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2913), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2909), 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, - [52180] = 11, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(943), 1, - anon_sym_COLON_COLON, - ACTIONS(2905), 1, - sym_identifier, - ACTIONS(2915), 1, - sym_metavariable, - STATE(1512), 1, - sym_scoped_identifier, - STATE(2310), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, - STATE(2416), 1, - sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 3, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(2909), 17, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104608,31 +105430,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52233] = 11, + anon_sym_default, + anon_sym_union, + [47976] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2915), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(1512), 1, + STATE(1553), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2370), 1, + STATE(2293), 1, sym_meta_item, - STATE(2403), 1, + STATE(2370), 1, + sym_bracketed_type, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 3, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(2909), 17, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104650,31 +105474,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52286] = 11, + anon_sym_default, + anon_sym_union, + [48031] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2915), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(1512), 1, + STATE(1553), 1, sym_scoped_identifier, - STATE(2217), 1, + STATE(2335), 1, sym_meta_item, - STATE(2310), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 3, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(2909), 17, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104692,31 +105518,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52339] = 11, + anon_sym_default, + anon_sym_union, + [48086] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2915), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(1512), 1, + STATE(1553), 1, sym_scoped_identifier, - STATE(2203), 1, + STATE(2268), 1, sym_meta_item, - STATE(2310), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 3, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(2909), 17, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104734,29 +105562,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52392] = 10, + anon_sym_default, + anon_sym_union, + [48141] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(3121), 1, + ACTIONS(3189), 1, sym_identifier, - ACTIONS(3127), 1, + ACTIONS(3195), 1, sym_metavariable, - STATE(2156), 1, + STATE(2065), 1, sym_scoped_identifier, - STATE(2310), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3125), 3, + ACTIONS(3193), 3, sym_self, sym_super, sym_crate, - ACTIONS(3123), 17, + ACTIONS(3191), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104774,29 +105604,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52442] = 10, + anon_sym_default, + anon_sym_union, + [48193] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(3129), 1, + ACTIONS(3197), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(3203), 1, sym_metavariable, - STATE(2014), 1, + STATE(2193), 1, sym_scoped_identifier, - STATE(2310), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2403), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3133), 3, + ACTIONS(3201), 3, sym_self, sym_super, sym_crate, - ACTIONS(3131), 17, + ACTIONS(3199), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104814,13 +105646,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52492] = 3, - ACTIONS(2111), 1, + anon_sym_default, + anon_sym_union, + [48245] = 3, + ACTIONS(2211), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2113), 20, + ACTIONS(2213), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -104841,13 +105675,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52522] = 3, - ACTIONS(2131), 1, + [48275] = 3, + ACTIONS(2159), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2133), 20, + ACTIONS(2161), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -104868,57 +105702,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52552] = 10, - ACTIONS(3139), 1, - anon_sym_LPAREN, - ACTIONS(3141), 1, - anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_COLON_COLON, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3151), 1, - anon_sym_AT, - STATE(1266), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3143), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 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, - [52594] = 9, - ACTIONS(2304), 1, + [48305] = 9, + ACTIONS(2364), 1, anon_sym_COLON, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - STATE(1266), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + STATE(1285), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 12, + ACTIONS(2360), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -104931,42 +105733,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52634] = 4, - ACTIONS(2362), 1, - anon_sym_COLON, + [48345] = 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, + STATE(1285), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2366), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2360), 15, + ACTIONS(3219), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3213), 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_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, - [52663] = 4, + [48387] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2348), 2, + ACTIONS(2406), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2352), 2, + ACTIONS(2410), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2354), 14, + ACTIONS(2412), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104981,70 +105790,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52692] = 4, + [48416] = 4, + ACTIONS(2408), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2340), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2344), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2346), 14, + ACTIONS(2412), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2406), 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, - [52721] = 8, - ACTIONS(2318), 1, + [48445] = 4, + ACTIONS(2432), 1, anon_sym_COLON, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, - anon_sym_COLON_COLON, - STATE(1266), 1, - sym_type_arguments, - STATE(1286), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2316), 12, + ACTIONS(2436), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2430), 15, 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_LT2, anon_sym_PIPE, - [52758] = 4, - ACTIONS(2350), 1, + [48474] = 4, + ACTIONS(2400), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2354), 2, + ACTIONS(2404), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2348), 15, + ACTIONS(2398), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105060,17 +105865,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [52787] = 4, + [48503] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2320), 2, + ACTIONS(2430), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2324), 2, + ACTIONS(2434), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2326), 14, + ACTIONS(2436), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105085,23 +105890,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52816] = 8, - ACTIONS(2314), 1, + [48532] = 8, + ACTIONS(2374), 1, anon_sym_COLON, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - STATE(1266), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + STATE(1285), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2312), 12, + ACTIONS(2372), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105114,17 +105919,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52853] = 4, + [48569] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 2, + ACTIONS(2414), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2364), 2, + ACTIONS(2418), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2366), 14, + ACTIONS(2420), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105139,16 +105944,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52882] = 4, - ACTIONS(2322), 1, + [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, + 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, + [48627] = 4, + ACTIONS(2416), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2326), 2, + ACTIONS(2420), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2320), 15, + ACTIONS(2414), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105164,107 +105994,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [52911] = 4, - ACTIONS(2342), 1, + [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, + sym_type_arguments, + STATE(1307), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2376), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [48693] = 6, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3211), 1, + anon_sym_LT2, + STATE(1276), 1, + sym_type_arguments, + STATE(1300), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2346), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2340), 15, + ACTIONS(2394), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + 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, - [52940] = 17, - ACTIONS(3161), 1, + [48725] = 17, + ACTIONS(3229), 1, anon_sym_const, - ACTIONS(3163), 1, + ACTIONS(3231), 1, anon_sym_enum, - ACTIONS(3165), 1, + ACTIONS(3233), 1, anon_sym_fn, - ACTIONS(3167), 1, + ACTIONS(3235), 1, anon_sym_mod, - ACTIONS(3169), 1, + ACTIONS(3237), 1, anon_sym_static, - ACTIONS(3171), 1, + ACTIONS(3239), 1, anon_sym_struct, - ACTIONS(3173), 1, + ACTIONS(3241), 1, anon_sym_trait, - ACTIONS(3175), 1, + ACTIONS(3243), 1, anon_sym_type, - ACTIONS(3177), 1, + ACTIONS(3245), 1, anon_sym_union, - ACTIONS(3179), 1, + ACTIONS(3247), 1, anon_sym_unsafe, - ACTIONS(3181), 1, + ACTIONS(3249), 1, anon_sym_use, - ACTIONS(3183), 1, + ACTIONS(3251), 1, anon_sym_extern, - STATE(1415), 1, + STATE(1458), 1, sym_extern_modifier, - STATE(1482), 1, + STATE(1491), 1, aux_sym_function_modifiers_repeat1, - STATE(2330), 1, + STATE(2469), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3159), 2, + ACTIONS(3227), 2, anon_sym_async, anon_sym_default, - [52994] = 6, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + [48779] = 6, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(1273), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2336), 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, - [53026] = 6, - ACTIONS(3149), 1, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1273), 1, + STATE(1276), 1, sym_type_arguments, STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 13, + ACTIONS(2380), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105278,19 +106112,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53058] = 6, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + [48811] = 6, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(1273), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + STATE(1276), 1, sym_type_arguments, STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2328), 13, + ACTIONS(2426), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105304,70 +106138,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53090] = 17, - ACTIONS(3185), 1, + [48843] = 17, + ACTIONS(3253), 1, anon_sym_const, - ACTIONS(3187), 1, + ACTIONS(3255), 1, anon_sym_enum, - ACTIONS(3189), 1, + ACTIONS(3257), 1, anon_sym_fn, - ACTIONS(3191), 1, + ACTIONS(3259), 1, anon_sym_mod, - ACTIONS(3193), 1, + ACTIONS(3261), 1, anon_sym_static, - ACTIONS(3195), 1, + ACTIONS(3263), 1, anon_sym_struct, - ACTIONS(3197), 1, + ACTIONS(3265), 1, anon_sym_trait, - ACTIONS(3199), 1, + ACTIONS(3267), 1, anon_sym_type, - ACTIONS(3201), 1, + ACTIONS(3269), 1, anon_sym_union, - ACTIONS(3203), 1, + ACTIONS(3271), 1, anon_sym_unsafe, - ACTIONS(3205), 1, + ACTIONS(3273), 1, anon_sym_use, - ACTIONS(3207), 1, + ACTIONS(3275), 1, anon_sym_extern, STATE(1428), 1, sym_extern_modifier, - STATE(1482), 1, + STATE(1491), 1, aux_sym_function_modifiers_repeat1, - STATE(2407), 1, + STATE(2412), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3159), 2, - anon_sym_async, - anon_sym_default, - [53144] = 3, - ACTIONS(3209), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3011), 15, + ACTIONS(3227), 2, anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [53169] = 2, + [48897] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2320), 16, + ACTIONS(2398), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105384,11 +106196,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [53192] = 2, + [48920] = 3, + ACTIONS(3277), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 15, + ACTIONS(2991), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105404,33 +106218,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [53214] = 2, + [48945] = 3, + ACTIONS(2500), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3033), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [53236] = 3, - ACTIONS(2472), 1, + ACTIONS(2498), 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, + [48969] = 3, + ACTIONS(2490), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2470), 14, + ACTIONS(2488), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105445,125 +106260,144 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [53260] = 13, - ACTIONS(3141), 1, - anon_sym_LBRACE, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3151), 1, - anon_sym_AT, - ACTIONS(3155), 1, + [48993] = 13, + ACTIONS(3207), 1, anon_sym_BANG, ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3217), 1, + anon_sym_LBRACE, + ACTIONS(3225), 1, + anon_sym_AT, + ACTIONS(3279), 1, anon_sym_LPAREN, - ACTIONS(3213), 1, + ACTIONS(3281), 1, anon_sym_RBRACK, - ACTIONS(3216), 1, + ACTIONS(3284), 1, anon_sym_COLON_COLON, - STATE(1266), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 2, + ACTIONS(2360), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3137), 2, + ACTIONS(3213), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3147), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [53304] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2364), 2, + [49037] = 3, + ACTIONS(2524), 1, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2366), 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, - [53328] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2352), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2354), 13, + ACTIONS(2522), 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, - [53352] = 13, - ACTIONS(3137), 1, + [49061] = 13, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3213), 1, anon_sym_PIPE, - ACTIONS(3141), 1, + ACTIONS(3217), 1, anon_sym_LBRACE, - ACTIONS(3143), 1, + ACTIONS(3219), 1, anon_sym_COLON, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3151), 1, + ACTIONS(3225), 1, anon_sym_AT, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3218), 1, + ACTIONS(3286), 1, anon_sym_LPAREN, - ACTIONS(3220), 1, + ACTIONS(3288), 1, anon_sym_COLON_COLON, - STATE(1266), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2300), 3, + ACTIONS(2360), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [53396] = 6, - ACTIONS(3139), 1, + [49105] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2979), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [49127] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3041), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [49149] = 6, + ACTIONS(3215), 1, anon_sym_LPAREN, - ACTIONS(3222), 1, + ACTIONS(3290), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3143), 2, + ACTIONS(3219), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3147), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 9, + ACTIONS(3213), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -105573,34 +106407,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53426] = 3, + [49179] = 3, + ACTIONS(2866), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2344), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2346), 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, - [53450] = 3, - ACTIONS(2468), 1, + 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, + [49203] = 3, + ACTIONS(2486), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2466), 14, + ACTIONS(2484), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105615,13 +106449,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [53474] = 3, - ACTIONS(3224), 1, + [49227] = 3, + ACTIONS(3292), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3015), 14, + ACTIONS(2993), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105636,66 +106470,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [53498] = 3, - ACTIONS(2416), 1, - anon_sym_COLON, + [49251] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2414), 14, + ACTIONS(2410), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2412), 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_PLUS, anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [53522] = 14, - ACTIONS(2300), 1, - anon_sym_PLUS, - ACTIONS(3137), 1, - anon_sym_PIPE, - ACTIONS(3141), 1, - anon_sym_LBRACE, - ACTIONS(3143), 1, - anon_sym_COLON, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3151), 1, - anon_sym_AT, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3226), 1, - anon_sym_LPAREN, - ACTIONS(3228), 1, - anon_sym_COLON_COLON, - STATE(1266), 1, - sym_type_arguments, - STATE(1286), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53568] = 3, - ACTIONS(2480), 1, + [49275] = 3, + ACTIONS(2562), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 14, + ACTIONS(2560), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105710,32 +106512,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [53592] = 3, - ACTIONS(2666), 1, - anon_sym_COLON_COLON, + [49299] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3015), 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, - [53616] = 2, + ACTIONS(2434), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2436), 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, + [49323] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3067), 15, + ACTIONS(3071), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105751,73 +106553,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [53638] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2654), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + [49345] = 14, + ACTIONS(2360), 1, anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - sym_mutable_specifier, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3213), 1, anon_sym_PIPE, - sym_self, - [53660] = 3, - ACTIONS(2500), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2498), 14, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3217), 1, 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, - [53684] = 4, - ACTIONS(2358), 1, + ACTIONS(3219), 1, anon_sym_COLON, - ACTIONS(3230), 1, + 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(2356), 12, - anon_sym_SEMI, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3281), 2, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [53709] = 2, + [49391] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2398), 14, + ACTIONS(2876), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105829,42 +106601,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, + sym_mutable_specifier, anon_sym_PIPE, - [53730] = 3, - ACTIONS(2135), 1, - anon_sym_EQ, + sym_self, + [49413] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2137), 13, + ACTIONS(2418), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2420), 13, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_as, anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, + anon_sym_COLON_COLON, anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [53753] = 3, - ACTIONS(3232), 1, - anon_sym_DASH_GT, + [49437] = 4, + ACTIONS(2396), 1, + anon_sym_COLON, + ACTIONS(3298), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 13, + ACTIONS(2394), 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, @@ -105872,13 +106647,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53776] = 3, - ACTIONS(3234), 1, + [49462] = 3, + ACTIONS(3300), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2436), 13, + ACTIONS(2554), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105892,13 +106667,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53799] = 3, - ACTIONS(3236), 1, - anon_sym_DASH_GT, + [49485] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2458), 13, + ACTIONS(2564), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105910,76 +106683,75 @@ 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, - [53822] = 4, - ACTIONS(2358), 1, - anon_sym_COLON, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, + [49506] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 12, + ACTIONS(2474), 14, 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, - [53847] = 4, - ACTIONS(2358), 1, - anon_sym_COLON, - ACTIONS(3039), 1, - anon_sym_COLON_COLON, + [49527] = 4, + ACTIONS(3304), 1, + anon_sym_pat, + STATE(520), 1, + sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [53872] = 4, - ACTIONS(2338), 1, - anon_sym_COLON, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, + 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2336), 12, + ACTIONS(2530), 14, 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, - [53897] = 2, + [49573] = 3, + ACTIONS(3306), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2474), 14, + ACTIONS(2516), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105991,45 +106763,15 @@ 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, - [53918] = 14, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3157), 1, - anon_sym_COLON_COLON, - ACTIONS(3240), 1, - anon_sym_COLON, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3244), 1, - anon_sym_COMMA, - ACTIONS(3246), 1, - anon_sym_GT, - STATE(1266), 1, - sym_type_arguments, - STATE(1286), 1, - sym_parameters, - STATE(1947), 1, - sym_trait_bounds, - STATE(1964), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2300), 2, - anon_sym_PLUS, - anon_sym_as, - [53963] = 2, + [49596] = 3, + ACTIONS(3308), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2488), 14, + ACTIONS(2542), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106041,34 +106783,33 @@ 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, - [53984] = 3, - ACTIONS(3248), 1, - anon_sym_DASH_GT, + [49619] = 3, + ACTIONS(2199), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2428), 13, + ACTIONS(2201), 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_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54007] = 2, + [49642] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2402), 14, + ACTIONS(2526), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106083,13 +106824,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [54028] = 3, - ACTIONS(3250), 1, + [49663] = 3, + ACTIONS(3310), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2442), 13, + ACTIONS(2502), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106103,15 +106844,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54051] = 4, - ACTIONS(2330), 1, + [49686] = 4, + ACTIONS(2396), 1, anon_sym_COLON, - ACTIONS(3238), 1, + ACTIONS(3312), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2328), 12, + ACTIONS(2394), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106124,40 +106865,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54076] = 4, - ACTIONS(3254), 1, - anon_sym_pat, - STATE(512), 1, - sym_fragment_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3252), 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, - [54101] = 5, - ACTIONS(3260), 1, + [49711] = 5, + ACTIONS(3318), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3258), 2, + ACTIONS(3316), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3262), 2, + ACTIONS(3320), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3256), 9, + ACTIONS(3314), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -106167,13 +106887,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [54128] = 3, - ACTIONS(3264), 1, + [49738] = 3, + ACTIONS(3322), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2422), 13, + ACTIONS(2510), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106187,13 +106907,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54151] = 3, - ACTIONS(3266), 1, + [49761] = 4, + ACTIONS(2382), 1, + anon_sym_COLON, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, + 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, + 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, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 13, + ACTIONS(2548), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106207,30 +106948,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54174] = 2, + [49809] = 4, + ACTIONS(2396), 1, + anon_sym_COLON, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2494), 14, + ACTIONS(2394), 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, - [54195] = 2, + [49834] = 3, + ACTIONS(3326), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 13, + ACTIONS(2536), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106244,17 +106989,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54215] = 2, + [49857] = 4, + ACTIONS(2428), 1, + anon_sym_COLON, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2566), 13, + ACTIONS(2426), 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, @@ -106262,11 +107010,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54235] = 2, + [49882] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2562), 13, + ACTIONS(2494), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106278,31 +107026,45 @@ 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, - [54255] = 2, + [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, + 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(2328), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(2360), 2, anon_sym_PLUS, anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [54275] = 2, + [49948] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 13, + ACTIONS(2782), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106316,11 +107078,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54295] = 2, + [49968] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 13, + ACTIONS(413), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106334,13 +107096,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54315] = 3, - ACTIONS(3270), 1, + [49988] = 3, + ACTIONS(3338), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3268), 12, + ACTIONS(3336), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -106353,11 +107115,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54337] = 2, + [50010] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(578), 13, + ACTIONS(2770), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106371,11 +107133,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54357] = 2, + [50030] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 13, + ACTIONS(2646), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106389,11 +107151,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54377] = 2, + [50050] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2646), 13, + ACTIONS(2756), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106407,11 +107169,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54397] = 2, + [50070] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 13, + ACTIONS(2568), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106425,11 +107187,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54417] = 2, + [50090] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 13, + ACTIONS(2774), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106443,11 +107205,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54437] = 2, + [50110] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(407), 13, + ACTIONS(2426), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106461,11 +107223,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54457] = 2, + [50130] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(566), 13, + ACTIONS(2662), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106479,14 +107241,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54477] = 3, + [50150] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2724), 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, + [50170] = 4, + ACTIONS(3219), 1, + anon_sym_EQ, + 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, + 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, + [50194] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2324), 2, + ACTIONS(2402), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2326), 11, + ACTIONS(2404), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -106498,11 +107298,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [54499] = 2, + [50216] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 13, + ACTIONS(596), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106516,11 +107316,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54519] = 2, + [50236] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 13, + ACTIONS(427), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106534,11 +107334,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54539] = 2, + [50256] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2516), 13, + ACTIONS(2880), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106552,11 +107352,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54559] = 2, + [50276] = 3, + ACTIONS(3342), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2524), 13, + ACTIONS(3340), 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, + [50298] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2899), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106570,11 +107389,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54579] = 2, + [50318] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2336), 13, + ACTIONS(2394), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106588,11 +107407,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54599] = 2, + [50338] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2524), 13, + ACTIONS(2728), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106606,11 +107425,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54619] = 2, + [50358] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 13, + ACTIONS(2630), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106624,11 +107443,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54639] = 2, + [50378] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 13, + ACTIONS(2710), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106642,11 +107461,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54659] = 2, + [50398] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2512), 13, + ACTIONS(2706), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106660,31 +107479,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54679] = 4, - ACTIONS(3143), 1, - anon_sym_EQ, + [50418] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 10, + ACTIONS(2732), 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, - [54703] = 2, + [50438] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 13, + ACTIONS(2626), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106698,11 +107515,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54723] = 2, + [50458] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2508), 13, + ACTIONS(2854), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106716,30 +107533,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54743] = 3, - ACTIONS(3274), 1, - anon_sym_EQ, + [50478] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3272), 12, + ACTIONS(2380), 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, - [54765] = 2, + [50498] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2520), 13, + ACTIONS(2710), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106753,11 +107569,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54785] = 2, + [50518] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 13, + ACTIONS(2642), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106771,81 +107587,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54805] = 10, - ACTIONS(3139), 1, - anon_sym_LPAREN, - ACTIONS(3141), 1, - anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_COLON_COLON, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3151), 1, - anon_sym_AT, - ACTIONS(3276), 1, - anon_sym_BANG, - STATE(1266), 1, - sym_type_arguments, + [50538] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [54840] = 5, - ACTIONS(2352), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2348), 3, + ACTIONS(2736), 13, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3278), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(2354), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [54865] = 5, - ACTIONS(2324), 1, - anon_sym_COLON, + [50558] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2320), 3, + ACTIONS(467), 13, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3281), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(2326), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [54890] = 4, - ACTIONS(3288), 1, + [50578] = 4, + ACTIONS(3348), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3286), 2, + ACTIONS(3346), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3284), 9, + ACTIONS(3344), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -106855,16 +107642,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [54913] = 4, - ACTIONS(3294), 1, + [50601] = 4, + ACTIONS(3292), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3292), 2, + ACTIONS(3352), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3290), 9, + ACTIONS(3350), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -106874,55 +107661,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [54936] = 5, - ACTIONS(2344), 1, - anon_sym_COLON, + [50624] = 3, + ACTIONS(399), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2340), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3296), 3, - anon_sym_LPAREN, + ACTIONS(397), 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, - ACTIONS(2346), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [54961] = 4, + [50645] = 5, + ACTIONS(2434), 1, + anon_sym_COLON, + ACTIONS(3354), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3299), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2360), 4, - anon_sym_SEMI, + ACTIONS(2430), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2366), 6, + ACTIONS(2436), 5, anon_sym_BANG, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54984] = 4, - ACTIONS(3224), 1, + [50670] = 4, + ACTIONS(3348), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3292), 2, + ACTIONS(3352), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3290), 9, + ACTIONS(3350), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -106932,35 +107718,94 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55007] = 4, - ACTIONS(3302), 1, - anon_sym_COLON_COLON, + [50693] = 3, + ACTIONS(391), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3292), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3290), 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, - [55030] = 4, - ACTIONS(3288), 1, + [50714] = 5, + ACTIONS(2418), 1, + anon_sym_COLON, + ACTIONS(3357), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2414), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2420), 5, + anon_sym_BANG, + 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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2398), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2404), 5, + anon_sym_BANG, + 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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2412), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50789] = 4, + ACTIONS(3366), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3306), 2, + ACTIONS(3352), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3304), 9, + ACTIONS(3350), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -106970,150 +107815,115 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55053] = 4, + [50812] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3278), 2, + ACTIONS(3363), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2348), 4, + ACTIONS(2406), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2354), 6, + ACTIONS(2412), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [55076] = 5, - ACTIONS(2364), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2360), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3299), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2366), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [55101] = 4, + [50835] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3281), 2, + ACTIONS(3360), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2320), 4, + ACTIONS(2398), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2326), 6, + ACTIONS(2404), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [55124] = 4, + [50858] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3296), 2, + ACTIONS(3357), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2340), 4, + ACTIONS(2414), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2346), 6, + ACTIONS(2420), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [55147] = 5, - ACTIONS(2344), 1, + [50881] = 5, + ACTIONS(2434), 1, anon_sym_COLON, - ACTIONS(3296), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2340), 5, - anon_sym_RPAREN, + ACTIONS(2430), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2346), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [55172] = 5, - ACTIONS(2324), 1, - anon_sym_COLON, - ACTIONS(3281), 1, + ACTIONS(3354), 3, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2320), 5, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2326), 5, + ACTIONS(2436), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [55197] = 5, - ACTIONS(2352), 1, - anon_sym_COLON, - ACTIONS(3278), 1, + [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(2348), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2354), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, + 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, - [55222] = 3, - ACTIONS(397), 1, + [50941] = 3, + ACTIONS(395), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(395), 11, + ACTIONS(393), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107125,72 +107935,113 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [55243] = 5, - ACTIONS(2364), 1, + [50962] = 5, + ACTIONS(2418), 1, anon_sym_COLON, - ACTIONS(3299), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 5, - anon_sym_RPAREN, + ACTIONS(2414), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2366), 5, + ACTIONS(3357), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2420), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [55268] = 3, - ACTIONS(389), 1, - anon_sym_EQ, + [50987] = 4, + ACTIONS(3374), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(387), 11, + ACTIONS(3372), 2, + 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_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [55289] = 3, - ACTIONS(393), 1, - anon_sym_EQ, + [51010] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3354), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2430), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2436), 6, + 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(391), 11, + ACTIONS(3346), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3344), 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_GT, anon_sym_in, anon_sym_PIPE, - [55310] = 4, - ACTIONS(3302), 1, + [51056] = 5, + ACTIONS(2402), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2398), 3, + 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_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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3310), 2, + ACTIONS(3346), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3308), 9, + ACTIONS(3344), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107200,16 +108051,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55333] = 4, - ACTIONS(3224), 1, + [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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3310), 2, + ACTIONS(3378), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3308), 9, + ACTIONS(3376), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107219,32 +108090,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55356] = 4, - ACTIONS(3294), 1, + [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(3310), 2, - anon_sym_COLON, + 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, anon_sym_EQ, - ACTIONS(3308), 9, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3386), 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, - [55379] = 3, - ACTIONS(3314), 1, + [51198] = 3, + ACTIONS(3392), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3312), 10, + ACTIONS(3390), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107255,13 +108144,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55399] = 3, - ACTIONS(3318), 1, + [51218] = 3, + ACTIONS(3396), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3316), 10, + ACTIONS(3394), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107272,13 +108161,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55419] = 3, - ACTIONS(3310), 1, + [51238] = 3, + ACTIONS(419), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3308), 10, + ACTIONS(417), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107289,32 +108178,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55439] = 5, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(3322), 1, - sym_crate, - STATE(1450), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3320), 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, - [55463] = 3, - ACTIONS(3326), 1, + [51258] = 3, + ACTIONS(3400), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3324), 10, + ACTIONS(3398), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107325,32 +108195,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55483] = 5, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(3328), 1, - sym_crate, - STATE(1450), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3320), 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, - [55507] = 3, - ACTIONS(3332), 1, + [51278] = 3, + ACTIONS(3404), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3330), 10, + ACTIONS(3402), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107361,13 +108212,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55527] = 3, - ACTIONS(3336), 1, + [51298] = 3, + ACTIONS(3219), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3334), 10, + ACTIONS(3213), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107378,13 +108229,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55547] = 3, - ACTIONS(3340), 1, + [51318] = 3, + ACTIONS(3408), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3338), 10, + ACTIONS(3406), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107395,13 +108246,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55567] = 3, - ACTIONS(3344), 1, + [51338] = 3, + ACTIONS(3412), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3342), 10, + ACTIONS(3410), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107412,13 +108263,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55587] = 3, - ACTIONS(3348), 1, + [51358] = 3, + ACTIONS(3416), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3346), 10, + ACTIONS(3414), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107429,13 +108280,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55607] = 3, - ACTIONS(3352), 1, + [51378] = 3, + ACTIONS(3420), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3350), 10, + ACTIONS(3418), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107446,13 +108297,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55627] = 3, - ACTIONS(3356), 1, + [51398] = 3, + ACTIONS(3424), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3354), 10, + ACTIONS(3422), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107463,13 +108314,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55647] = 3, - ACTIONS(3143), 1, + [51418] = 3, + ACTIONS(3428), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 10, + ACTIONS(3426), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107480,13 +108331,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55667] = 3, - ACTIONS(3360), 1, + [51438] = 3, + ACTIONS(3432), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3358), 10, + ACTIONS(3430), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107497,13 +108348,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55687] = 3, - ACTIONS(3364), 1, + [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, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3362), 10, + ACTIONS(3344), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107514,13 +108384,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55707] = 3, - ACTIONS(3368), 1, + [51502] = 3, + ACTIONS(3440), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3366), 10, + ACTIONS(3438), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107531,13 +108401,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55727] = 3, - ACTIONS(3372), 1, + [51522] = 3, + ACTIONS(3444), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3370), 10, + ACTIONS(3442), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107548,13 +108418,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55747] = 3, - ACTIONS(3376), 1, + [51542] = 3, + ACTIONS(3448), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3374), 10, + ACTIONS(3446), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107565,13 +108435,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55767] = 3, - ACTIONS(3380), 1, + [51562] = 3, + ACTIONS(3452), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3378), 10, + ACTIONS(3450), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107582,13 +108452,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55787] = 3, - ACTIONS(3384), 1, + [51582] = 3, + ACTIONS(3456), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3382), 10, + ACTIONS(3454), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107599,13 +108469,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55807] = 3, - ACTIONS(3388), 1, + [51602] = 3, + ACTIONS(3460), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3386), 10, + ACTIONS(3458), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107616,13 +108486,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55827] = 3, - ACTIONS(3392), 1, + [51622] = 3, + ACTIONS(3464), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3390), 10, + ACTIONS(3462), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107633,13 +108503,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55847] = 3, - ACTIONS(3396), 1, + [51642] = 3, + ACTIONS(3468), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3394), 10, + ACTIONS(3466), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107650,32 +108520,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55867] = 5, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(3398), 1, - sym_crate, - STATE(1450), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3320), 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, - [55891] = 3, - ACTIONS(3402), 1, + [51662] = 3, + ACTIONS(3472), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3400), 10, + ACTIONS(3470), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107686,13 +108537,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55911] = 3, - ACTIONS(3406), 1, + [51682] = 3, + ACTIONS(3352), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3404), 10, + ACTIONS(3350), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107703,13 +108554,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55931] = 3, - ACTIONS(3410), 1, + [51702] = 3, + ACTIONS(3476), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3408), 10, + ACTIONS(3474), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107720,32 +108571,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55951] = 5, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(3412), 1, - sym_crate, - STATE(1450), 1, - sym_string_literal, + [51722] = 6, + ACTIONS(3380), 1, + anon_sym_COLON, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3478), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + 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, - [55975] = 3, - ACTIONS(3416), 1, + [51748] = 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, @@ -107756,13 +108608,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55995] = 3, - ACTIONS(3420), 1, + [51768] = 3, + ACTIONS(3486), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3418), 10, + ACTIONS(3484), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107773,30 +108625,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56015] = 3, - ACTIONS(3424), 1, - anon_sym_EQ, + [51788] = 5, + ACTIONS(718), 1, + aux_sym_string_literal_token1, + ACTIONS(3488), 1, + sym_crate, + STATE(1507), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3422), 10, + ACTIONS(3434), 8, 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, - [56035] = 3, - ACTIONS(3292), 1, + 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, + 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, + [51836] = 3, + ACTIONS(3494), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3290), 10, + ACTIONS(3492), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107807,13 +108680,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56055] = 3, - ACTIONS(3428), 1, + [51856] = 3, + ACTIONS(3498), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3426), 10, + ACTIONS(3496), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107824,13 +108697,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56075] = 3, - ACTIONS(594), 1, + [51876] = 5, + ACTIONS(718), 1, + aux_sym_string_literal_token1, + ACTIONS(3500), 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, + [51900] = 3, + ACTIONS(3504), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(592), 10, + ACTIONS(3502), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107841,172 +108733,153 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56095] = 7, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3430), 1, - anon_sym_LBRACE, - STATE(1273), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2356), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [56122] = 9, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + [51920] = 9, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - ACTIONS(3432), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3506), 1, anon_sym_EQ, - STATE(1266), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2360), 3, anon_sym_PLUS, anon_sym_COMMA, anon_sym_GT, - [56153] = 10, + [51951] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3434), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3436), 1, + ACTIONS(3510), 1, anon_sym_RBRACE, - ACTIONS(3438), 1, + ACTIONS(3512), 1, anon_sym_COMMA, - ACTIONS(3440), 1, + ACTIONS(3514), 1, sym_crate, - STATE(1887), 1, - sym_enum_variant, - STATE(2188), 1, + STATE(2025), 1, + sym_field_declaration, + STATE(2318), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1474), 2, + STATE(1494), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56186] = 9, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + [51984] = 9, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - ACTIONS(3442), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3516), 1, anon_sym_for, - STATE(1266), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2360), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56217] = 9, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + [52015] = 9, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - ACTIONS(3444), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3518), 1, anon_sym_for, - STATE(1266), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2360), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56248] = 10, + [52046] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3446), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3514), 1, + sym_crate, + ACTIONS(3520), 1, anon_sym_RBRACE, - ACTIONS(3450), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1844), 1, sym_field_declaration, - STATE(2226), 1, + STATE(2318), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1459), 2, + STATE(1492), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56281] = 9, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3157), 1, - anon_sym_COLON_COLON, - ACTIONS(3452), 1, - anon_sym_for, - STATE(1266), 1, - sym_type_arguments, - STATE(1286), 1, - sym_parameters, + [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, + anon_sym_RBRACE, + ACTIONS(3528), 1, + anon_sym_COMMA, + STATE(2014), 1, + sym_enum_variant, + STATE(2459), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56312] = 6, + STATE(1486), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52112] = 6, ACTIONS(91), 1, aux_sym_string_literal_token1, - STATE(1858), 1, + STATE(1939), 1, sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3454), 2, + ACTIONS(3530), 2, anon_sym_true, anon_sym_false, - STATE(1052), 2, + STATE(965), 2, sym_string_literal, sym_boolean_literal, ACTIONS(89), 4, @@ -108014,18 +108887,40 @@ static uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - [56337] = 6, + [52137] = 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(3532), 1, + anon_sym_for, + 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_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52168] = 6, ACTIONS(91), 1, aux_sym_string_literal_token1, - STATE(1862), 1, + STATE(1941), 1, sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3454), 2, + ACTIONS(3530), 2, anon_sym_true, anon_sym_false, - STATE(1052), 2, + STATE(965), 2, sym_string_literal, sym_boolean_literal, ACTIONS(89), 4, @@ -108033,1890 +108928,1957 @@ static uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - [56362] = 8, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3456), 1, - sym_identifier, - ACTIONS(3458), 1, - anon_sym_RBRACE, - ACTIONS(3460), 1, - anon_sym_COMMA, - ACTIONS(3462), 1, - anon_sym_DOT_DOT, + [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(3), 2, sym_block_comment, sym_line_comment, - STATE(1671), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1948), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [56391] = 9, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + 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(3155), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - ACTIONS(3464), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3536), 1, anon_sym_for, - STATE(1266), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2360), 3, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56422] = 9, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3157), 1, - anon_sym_COLON_COLON, - ACTIONS(3466), 1, - anon_sym_for, - STATE(1266), 1, + 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(1286), 1, + STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, - anon_sym_LBRACE, + ACTIONS(2394), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_where, - [56453] = 9, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + anon_sym_COMMA, + [52276] = 9, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - ACTIONS(3468), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3540), 1, anon_sym_for, - STATE(1266), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2360), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56484] = 9, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + [52307] = 9, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - ACTIONS(3470), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3542), 1, anon_sym_for, - STATE(1266), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2360), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56515] = 9, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + [52338] = 9, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - ACTIONS(3472), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3544), 1, anon_sym_for, - STATE(1266), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2360), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56546] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3173), 1, - anon_sym_trait, - ACTIONS(3474), 1, - anon_sym_impl, - STATE(64), 1, - sym_block, + [52369] = 5, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3478), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 6, + 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, - [56571] = 10, + [52392] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(3514), 1, sym_crate, - ACTIONS(3446), 1, + ACTIONS(3524), 1, sym_identifier, - ACTIONS(3476), 1, + ACTIONS(3546), 1, anon_sym_RBRACE, - ACTIONS(3478), 1, + ACTIONS(3548), 1, anon_sym_COMMA, - STATE(1980), 1, - sym_field_declaration, - STATE(2226), 1, + STATE(1987), 1, + sym_enum_variant, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1481), 2, + STATE(1503), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56604] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - sym_identifier, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3480), 1, - anon_sym_RBRACE, - ACTIONS(3482), 1, - anon_sym_COMMA, - STATE(1943), 1, - sym_enum_variant, - STATE(2188), 1, - sym_visibility_modifier, + [52425] = 5, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1477), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [56637] = 9, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3484), 1, - sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2388), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3488), 1, - anon_sym_GT, - ACTIONS(3490), 1, - sym_metavariable, - STATE(1681), 1, - sym_lifetime, - STATE(1910), 1, - sym_constrained_type_parameter, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52448] = 5, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, - sym_const_parameter, - sym_optional_type_parameter, - [56667] = 7, - ACTIONS(2075), 1, + 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, + [52471] = 8, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3456), 1, + ACTIONS(3552), 1, sym_identifier, - ACTIONS(3462), 1, - anon_sym_DOT_DOT, - ACTIONS(3492), 1, + ACTIONS(3554), 1, anon_sym_RBRACE, + ACTIONS(3556), 1, + anon_sym_COMMA, + ACTIONS(3558), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1671), 2, + STATE(1738), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2177), 3, + STATE(1905), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [56693] = 9, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3484), 1, - sym_identifier, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3490), 1, - sym_metavariable, - ACTIONS(3494), 1, - anon_sym_GT, - STATE(1681), 1, - sym_lifetime, - STATE(1910), 1, - sym_constrained_type_parameter, + [52500] = 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(3560), 1, + anon_sym_for, + STATE(1285), 1, + sym_type_arguments, + STATE(1307), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, - sym_const_parameter, - sym_optional_type_parameter, - [56723] = 7, - ACTIONS(2075), 1, + ACTIONS(2360), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52531] = 5, + ACTIONS(3562), 1, + anon_sym_SEMI, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(465), 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, + [52553] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3456), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3462), 1, - anon_sym_DOT_DOT, - ACTIONS(3496), 1, + ACTIONS(3514), 1, + sym_crate, + ACTIONS(3566), 1, anon_sym_RBRACE, + STATE(2085), 1, + sym_field_declaration, + STATE(2318), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1671), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2177), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [56749] = 9, - ACTIONS(2071), 1, + [52583] = 9, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(3484), 1, + ACTIONS(3568), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3570), 1, anon_sym_const, - ACTIONS(3490), 1, - sym_metavariable, - ACTIONS(3498), 1, + ACTIONS(3572), 1, anon_sym_GT, - STATE(1681), 1, + ACTIONS(3574), 1, + sym_metavariable, + STATE(1729), 1, sym_lifetime, - STATE(1910), 1, + STATE(1883), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [56779] = 5, - ACTIONS(3500), 1, + [52613] = 5, + ACTIONS(3576), 1, anon_sym_SEMI, - ACTIONS(3502), 1, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(451), 1, + STATE(804), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 6, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56801] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, + [52635] = 7, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3446), 1, + ACTIONS(3552), 1, sym_identifier, - ACTIONS(3504), 1, + ACTIONS(3558), 1, + anon_sym_DOT_DOT, + ACTIONS(3580), 1, anon_sym_RBRACE, - STATE(2149), 1, - sym_field_declaration, - STATE(2226), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1449), 2, + STATE(1738), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56831] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - sym_identifier, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3506), 1, - anon_sym_RBRACE, - STATE(2035), 1, - sym_enum_variant, - STATE(2188), 1, - sym_visibility_modifier, + 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, + anon_sym_LPAREN, + ACTIONS(3586), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3590), 1, + anon_sym_LT, + STATE(371), 1, + sym_field_declaration_list, + STATE(1521), 1, + sym_type_parameters, + STATE(1847), 1, + sym_ordered_field_declaration_list, + STATE(2190), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1480), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [56861] = 5, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3508), 1, + [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, - STATE(261), 1, - sym_declaration_list, + 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 6, + [52725] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3596), 1, + anon_sym_move, + STATE(61), 1, + sym_block, + 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, - [56883] = 10, - ACTIONS(3510), 1, - anon_sym_SEMI, - ACTIONS(3512), 1, + [52747] = 9, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3568), 1, + sym_identifier, + ACTIONS(3570), 1, + anon_sym_const, + ACTIONS(3574), 1, + sym_metavariable, + ACTIONS(3598), 1, + anon_sym_GT, + STATE(1729), 1, + sym_lifetime, + STATE(1883), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2239), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52777] = 10, + ACTIONS(3584), 1, anon_sym_LPAREN, - ACTIONS(3514), 1, + ACTIONS(3586), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3518), 1, + ACTIONS(3590), 1, anon_sym_LT, - STATE(297), 1, + ACTIONS(3600), 1, + anon_sym_SEMI, + STATE(261), 1, sym_field_declaration_list, - STATE(1494), 1, + STATE(1542), 1, sym_type_parameters, - STATE(1803), 1, + STATE(1833), 1, sym_ordered_field_declaration_list, - STATE(2078), 1, + STATE(2129), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56915] = 7, - ACTIONS(3139), 1, - anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_COLON, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3520), 1, - anon_sym_COLON_COLON, + [52809] = 9, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3568), 1, + sym_identifier, + ACTIONS(3570), 1, + anon_sym_const, + ACTIONS(3574), 1, + sym_metavariable, + ACTIONS(3602), 1, + anon_sym_GT, + STATE(1729), 1, + sym_lifetime, + STATE(1883), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [56941] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3446), 1, - sym_identifier, - ACTIONS(3522), 1, - anon_sym_RBRACE, - STATE(2149), 1, - sym_field_declaration, - STATE(2226), 1, - sym_visibility_modifier, + STATE(2239), 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, - STATE(1449), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [56971] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, + 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(3434), 1, + ACTIONS(3552), 1, sym_identifier, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3524), 1, + ACTIONS(3558), 1, + anon_sym_DOT_DOT, + ACTIONS(3606), 1, anon_sym_RBRACE, - STATE(2035), 1, - sym_enum_variant, - STATE(2188), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1480), 2, + STATE(1738), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57001] = 9, + STATE(2177), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [52887] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3434), 1, - sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3514), 1, sym_crate, - ACTIONS(3526), 1, + ACTIONS(3524), 1, + sym_identifier, + ACTIONS(3608), 1, anon_sym_RBRACE, - STATE(2035), 1, + STATE(2112), 1, sym_enum_variant, - STATE(2188), 1, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1480), 2, + STATE(1476), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57031] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, + [52917] = 9, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3568), 1, sym_identifier, - STATE(70), 1, - sym_block, + ACTIONS(3570), 1, + anon_sym_const, + ACTIONS(3574), 1, + sym_metavariable, + ACTIONS(3610), 1, + anon_sym_GT, + STATE(1730), 1, + sym_lifetime, + STATE(1883), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57053] = 9, + STATE(2239), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52947] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3446), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3532), 1, + ACTIONS(3514), 1, + sym_crate, + ACTIONS(3612), 1, anon_sym_RBRACE, - STATE(2149), 1, + STATE(2085), 1, sym_field_declaration, - STATE(2226), 1, + STATE(2318), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1449), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57083] = 9, + [52977] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3434), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3514), 1, sym_crate, - ACTIONS(3534), 1, + ACTIONS(3614), 1, anon_sym_RBRACE, - STATE(2035), 1, - sym_enum_variant, - STATE(2188), 1, + STATE(2085), 1, + sym_field_declaration, + STATE(2318), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1480), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57113] = 9, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3484), 1, - sym_identifier, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3490), 1, - sym_metavariable, - ACTIONS(3536), 1, - anon_sym_GT, - STATE(1681), 1, - sym_lifetime, - STATE(1910), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2108), 2, - sym_const_parameter, - sym_optional_type_parameter, - [57143] = 5, - ACTIONS(3538), 1, - anon_sym_SEMI, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(783), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57165] = 9, + [53007] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3434), 1, - sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3514), 1, sym_crate, - ACTIONS(3542), 1, + ACTIONS(3524), 1, + sym_identifier, + ACTIONS(3616), 1, anon_sym_RBRACE, - STATE(2035), 1, + STATE(2112), 1, sym_enum_variant, - STATE(2188), 1, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1480), 2, + STATE(1476), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57195] = 9, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3484), 1, - sym_identifier, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3490), 1, - sym_metavariable, - ACTIONS(3544), 1, - anon_sym_GT, - STATE(1701), 1, - sym_lifetime, - STATE(1910), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2108), 2, - sym_const_parameter, - sym_optional_type_parameter, - [57225] = 10, - ACTIONS(3512), 1, + [53037] = 7, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3215), 1, anon_sym_LPAREN, - ACTIONS(3514), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(3546), 1, - anon_sym_SEMI, - STATE(359), 1, - sym_field_declaration_list, - STATE(1522), 1, - sym_type_parameters, - STATE(1816), 1, - sym_ordered_field_declaration_list, - STATE(2134), 1, - sym_where_clause, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3618), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57257] = 9, + 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(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(3514), 1, sym_crate, - ACTIONS(3446), 1, + ACTIONS(3524), 1, sym_identifier, - ACTIONS(3548), 1, + ACTIONS(3620), 1, anon_sym_RBRACE, - STATE(2149), 1, - sym_field_declaration, - STATE(2226), 1, + STATE(2112), 1, + sym_enum_variant, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1449), 2, + STATE(1476), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57287] = 9, + [53093] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3434), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3514), 1, sym_crate, - ACTIONS(3550), 1, + ACTIONS(3622), 1, anon_sym_RBRACE, - STATE(2035), 1, - sym_enum_variant, - STATE(2188), 1, + STATE(2085), 1, + sym_field_declaration, + STATE(2318), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1480), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57317] = 10, - ACTIONS(3512), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(3552), 1, - anon_sym_SEMI, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(812), 1, - sym_field_declaration_list, - STATE(1505), 1, - sym_type_parameters, - STATE(1912), 1, - sym_ordered_field_declaration_list, - STATE(2105), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57349] = 9, + [53123] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3446), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3556), 1, + ACTIONS(3514), 1, + sym_crate, + ACTIONS(3624), 1, anon_sym_RBRACE, - STATE(2149), 1, + STATE(2085), 1, sym_field_declaration, - STATE(2226), 1, + STATE(2318), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1449), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57379] = 5, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3558), 1, - anon_sym_SEMI, - STATE(889), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57401] = 10, - ACTIONS(3512), 1, + [53153] = 10, + ACTIONS(3584), 1, anon_sym_LPAREN, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3518), 1, + ACTIONS(3590), 1, anon_sym_LT, - ACTIONS(3554), 1, + ACTIONS(3594), 1, anon_sym_LBRACE, - ACTIONS(3560), 1, + ACTIONS(3626), 1, anon_sym_SEMI, - STATE(939), 1, + STATE(837), 1, sym_field_declaration_list, - STATE(1519), 1, + STATE(1512), 1, sym_type_parameters, - STATE(1983), 1, + STATE(1953), 1, sym_ordered_field_declaration_list, - STATE(2002), 1, + STATE(2161), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57433] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3562), 1, - anon_sym_move, - STATE(62), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57455] = 9, - ACTIONS(2071), 1, + [53185] = 9, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(3484), 1, + ACTIONS(3568), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3570), 1, anon_sym_const, - ACTIONS(3490), 1, + ACTIONS(3574), 1, sym_metavariable, - ACTIONS(3564), 1, + ACTIONS(3628), 1, anon_sym_GT, - STATE(1681), 1, + STATE(1729), 1, sym_lifetime, - STATE(1910), 1, + STATE(1883), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [57485] = 9, + [53215] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(3514), 1, sym_crate, - ACTIONS(3446), 1, + ACTIONS(3524), 1, sym_identifier, - ACTIONS(3566), 1, + ACTIONS(3630), 1, anon_sym_RBRACE, - STATE(2149), 1, + STATE(2112), 1, + sym_enum_variant, + STATE(2459), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1476), 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(2226), 1, + STATE(2318), 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, + [53275] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3514), 1, + sym_crate, + ACTIONS(3524), 1, + sym_identifier, + ACTIONS(3634), 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(1449), 2, + STATE(1476), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57515] = 9, - ACTIONS(2071), 1, + [53305] = 9, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(3484), 1, + ACTIONS(3568), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3570), 1, anon_sym_const, - ACTIONS(3490), 1, + ACTIONS(3574), 1, sym_metavariable, - ACTIONS(3568), 1, + ACTIONS(3636), 1, anon_sym_GT, - STATE(1681), 1, + STATE(1729), 1, sym_lifetime, - STATE(1910), 1, + STATE(1883), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [57545] = 9, - ACTIONS(2071), 1, + [53335] = 9, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(3484), 1, + ACTIONS(3568), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3570), 1, anon_sym_const, - ACTIONS(3490), 1, + ACTIONS(3574), 1, sym_metavariable, - ACTIONS(3570), 1, + ACTIONS(3638), 1, anon_sym_GT, - STATE(1681), 1, + STATE(1729), 1, sym_lifetime, - STATE(1910), 1, + STATE(1883), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [57575] = 9, - ACTIONS(2071), 1, + [53365] = 9, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(3484), 1, + ACTIONS(3568), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3570), 1, anon_sym_const, - ACTIONS(3490), 1, + ACTIONS(3574), 1, sym_metavariable, - ACTIONS(3572), 1, + ACTIONS(3640), 1, anon_sym_GT, - STATE(1681), 1, + STATE(1729), 1, sym_lifetime, - STATE(1910), 1, + STATE(1883), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [57605] = 6, - ACTIONS(3139), 1, - anon_sym_LPAREN, - ACTIONS(3222), 1, - anon_sym_COLON_COLON, - ACTIONS(3276), 1, - anon_sym_BANG, + [53395] = 5, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3642), 1, + anon_sym_SEMI, + STATE(871), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [57628] = 8, - ACTIONS(2071), 1, + ACTIONS(2388), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53417] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3514), 1, + sym_crate, + ACTIONS(3524), 1, + sym_identifier, + ACTIONS(3644), 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, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53447] = 9, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(3486), 1, + ACTIONS(3568), 1, + sym_identifier, + ACTIONS(3570), 1, anon_sym_const, ACTIONS(3574), 1, - sym_identifier, - ACTIONS(3576), 1, sym_metavariable, - STATE(1619), 1, + ACTIONS(3646), 1, + anon_sym_GT, + STATE(1729), 1, sym_lifetime, - STATE(1697), 1, + STATE(1883), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1899), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [57655] = 7, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + [53477] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3648), 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(3578), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3655), 1, anon_sym_for, - STATE(1273), 1, + STATE(1276), 1, sym_type_arguments, STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2394), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57680] = 7, - ACTIONS(3149), 1, + [53547] = 5, + ACTIONS(3660), 1, + anon_sym_fn, + ACTIONS(3662), 1, + anon_sym_extern, + 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, + 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, + sym_identifier, + ACTIONS(3667), 1, + anon_sym_RBRACE, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(3671), 1, + anon_sym_ref, + ACTIONS(3673), 1, + sym_mutable_specifier, + 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, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3675), 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, + [53643] = 7, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3580), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3677), 1, anon_sym_for, - STATE(1273), 1, + STATE(1276), 1, sym_type_arguments, STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2394), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57705] = 7, - ACTIONS(3149), 1, + [53668] = 7, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3679), 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, + [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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53722] = 7, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3582), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3685), 1, anon_sym_for, - STATE(1273), 1, + STATE(1276), 1, sym_type_arguments, STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2394), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57730] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3446), 1, - sym_identifier, - STATE(2048), 1, - sym_field_declaration, - STATE(2226), 1, - sym_visibility_modifier, + [53747] = 6, + ACTIONS(3215), 1, + anon_sym_LPAREN, + ACTIONS(3290), 1, + anon_sym_COLON_COLON, + ACTIONS(3368), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [57757] = 2, + 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(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3584), 8, + ACTIONS(3687), 6, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57772] = 8, - ACTIONS(2071), 1, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [53789] = 8, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(3486), 1, + ACTIONS(3570), 1, anon_sym_const, - ACTIONS(3586), 1, + ACTIONS(3691), 1, sym_identifier, - ACTIONS(3588), 1, + ACTIONS(3693), 1, sym_metavariable, - STATE(1585), 1, + STATE(1615), 1, sym_lifetime, - STATE(1737), 1, + STATE(1728), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1804), 2, + STATE(1830), 2, sym_const_parameter, sym_optional_type_parameter, - [57799] = 8, + [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, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3434), 1, - sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3514), 1, sym_crate, - STATE(2035), 1, + ACTIONS(3524), 1, + sym_identifier, + STATE(2215), 1, sym_enum_variant, - STATE(2188), 1, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1480), 2, + STATE(1077), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57826] = 7, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + [53866] = 7, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3697), 1, anon_sym_for, - STATE(1273), 1, + STATE(1276), 1, sym_type_arguments, STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2394), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57851] = 4, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - STATE(1450), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3320), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57870] = 6, - ACTIONS(2075), 1, + [53891] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3456), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3462), 1, - anon_sym_DOT_DOT, + 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(1671), 2, + STATE(1077), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2177), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [57893] = 4, - ACTIONS(3197), 1, - anon_sym_trait, - ACTIONS(3592), 1, - anon_sym_impl, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57912] = 8, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(3594), 1, - sym_identifier, - ACTIONS(3596), 1, - anon_sym_RBRACE, - ACTIONS(3598), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, - anon_sym_ref, - ACTIONS(3602), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1914), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [57939] = 4, - ACTIONS(3606), 1, - anon_sym_PLUS, - STATE(1485), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3604), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [57958] = 8, + [53918] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3446), 1, + ACTIONS(3508), 1, sym_identifier, - STATE(1952), 1, + ACTIONS(3514), 1, + sym_crate, + STATE(2085), 1, sym_field_declaration, - STATE(2226), 1, + STATE(2318), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57985] = 9, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3608), 1, + [53945] = 7, + ACTIONS(2394), 1, + anon_sym_PLUS, + ACTIONS(3314), 1, + anon_sym_PIPE, + ACTIONS(3316), 1, anon_sym_COLON, - ACTIONS(3610), 1, - anon_sym_LT, - STATE(778), 1, - sym_declaration_list, - STATE(1549), 1, - sym_type_parameters, - STATE(1675), 1, - sym_trait_bounds, - STATE(2065), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58014] = 8, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3484), 1, - sym_identifier, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3490), 1, - sym_metavariable, - STATE(1681), 1, - sym_lifetime, - STATE(1910), 1, - sym_constrained_type_parameter, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, - sym_const_parameter, - sym_optional_type_parameter, - [58041] = 8, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(3594), 1, - sym_identifier, - ACTIONS(3600), 1, - anon_sym_ref, - ACTIONS(3602), 1, - sym_mutable_specifier, - ACTIONS(3612), 1, - anon_sym_RBRACE, - ACTIONS(3614), 1, + 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, + 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1823), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [58068] = 4, - ACTIONS(848), 1, - anon_sym_LBRACE, - STATE(1391), 1, - sym_block, + [53999] = 4, + ACTIONS(718), 1, + aux_sym_string_literal_token1, + STATE(1507), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 6, + ACTIONS(3434), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [58087] = 4, - ACTIONS(3606), 1, + [54018] = 4, + ACTIONS(3701), 1, anon_sym_PLUS, - STATE(1458), 1, + STATE(1473), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 6, + ACTIONS(3699), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [58106] = 9, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, + [54037] = 9, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3608), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, anon_sym_COLON, - ACTIONS(3610), 1, + ACTIONS(3683), 1, anon_sym_LT, - STATE(811), 1, + STATE(845), 1, sym_declaration_list, - STATE(1577), 1, + STATE(1569), 1, sym_type_parameters, - STATE(1687), 1, + STATE(1699), 1, sym_trait_bounds, - STATE(2104), 1, + STATE(2157), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58135] = 8, + [54066] = 4, + ACTIONS(3703), 1, + anon_sym_PLUS, + STATE(1473), 1, + aux_sym_trait_bounds_repeat1, + 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, + [54085] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(3514), 1, sym_crate, - ACTIONS(3446), 1, + ACTIONS(3524), 1, sym_identifier, - STATE(2149), 1, - sym_field_declaration, - STATE(2226), 1, + STATE(1850), 1, + sym_enum_variant, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1449), 2, + STATE(1077), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58162] = 8, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3586), 1, - sym_identifier, - ACTIONS(3588), 1, - sym_metavariable, - STATE(1611), 1, - sym_lifetime, - STATE(1737), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1804), 2, - sym_const_parameter, - sym_optional_type_parameter, - [58189] = 4, - ACTIONS(3618), 1, + [54112] = 4, + ACTIONS(3689), 1, anon_sym_PLUS, - STATE(1458), 1, + STATE(1473), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 6, + ACTIONS(3699), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [58208] = 4, - ACTIONS(3620), 1, - anon_sym_PLUS, - STATE(1458), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3616), 6, - anon_sym_SEMI, + [54131] = 9, + ACTIONS(3564), 1, anon_sym_LBRACE, + ACTIONS(3588), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [58227] = 7, - ACTIONS(2356), 1, - anon_sym_PLUS, - ACTIONS(3256), 1, - anon_sym_PIPE, - ACTIONS(3258), 1, + ACTIONS(3681), 1, anon_sym_COLON, - ACTIONS(3625), 1, - anon_sym_COLON_COLON, + ACTIONS(3683), 1, + anon_sym_LT, + STATE(255), 1, + sym_declaration_list, + STATE(1578), 1, + sym_type_parameters, + STATE(1759), 1, + sym_trait_bounds, + STATE(2122), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3262), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3622), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58252] = 6, - ACTIONS(3256), 1, - anon_sym_PIPE, - ACTIONS(3258), 1, - anon_sym_COLON, - ACTIONS(3627), 1, - anon_sym_COLON_COLON, + [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(3262), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2356), 3, + ACTIONS(3708), 2, anon_sym_RPAREN, + anon_sym_RBRACE, + [54187] = 4, + ACTIONS(3718), 1, anon_sym_PLUS, - anon_sym_COMMA, - [58275] = 7, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3629), 1, - anon_sym_for, - STATE(1273), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + STATE(1490), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(3716), 6, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_where, - [58300] = 7, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3631), 1, - anon_sym_for, - STATE(1273), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54206] = 5, + ACTIONS(3723), 1, + anon_sym_fn, + ACTIONS(3725), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58325] = 8, + 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, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3434), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3514), 1, sym_crate, - STATE(1825), 1, - sym_enum_variant, - STATE(2188), 1, + STATE(1923), 1, + sym_field_declaration, + STATE(2318), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, + STATE(1077), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58352] = 9, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3610), 1, - anon_sym_LT, - STATE(924), 1, - sym_declaration_list, - STATE(1527), 1, - sym_type_parameters, - STATE(1659), 1, - sym_trait_bounds, - STATE(1996), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58381] = 8, - ACTIONS(3633), 1, - anon_sym_LPAREN, - ACTIONS(3638), 1, - anon_sym_LBRACE, - ACTIONS(3641), 1, - anon_sym_LBRACK, - STATE(1476), 1, - aux_sym_macro_definition_repeat1, - STATE(2311), 1, - sym_token_tree_pattern, - STATE(2375), 1, - sym_macro_rule, + [54254] = 8, + 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(3727), 1, + anon_sym_RBRACE, + ACTIONS(3729), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3636), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [58408] = 8, + STATE(1926), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54281] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3434), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3514), 1, sym_crate, - STATE(1974), 1, - sym_enum_variant, - STATE(2188), 1, + STATE(1990), 1, + sym_field_declaration, + STATE(2318), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, + STATE(1077), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58435] = 6, - ACTIONS(3622), 1, - anon_sym_RBRACK, - ACTIONS(3644), 1, - anon_sym_COLON_COLON, + [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(2356), 2, - anon_sym_SEMI, + ACTIONS(2394), 3, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3256), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3262), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58458] = 7, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + anon_sym_where, + [54333] = 4, + ACTIONS(3298), 1, + anon_sym_COLON_COLON, + ACTIONS(3382), 1, + anon_sym_BANG, + 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, + [54352] = 4, + ACTIONS(874), 1, + anon_sym_LBRACE, + STATE(1374), 1, + sym_block, + 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, + [54371] = 7, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3646), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3733), 1, anon_sym_for, - STATE(1273), 1, + STATE(1276), 1, sym_type_arguments, STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2394), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58483] = 8, + [54396] = 8, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3568), 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(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, + 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, + 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, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3434), 1, - sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3514), 1, sym_crate, - STATE(2025), 1, + ACTIONS(3524), 1, + sym_identifier, + STATE(2112), 1, sym_enum_variant, - STATE(2188), 1, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, + STATE(1476), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58510] = 8, + [54488] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(3514), 1, sym_crate, - ACTIONS(3446), 1, + ACTIONS(3524), 1, sym_identifier, - STATE(1949), 1, - sym_field_declaration, - STATE(2226), 1, + STATE(2026), 1, + sym_enum_variant, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, + STATE(1077), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58537] = 5, - ACTIONS(3650), 1, - anon_sym_fn, - ACTIONS(3652), 1, - anon_sym_extern, + [54515] = 4, + ACTIONS(2478), 1, + anon_sym_COLON_COLON, + ACTIONS(3739), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1488), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3648), 4, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_unsafe, - [58558] = 9, - ACTIONS(3502), 1, + anon_sym_extern, + [54534] = 9, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3608), 1, + ACTIONS(3681), 1, anon_sym_COLON, - ACTIONS(3610), 1, + ACTIONS(3683), 1, anon_sym_LT, - STATE(287), 1, + STATE(376), 1, sym_declaration_list, - STATE(1557), 1, + STATE(1593), 1, sym_type_parameters, - STATE(1729), 1, + STATE(1711), 1, sym_trait_bounds, - STATE(2103), 1, + STATE(2191), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58587] = 9, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3610), 1, - anon_sym_LT, - STATE(364), 1, - sym_declaration_list, - STATE(1569), 1, - sym_type_parameters, - STATE(1724), 1, - sym_trait_bounds, - STATE(2141), 1, - sym_where_clause, + [54563] = 8, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3570), 1, + anon_sym_const, + ACTIONS(3741), 1, + sym_identifier, + ACTIONS(3743), 1, + sym_metavariable, + STATE(1644), 1, + sym_lifetime, + STATE(1713), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58616] = 4, - ACTIONS(3656), 1, - anon_sym_PLUS, - STATE(1485), 1, - aux_sym_trait_bounds_repeat1, + STATE(1940), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54590] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 6, + ACTIONS(3745), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [58635] = 7, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3659), 1, - anon_sym_for, - STATE(1273), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2356), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58660] = 9, - ACTIONS(3502), 1, + 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(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3608), 1, + ACTIONS(3681), 1, anon_sym_COLON, - ACTIONS(3610), 1, + ACTIONS(3683), 1, anon_sym_LT, - STATE(450), 1, + STATE(945), 1, sym_declaration_list, - STATE(1552), 1, + STATE(1613), 1, sym_type_parameters, - STATE(1734), 1, + STATE(1739), 1, sym_trait_bounds, - STATE(2127), 1, + STATE(2041), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58689] = 5, - ACTIONS(3664), 1, - anon_sym_fn, - ACTIONS(3666), 1, - anon_sym_extern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1488), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3661), 4, - anon_sym_async, + [54634] = 8, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3570), 1, anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [58710] = 6, - ACTIONS(3139), 1, - anon_sym_LPAREN, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [58733] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3654), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [58747] = 3, - ACTIONS(3671), 1, + ACTIONS(3691), 1, sym_identifier, + ACTIONS(3693), 1, + sym_metavariable, + STATE(1649), 1, + sym_lifetime, + STATE(1728), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [58763] = 2, + STATE(1830), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54661] = 6, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3552), 1, + sym_identifier, + ACTIONS(3558), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [58777] = 8, - ACTIONS(3673), 1, + 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, + [54684] = 6, + ACTIONS(3747), 1, anon_sym_LPAREN, - ACTIONS(3675), 1, - anon_sym_RPAREN, - ACTIONS(3677), 1, - anon_sym_LBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - STATE(1476), 1, - aux_sym_macro_definition_repeat1, - STATE(2106), 1, - sym_macro_rule, - STATE(2311), 1, - sym_token_tree_pattern, + ACTIONS(3751), 1, + anon_sym_EQ, + ACTIONS(3753), 1, + anon_sym_COLON_COLON, + STATE(1819), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58803] = 8, - ACTIONS(3512), 1, + ACTIONS(3749), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [54706] = 8, + ACTIONS(3584), 1, anon_sym_LPAREN, - ACTIONS(3514), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3681), 1, + ACTIONS(3594), 1, + anon_sym_LBRACE, + ACTIONS(3755), 1, anon_sym_SEMI, - STATE(284), 1, + STATE(936), 1, sym_field_declaration_list, - STATE(1821), 1, + STATE(2027), 1, sym_ordered_field_declaration_list, - STATE(2146), 1, + STATE(2060), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58829] = 8, - ACTIONS(3673), 1, + [54732] = 3, + ACTIONS(2478), 1, + anon_sym_COLON_COLON, + 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, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3759), 1, + anon_sym_RPAREN, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, + ACTIONS(3763), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_RPAREN, - STATE(1493), 1, + STATE(1489), 1, aux_sym_macro_definition_repeat1, - STATE(2133), 1, + STATE(2169), 1, sym_macro_rule, - STATE(2311), 1, + STATE(2454), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58855] = 6, - ACTIONS(3512), 1, + [54774] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3554), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3687), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3685), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1776), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [58877] = 2, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3765), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym_macro_definition_repeat1, + STATE(2202), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [58891] = 7, - ACTIONS(788), 1, + [54800] = 7, + ACTIONS(802), 1, anon_sym_DOT_DOT, - ACTIONS(3594), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(3671), 1, anon_sym_ref, - ACTIONS(3602), 1, + ACTIONS(3673), 1, sym_mutable_specifier, - ACTIONS(3689), 1, + ACTIONS(3767), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1994), 2, + STATE(2066), 2, sym_field_pattern, sym_remaining_field_pattern, - [58915] = 3, - ACTIONS(3691), 1, - anon_sym_COLON, + [54824] = 8, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3761), 1, + anon_sym_LBRACE, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3769), 1, + anon_sym_RPAREN, + STATE(1519), 1, + aux_sym_macro_definition_repeat1, + STATE(2204), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54850] = 3, + ACTIONS(3771), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 6, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [58931] = 7, - ACTIONS(3137), 1, - anon_sym_PIPE, - ACTIONS(3139), 1, + [54866] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_COLON, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58955] = 2, + 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, - ACTIONS(3654), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [58969] = 2, + [54892] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 7, + ACTIONS(3775), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -109924,10359 +110886,10868 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [58983] = 8, - ACTIONS(3673), 1, + [54906] = 8, + ACTIONS(3584), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3586), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3695), 1, - anon_sym_RPAREN, - STATE(1476), 1, - aux_sym_macro_definition_repeat1, - STATE(2130), 1, - sym_macro_rule, - STATE(2311), 1, - sym_token_tree_pattern, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3777), 1, + anon_sym_SEMI, + STATE(276), 1, + sym_field_declaration_list, + STATE(1840), 1, + sym_ordered_field_declaration_list, + STATE(2164), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59009] = 7, - ACTIONS(788), 1, + [54932] = 7, + ACTIONS(802), 1, anon_sym_DOT_DOT, - ACTIONS(3594), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(3671), 1, anon_sym_ref, - ACTIONS(3602), 1, + ACTIONS(3673), 1, sym_mutable_specifier, - ACTIONS(3697), 1, + ACTIONS(3779), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1994), 2, + STATE(2066), 2, sym_field_pattern, sym_remaining_field_pattern, - [59033] = 8, - ACTIONS(3512), 1, + [54956] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3699), 1, - anon_sym_SEMI, - STATE(886), 1, - sym_field_declaration_list, - STATE(1982), 1, - sym_ordered_field_declaration_list, - STATE(2175), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59059] = 2, + 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(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3701), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [59073] = 3, - ACTIONS(3703), 1, - anon_sym_trait, + [54982] = 3, + ACTIONS(3783), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 6, + ACTIONS(3650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59089] = 7, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(3594), 1, - sym_identifier, - ACTIONS(3600), 1, - anon_sym_ref, - ACTIONS(3602), 1, - sym_mutable_specifier, - ACTIONS(3705), 1, + [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, - STATE(1994), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [59113] = 3, - ACTIONS(3707), 1, - sym_identifier, + [55024] = 3, + ACTIONS(3298), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 6, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59129] = 8, - ACTIONS(3673), 1, + [55040] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, + ACTIONS(3763), 1, anon_sym_LBRACK, - ACTIONS(3709), 1, + ACTIONS(3787), 1, anon_sym_RBRACE, - STATE(1515), 1, + STATE(1533), 1, aux_sym_macro_definition_repeat1, - STATE(2098), 1, + STATE(2111), 1, sym_macro_rule, - STATE(2311), 1, + STATE(2454), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59155] = 8, - ACTIONS(3673), 1, + [55066] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, + ACTIONS(3763), 1, anon_sym_LBRACK, - ACTIONS(3711), 1, - anon_sym_RPAREN, - STATE(1503), 1, + ACTIONS(3789), 1, + anon_sym_RBRACE, + STATE(1525), 1, aux_sym_macro_definition_repeat1, - STATE(2086), 1, + STATE(2121), 1, sym_macro_rule, - STATE(2311), 1, + STATE(2454), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59181] = 6, - ACTIONS(3713), 1, + [55092] = 6, + ACTIONS(3584), 1, anon_sym_LPAREN, - ACTIONS(3717), 1, + ACTIONS(3594), 1, + anon_sym_LBRACE, + ACTIONS(3793), 1, anon_sym_EQ, - ACTIONS(3719), 1, - anon_sym_COLON_COLON, - STATE(1780), 1, - sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3715), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3791), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [59203] = 3, - ACTIONS(3721), 1, - anon_sym_trait, + STATE(1984), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55114] = 8, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3761), 1, + anon_sym_LBRACE, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3795), 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, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 6, + ACTIONS(3650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59219] = 6, - ACTIONS(3713), 1, + [55156] = 7, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3213), 1, + anon_sym_PIPE, + ACTIONS(3215), 1, anon_sym_LPAREN, - ACTIONS(3717), 1, - anon_sym_EQ, - ACTIONS(3723), 1, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3799), 1, anon_sym_COLON_COLON, - STATE(1780), 1, - sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3715), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [59241] = 8, - ACTIONS(3673), 1, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55180] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, + ACTIONS(3763), 1, anon_sym_LBRACK, - ACTIONS(3725), 1, + ACTIONS(3801), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1489), 1, aux_sym_macro_definition_repeat1, - STATE(2132), 1, + STATE(2057), 1, sym_macro_rule, - STATE(2311), 1, + STATE(2454), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59267] = 6, - ACTIONS(3713), 1, - anon_sym_LPAREN, - ACTIONS(3717), 1, + [55206] = 2, + 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, - ACTIONS(3727), 1, - anon_sym_COLON_COLON, - STATE(1780), 1, - sym_meta_arguments, + anon_sym_COMMA, + anon_sym_GT, + [55220] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3715), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3716), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [59289] = 7, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(3594), 1, - sym_identifier, - ACTIONS(3600), 1, - anon_sym_ref, - ACTIONS(3602), 1, - sym_mutable_specifier, - ACTIONS(3729), 1, + anon_sym_GT, + [55234] = 8, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3761), 1, + anon_sym_LBRACE, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3803), 1, anon_sym_RBRACE, + STATE(1547), 1, + aux_sym_macro_definition_repeat1, + STATE(2050), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1994), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [59313] = 3, - ACTIONS(3731), 1, - sym_identifier, + [55260] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [59329] = 8, - ACTIONS(3512), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(3716), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3733), 1, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55274] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3716), 7, anon_sym_SEMI, - STATE(785), 1, - sym_field_declaration_list, - STATE(1939), 1, - sym_ordered_field_declaration_list, - STATE(2062), 1, - sym_where_clause, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55288] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59355] = 8, - ACTIONS(3673), 1, + ACTIONS(3716), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55302] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, + ACTIONS(3763), 1, anon_sym_LBRACK, - ACTIONS(3735), 1, - anon_sym_RBRACE, - STATE(1476), 1, + ACTIONS(3805), 1, + anon_sym_RPAREN, + STATE(1489), 1, aux_sym_macro_definition_repeat1, - STATE(2013), 1, + STATE(2178), 1, sym_macro_rule, - STATE(2311), 1, + STATE(2454), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59381] = 2, + [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, - ACTIONS(3737), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [59395] = 8, - ACTIONS(3512), 1, + [55354] = 8, + ACTIONS(3584), 1, anon_sym_LPAREN, - ACTIONS(3514), 1, + ACTIONS(3586), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3739), 1, + ACTIONS(3809), 1, anon_sym_SEMI, - STATE(393), 1, + STATE(334), 1, sym_field_declaration_list, - STATE(1834), 1, + STATE(1951), 1, sym_ordered_field_declaration_list, - STATE(2164), 1, + STATE(2158), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59421] = 8, - ACTIONS(3673), 1, + [55380] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, + ACTIONS(3763), 1, anon_sym_LBRACK, - ACTIONS(3741), 1, - anon_sym_RBRACE, - STATE(1520), 1, + ACTIONS(3811), 1, + anon_sym_RPAREN, + STATE(1540), 1, aux_sym_macro_definition_repeat1, - STATE(2066), 1, + STATE(2101), 1, sym_macro_rule, - STATE(2311), 1, + STATE(2454), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59447] = 3, - ACTIONS(3743), 1, + [55406] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3813), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + 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(3530), 6, + ACTIONS(3650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59463] = 6, - ACTIONS(3288), 1, - anon_sym_COLON_COLON, - ACTIONS(3713), 1, - anon_sym_LPAREN, - ACTIONS(3747), 1, - anon_sym_EQ, - STATE(1772), 1, - sym_meta_arguments, + [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, - ACTIONS(3745), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [59485] = 6, - ACTIONS(3512), 1, + STATE(2066), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55460] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3554), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3751), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3749), 2, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3819), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1820), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [59507] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3608), 1, - anon_sym_COLON, - STATE(805), 1, - sym_declaration_list, - STATE(1672), 1, - sym_trait_bounds, - STATE(2052), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59530] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3753), 1, - anon_sym_SEMI, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3757), 1, - anon_sym_DASH_GT, - STATE(870), 1, - sym_block, - STATE(1918), 1, - sym_where_clause, + STATE(1489), 1, + aux_sym_macro_definition_repeat1, + STATE(2181), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59553] = 3, + [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(3408), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2494), 4, + ACTIONS(3749), 3, anon_sym_RPAREN, - anon_sym_PLUS, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_DASH_GT, - [59568] = 7, - ACTIONS(3514), 1, + [55508] = 8, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(290), 1, - sym_field_declaration_list, - STATE(1738), 1, - sym_type_parameters, - STATE(2083), 1, - sym_where_clause, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3823), 1, + anon_sym_RBRACE, + STATE(1530), 1, + aux_sym_macro_definition_repeat1, + STATE(2117), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59591] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_SEMI, + [55534] = 8, + ACTIONS(3757), 1, + anon_sym_LPAREN, ACTIONS(3761), 1, - anon_sym_DASH_GT, - STATE(802), 1, - sym_block, - STATE(1942), 1, - sym_where_clause, + anon_sym_LBRACE, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3825), 1, + anon_sym_RPAREN, + STATE(1514), 1, + aux_sym_macro_definition_repeat1, + STATE(2138), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59614] = 6, - ACTIONS(788), 1, + [55560] = 7, + ACTIONS(802), 1, anon_sym_DOT_DOT, - ACTIONS(3594), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(3671), 1, anon_sym_ref, - ACTIONS(3602), 1, + ACTIONS(3673), 1, sym_mutable_specifier, + ACTIONS(3827), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1994), 2, + STATE(2066), 2, sym_field_pattern, sym_remaining_field_pattern, - [59635] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3763), 1, - anon_sym_SEMI, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(351), 1, - sym_block, - STATE(1814), 1, - sym_where_clause, + [55584] = 3, + ACTIONS(3829), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59658] = 3, + 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(3358), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2398), 4, + ACTIONS(3749), 3, anon_sym_RPAREN, - anon_sym_PLUS, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_DASH_GT, - [59673] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(3769), 1, + [55622] = 6, + ACTIONS(3584), 1, + anon_sym_LPAREN, + ACTIONS(3594), 1, anon_sym_LBRACE, - STATE(299), 1, - sym_enum_variant_list, - STATE(1743), 1, - sym_type_parameters, - STATE(2073), 1, - sym_where_clause, + ACTIONS(3835), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59696] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3771), 1, - anon_sym_SEMI, - STATE(448), 1, - sym_block, - STATE(1873), 1, - sym_where_clause, + 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, - [59719] = 4, - ACTIONS(3773), 1, - anon_sym_COLON_COLON, + ACTIONS(3837), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [55666] = 3, + ACTIONS(3841), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2356), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [59736] = 7, - ACTIONS(3516), 1, + 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(3765), 1, - anon_sym_LBRACE, - ACTIONS(3775), 1, + ACTIONS(3843), 1, anon_sym_SEMI, - ACTIONS(3777), 1, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(3847), 1, anon_sym_DASH_GT, - STATE(346), 1, + STATE(339), 1, sym_block, - STATE(1850), 1, + STATE(1964), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59759] = 7, - ACTIONS(3516), 1, + [55705] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(3779), 1, + ACTIONS(3849), 1, anon_sym_SEMI, - ACTIONS(3781), 1, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(3853), 1, anon_sym_DASH_GT, - STATE(276), 1, + STATE(828), 1, sym_block, - STATE(1829), 1, + STATE(1961), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59782] = 7, - ACTIONS(3516), 1, + [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_where, - ACTIONS(3755), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3783), 1, + ACTIONS(3859), 1, anon_sym_SEMI, - STATE(729), 1, + ACTIONS(3861), 1, + anon_sym_DASH_GT, + STATE(463), 1, sym_block, - STATE(1932), 1, + STATE(1947), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59805] = 4, - ACTIONS(3785), 1, + [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(3147), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2356), 3, + ACTIONS(3863), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [59822] = 4, + [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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2398), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3358), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3787), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59839] = 6, - ACTIONS(3039), 1, - anon_sym_COLON_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3792), 1, - anon_sym_GT, - STATE(1984), 1, - aux_sym_type_parameters_repeat1, + [55816] = 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(2364), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 2, - anon_sym_PLUS, - anon_sym_as, - [59860] = 7, - ACTIONS(3516), 1, + [55839] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3765), 1, + ACTIONS(3590), 1, + anon_sym_LT, + ACTIONS(3594), 1, anon_sym_LBRACE, - ACTIONS(3794), 1, - anon_sym_SEMI, - ACTIONS(3796), 1, - anon_sym_DASH_GT, - STATE(397), 1, - sym_block, - STATE(1896), 1, + STATE(963), 1, + sym_field_declaration_list, + STATE(1757), 1, + sym_type_parameters, + STATE(2047), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59883] = 5, - ACTIONS(3785), 1, - anon_sym_COLON_COLON, - ACTIONS(3800), 1, - anon_sym_COLON, + [55862] = 7, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3590), 1, + anon_sym_LT, + ACTIONS(3873), 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, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3798), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59902] = 7, - ACTIONS(2185), 1, - anon_sym_PLUS, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3792), 1, - anon_sym_GT, - STATE(1977), 1, - sym_trait_bounds, - STATE(1984), 1, - aux_sym_type_parameters_repeat1, + [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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59925] = 7, - ACTIONS(3516), 1, + [55908] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3802), 1, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3879), 1, anon_sym_SEMI, - ACTIONS(3804), 1, - anon_sym_DASH_GT, - STATE(806), 1, + STATE(367), 1, sym_block, - STATE(1922), 1, + STATE(2012), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59948] = 7, - ACTIONS(3516), 1, + [55931] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3806), 1, + ACTIONS(3881), 1, anon_sym_SEMI, - ACTIONS(3808), 1, + ACTIONS(3883), 1, anon_sym_DASH_GT, - STATE(951), 1, + STATE(436), 1, sym_block, - STATE(1966), 1, + STATE(1957), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59971] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, + [55954] = 7, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3608), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, anon_sym_COLON, - STATE(863), 1, + STATE(940), 1, sym_declaration_list, - STATE(1680), 1, + STATE(1725), 1, sym_trait_bounds, - STATE(2097), 1, + STATE(2058), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59994] = 7, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3810), 1, + [55977] = 7, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3885), 1, anon_sym_SEMI, - ACTIONS(3812), 1, - anon_sym_EQ, - STATE(2245), 1, - sym_type_parameters, - STATE(2270), 1, - sym_trait_bounds, + STATE(382), 1, + sym_block, + STATE(1853), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60017] = 4, - ACTIONS(3787), 1, + [56000] = 4, + ACTIONS(3887), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3358), 2, + ACTIONS(3398), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2398), 3, + ACTIONS(2564), 3, anon_sym_SEMI, anon_sym_PLUS, anon_sym_DASH_GT, - [60034] = 7, - ACTIONS(3502), 1, + [56017] = 7, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3608), 1, + ACTIONS(3681), 1, anon_sym_COLON, - STATE(268), 1, + STATE(460), 1, sym_declaration_list, - STATE(1706), 1, + STATE(1709), 1, sym_trait_bounds, - STATE(2153), 1, + STATE(2168), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60057] = 7, - ACTIONS(3516), 1, + [56040] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(3814), 1, + ACTIONS(3890), 1, anon_sym_SEMI, - STATE(878), 1, + STATE(411), 1, sym_block, - STATE(1911), 1, + STATE(1884), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60080] = 7, - ACTIONS(3516), 1, + [56063] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3765), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3816), 1, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3892), 1, anon_sym_SEMI, - ACTIONS(3818), 1, - anon_sym_DASH_GT, - STATE(417), 1, + STATE(364), 1, sym_block, - STATE(1956), 1, + STATE(1845), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60103] = 7, - ACTIONS(3516), 1, + [56086] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3765), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(3820), 1, + ACTIONS(3894), 1, anon_sym_SEMI, - STATE(379), 1, + STATE(345), 1, sym_block, - STATE(1833), 1, + STATE(1834), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60126] = 4, - ACTIONS(3822), 1, - anon_sym_RBRACK, + [56109] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3408), 2, - anon_sym_COMMA, + ACTIONS(2530), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3474), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2494), 3, + ACTIONS(3896), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56126] = 7, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(3899), 1, anon_sym_SEMI, - anon_sym_PLUS, + ACTIONS(3901), 1, anon_sym_DASH_GT, - [60143] = 7, - ACTIONS(3502), 1, + STATE(952), 1, + sym_block, + STATE(2018), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56149] = 7, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3608), 1, + ACTIONS(3681), 1, anon_sym_COLON, - STATE(347), 1, + STATE(322), 1, sym_declaration_list, - STATE(1673), 1, + STATE(1774), 1, sym_trait_bounds, - STATE(2043), 1, + STATE(2198), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60166] = 7, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3825), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_GT, - STATE(1947), 1, - sym_trait_bounds, - STATE(1963), 1, - aux_sym_type_parameters_repeat1, + [56172] = 7, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3903), 1, + anon_sym_SEMI, + STATE(782), 1, + sym_block, + STATE(1955), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60189] = 7, - ACTIONS(3516), 1, + [56195] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3518), 1, + ACTIONS(3590), 1, anon_sym_LT, - ACTIONS(3554), 1, + ACTIONS(3873), 1, anon_sym_LBRACE, - STATE(940), 1, - sym_field_declaration_list, - STATE(1663), 1, + STATE(808), 1, + sym_enum_variant_list, + STATE(1719), 1, sym_type_parameters, - STATE(2004), 1, + STATE(2205), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60212] = 4, - ACTIONS(3829), 1, + [56218] = 7, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(3905), 1, + anon_sym_SEMI, + ACTIONS(3907), 1, + anon_sym_DASH_GT, + STATE(400), 1, + sym_block, + STATE(1868), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56241] = 7, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3590), 1, + anon_sym_LT, + ACTIONS(3909), 1, + anon_sym_LBRACE, + STATE(275), 1, + sym_enum_variant_list, + STATE(1712), 1, + sym_type_parameters, + STATE(2054), 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(3147), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2356), 3, + ACTIONS(3911), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [60229] = 5, - ACTIONS(3800), 1, - anon_sym_COLON, - ACTIONS(3829), 1, + [56283] = 7, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(3917), 1, + anon_sym_SEMI, + ACTIONS(3919), 1, + anon_sym_DASH_GT, + STATE(849), 1, + sym_block, + STATE(1970), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56306] = 4, + ACTIONS(3915), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3798), 2, + ACTIONS(2394), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [60248] = 7, - ACTIONS(3516), 1, + [56323] = 4, + ACTIONS(3896), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3474), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2530), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [56340] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3831), 1, + ACTIONS(3921), 1, anon_sym_SEMI, - STATE(921), 1, + ACTIONS(3923), 1, + anon_sym_DASH_GT, + STATE(909), 1, sym_block, - STATE(1908), 1, + STATE(1998), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60271] = 7, - ACTIONS(3516), 1, + [56363] = 7, + ACTIONS(3586), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3518), 1, + ACTIONS(3590), 1, anon_sym_LT, - ACTIONS(3833), 1, - anon_sym_LBRACE, - STATE(932), 1, - sym_enum_variant_list, - STATE(1660), 1, + STATE(266), 1, + sym_field_declaration_list, + STATE(1744), 1, sym_type_parameters, - STATE(2001), 1, + STATE(2139), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60294] = 7, - ACTIONS(3516), 1, + [56386] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3765), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3835), 1, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3925), 1, anon_sym_SEMI, - ACTIONS(3837), 1, - anon_sym_DASH_GT, - STATE(312), 1, + STATE(757), 1, sym_block, - STATE(1921), 1, + STATE(1950), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60317] = 7, - ACTIONS(3516), 1, + [56409] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3839), 1, + ACTIONS(3927), 1, anon_sym_SEMI, - ACTIONS(3841), 1, + ACTIONS(3929), 1, anon_sym_DASH_GT, - STATE(929), 1, + STATE(325), 1, sym_block, - STATE(1905), 1, + STATE(1945), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60340] = 7, - ACTIONS(3516), 1, + [56432] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(3769), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - STATE(264), 1, - sym_enum_variant_list, - STATE(1740), 1, - sym_type_parameters, - STATE(1999), 1, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3931), 1, + anon_sym_SEMI, + STATE(448), 1, + sym_block, + STATE(1915), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60363] = 7, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3244), 1, - anon_sym_COMMA, - ACTIONS(3246), 1, - anon_sym_GT, - ACTIONS(3608), 1, + [56455] = 7, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, anon_sym_COLON, - STATE(1947), 1, + STATE(833), 1, + sym_declaration_list, + STATE(1704), 1, sym_trait_bounds, - STATE(1964), 1, - aux_sym_type_parameters_repeat1, + STATE(2142), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60386] = 7, - ACTIONS(3516), 1, + [56478] = 7, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(3833), 1, + ACTIONS(3681), 1, + anon_sym_COLON, + STATE(268), 1, + sym_declaration_list, + STATE(1742), 1, + sym_trait_bounds, + STATE(2146), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56501] = 7, + ACTIONS(3586), 1, anon_sym_LBRACE, - STATE(858), 1, - sym_enum_variant_list, - STATE(1702), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3590), 1, + anon_sym_LT, + STATE(384), 1, + sym_field_declaration_list, + STATE(1772), 1, sym_type_parameters, - STATE(2138), 1, + STATE(2203), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60409] = 7, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3608), 1, + [56524] = 4, + ACTIONS(3933), 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(2394), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [56541] = 7, + ACTIONS(2247), 1, + anon_sym_PLUS, + ACTIONS(3681), 1, anon_sym_COLON, - STATE(416), 1, - sym_declaration_list, - STATE(1727), 1, + ACTIONS(3935), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_GT, + STATE(1890), 1, sym_trait_bounds, - STATE(2142), 1, - sym_where_clause, + STATE(1892), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60432] = 7, - ACTIONS(3516), 1, + [56564] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(3843), 1, + ACTIONS(3939), 1, anon_sym_SEMI, - STATE(784), 1, + STATE(748), 1, sym_block, - STATE(1898), 1, + STATE(1949), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60455] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3845), 1, - anon_sym_SEMI, - STATE(736), 1, - sym_block, - STATE(1894), 1, - sym_where_clause, + [56587] = 5, + ACTIONS(3913), 1, + anon_sym_COLON, + ACTIONS(3941), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60478] = 7, - ACTIONS(3516), 1, + 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, anon_sym_where, - ACTIONS(3765), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(3847), 1, + ACTIONS(3943), 1, anon_sym_SEMI, - STATE(365), 1, + STATE(814), 1, sym_block, - STATE(1818), 1, + STATE(1960), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60501] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3849), 1, - anon_sym_SEMI, - STATE(766), 1, - sym_block, - STATE(1892), 1, - sym_where_clause, + [56629] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60524] = 7, - ACTIONS(3516), 1, + ACTIONS(2564), 2, + 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(3765), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(3851), 1, + ACTIONS(3945), 1, anon_sym_SEMI, - STATE(408), 1, + STATE(881), 1, sym_block, - STATE(1920), 1, + STATE(1975), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60547] = 7, - ACTIONS(3518), 1, + [56669] = 7, + ACTIONS(3330), 1, + anon_sym_EQ, + ACTIONS(3681), 1, + anon_sym_COLON, + ACTIONS(3947), 1, + anon_sym_COMMA, + ACTIONS(3949), 1, + anon_sym_GT, + STATE(1894), 1, + sym_trait_bounds, + STATE(2007), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56692] = 7, + ACTIONS(3590), 1, anon_sym_LT, - ACTIONS(3608), 1, + ACTIONS(3681), 1, anon_sym_COLON, - ACTIONS(3853), 1, + ACTIONS(3951), 1, anon_sym_SEMI, - ACTIONS(3855), 1, + ACTIONS(3953), 1, anon_sym_EQ, - STATE(2303), 1, - sym_trait_bounds, - STATE(2374), 1, + STATE(2338), 1, sym_type_parameters, + STATE(2339), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60570] = 7, - ACTIONS(3089), 1, + [56715] = 7, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3590), 1, + anon_sym_LT, + ACTIONS(3909), 1, anon_sym_LBRACE, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3857), 1, - sym_identifier, - ACTIONS(3859), 1, - anon_sym_STAR, - STATE(1763), 1, - sym_use_list, - STATE(2268), 1, - sym_type_arguments, + STATE(257), 1, + sym_enum_variant_list, + STATE(1756), 1, + sym_type_parameters, + STATE(2128), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60593] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3608), 1, + [56738] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3398), 2, anon_sym_COLON, - STATE(912), 1, - sym_declaration_list, - STATE(1662), 1, - sym_trait_bounds, - STATE(1991), 1, - sym_where_clause, + anon_sym_PIPE, + ACTIONS(2564), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [56753] = 6, + ACTIONS(2995), 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(3), 2, sym_block_comment, sym_line_comment, - [60616] = 7, - ACTIONS(3514), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(372), 1, - sym_field_declaration_list, - STATE(1713), 1, - sym_type_parameters, - STATE(2171), 1, - sym_where_clause, + ACTIONS(2394), 2, + 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, - [60639] = 5, - ACTIONS(3863), 1, - anon_sym_COLON, - ACTIONS(3865), 1, + STATE(2066), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56795] = 4, + ACTIONS(3941), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3861), 2, + ACTIONS(2394), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [60658] = 7, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3857), 1, - sym_identifier, - ACTIONS(3859), 1, - anon_sym_STAR, - STATE(1763), 1, - sym_use_list, - STATE(2255), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60681] = 7, - ACTIONS(3516), 1, + [56812] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3518), 1, + ACTIONS(3590), 1, anon_sym_LT, - ACTIONS(3554), 1, + ACTIONS(3594), 1, anon_sym_LBRACE, - STATE(809), 1, + STATE(858), 1, sym_field_declaration_list, - STATE(1684), 1, + STATE(1702), 1, sym_type_parameters, - STATE(2101), 1, + STATE(2151), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60704] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3867), 1, - anon_sym_SEMI, - STATE(334), 1, - sym_block, - STATE(1758), 1, - sym_where_clause, + [56835] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60727] = 7, - ACTIONS(3516), 1, + ACTIONS(3474), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2530), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [56850] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3765), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3869), 1, + ACTIONS(3955), 1, anon_sym_SEMI, - ACTIONS(3871), 1, + ACTIONS(3957), 1, anon_sym_DASH_GT, - STATE(320), 1, + STATE(294), 1, sym_block, - STATE(1765), 1, + STATE(1861), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60750] = 4, + [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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2494), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3408), 2, + [56896] = 7, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3822), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60767] = 7, - ACTIONS(3608), 1, + STATE(904), 1, + sym_declaration_list, + STATE(1776), 1, + sym_trait_bounds, + STATE(2096), 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(3873), 1, + ACTIONS(3959), 1, + anon_sym_SEMI, + ACTIONS(3961), 1, + anon_sym_EQ, + STATE(2380), 1, + sym_trait_bounds, + STATE(2436), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56942] = 7, + ACTIONS(3681), 1, + anon_sym_COLON, + ACTIONS(3963), 1, anon_sym_COMMA, - ACTIONS(3875), 1, + ACTIONS(3965), 1, anon_sym_GT, - STATE(1893), 1, + STATE(1879), 1, aux_sym_for_lifetimes_repeat1, - STATE(1977), 1, + STATE(1890), 1, sym_trait_bounds, - STATE(1984), 1, + STATE(1892), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60790] = 7, - ACTIONS(3516), 1, + [56965] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3877), 1, + ACTIONS(3967), 1, anon_sym_SEMI, - ACTIONS(3879), 1, + ACTIONS(3969), 1, anon_sym_DASH_GT, - STATE(741), 1, + STATE(901), 1, sym_block, - STATE(1954), 1, + STATE(1983), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60813] = 6, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(363), 1, - sym_declaration_list, - STATE(2178), 1, - sym_where_clause, + [56988] = 5, + ACTIONS(3380), 1, + anon_sym_COLON, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3478), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60833] = 6, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3157), 1, - anon_sym_COLON_COLON, - STATE(821), 1, - sym_parameters, - STATE(1266), 1, - sym_type_arguments, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57006] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60853] = 6, - ACTIONS(3502), 1, + ACTIONS(3971), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [57018] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(420), 1, + STATE(923), 1, sym_declaration_list, - STATE(2074), 1, + STATE(2076), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60873] = 2, + [57038] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3881), 5, + ACTIONS(3973), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [60885] = 2, + [57050] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3883), 5, + ACTIONS(3975), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [60897] = 6, - ACTIONS(3502), 1, + [57062] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(335), 1, + STATE(873), 1, sym_declaration_list, - STATE(2170), 1, + STATE(2126), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60917] = 4, - ACTIONS(3238), 1, + [57082] = 4, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(3582), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, - anon_sym_LBRACE, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3977), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57098] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3979), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [57110] = 4, + ACTIONS(3981), 1, + anon_sym_RBRACK, + 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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3984), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - [60933] = 6, - ACTIONS(3516), 1, + anon_sym_EQ, + anon_sym_COMMA, + [57138] = 5, + ACTIONS(3986), 1, + 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, + anon_sym_COLON, + anon_sym_PIPE, + [57156] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3992), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(730), 1, - sym_declaration_list, - STATE(2023), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [57168] = 4, + ACTIONS(3996), 1, + anon_sym_as, + ACTIONS(3998), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60953] = 4, - ACTIONS(638), 1, + ACTIONS(3994), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [57184] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4000), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [57196] = 2, + 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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4004), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [57220] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3885), 1, - anon_sym_if, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(375), 1, + sym_declaration_list, + STATE(2053), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(235), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [60969] = 6, - ACTIONS(3502), 1, + [57240] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(278), 1, + STATE(373), 1, sym_declaration_list, - STATE(2116), 1, + STATE(2042), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60989] = 5, - ACTIONS(770), 1, + [57260] = 5, + ACTIONS(4006), 1, anon_sym_RPAREN, - ACTIONS(3887), 1, + ACTIONS(4008), 1, anon_sym_COMMA, - STATE(1761), 1, + STATE(1854), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 2, + ACTIONS(3213), 2, anon_sym_COLON, anon_sym_PIPE, - [61007] = 6, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, - anon_sym_COLON_COLON, - STATE(1266), 1, - sym_type_arguments, - STATE(1294), 1, - sym_parameters, + [57278] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61027] = 4, - ACTIONS(3785), 1, - anon_sym_COLON_COLON, + ACTIONS(4010), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [57290] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3861), 2, + ACTIONS(3708), 5, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - [61043] = 4, - ACTIONS(3238), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [57302] = 4, + ACTIONS(3312), 1, anon_sym_COLON_COLON, - ACTIONS(3659), 1, + ACTIONS(3733), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2394), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [61059] = 6, - ACTIONS(3502), 1, + [57318] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(443), 1, + STATE(256), 1, sym_declaration_list, - STATE(2129), 1, + STATE(2127), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61079] = 6, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, + [57338] = 4, + 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(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, anon_sym_PLUS, - STATE(923), 1, - sym_declaration_list, - STATE(1995), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61099] = 6, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, + 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(3767), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(823), 1, + STATE(911), 1, sym_declaration_list, - STATE(2118), 1, + STATE(2093), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61119] = 6, - ACTIONS(3502), 1, + [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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57430] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(247), 1, + STATE(300), 1, sym_declaration_list, - STATE(2120), 1, + STATE(2220), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61139] = 3, + [57450] = 5, + ACTIONS(3330), 1, + anon_sym_EQ, + ACTIONS(3681), 1, + anon_sym_COLON, + STATE(1894), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3338), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2650), 3, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(4016), 2, anon_sym_COMMA, - [61153] = 2, + anon_sym_GT, + [57468] = 6, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(315), 1, + sym_declaration_list, + STATE(2206), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3889), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [57488] = 6, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [61165] = 4, - ACTIONS(2650), 1, + ACTIONS(3871), 1, anon_sym_PLUS, + STATE(827), 1, + sym_declaration_list, + STATE(2170), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3338), 2, + [57508] = 6, + ACTIONS(3681), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3891), 2, - anon_sym_RPAREN, + ACTIONS(3935), 1, anon_sym_COMMA, - [61181] = 5, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3608), 1, - anon_sym_COLON, - STATE(1947), 1, + ACTIONS(3937), 1, + anon_sym_GT, + STATE(1890), 1, sym_trait_bounds, + STATE(1892), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3894), 2, - anon_sym_COMMA, - anon_sym_GT, - [61199] = 2, + [57528] = 4, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, + ACTIONS(3697), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3896), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(2394), 3, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [61211] = 4, + [57544] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3898), 1, + ACTIONS(4018), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(52), 3, + STATE(43), 3, sym_if_expression, sym_if_let_expression, sym_block, - [61227] = 6, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3792), 1, - anon_sym_GT, - STATE(1977), 1, - sym_trait_bounds, - STATE(1984), 1, - aux_sym_type_parameters_repeat1, + [57560] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61247] = 2, + ACTIONS(4020), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + 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(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3900), 5, + ACTIONS(3994), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [61259] = 6, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(260), 1, - sym_declaration_list, - STATE(2181), 1, - sym_where_clause, + [57588] = 5, + ACTIONS(772), 1, + anon_sym_RPAREN, + ACTIONS(4024), 1, + anon_sym_COMMA, + STATE(1976), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61279] = 6, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3157), 1, - anon_sym_COLON_COLON, - ACTIONS(3240), 1, + ACTIONS(3213), 2, anon_sym_COLON, - STATE(1266), 1, - sym_type_arguments, - STATE(1830), 1, - sym_trait_bounds, + anon_sym_PIPE, + [57606] = 5, + ACTIONS(4026), 1, + anon_sym_RPAREN, + ACTIONS(4028), 1, + anon_sym_COMMA, + STATE(2022), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61299] = 6, - ACTIONS(3516), 1, + ACTIONS(3213), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57624] = 4, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, + ACTIONS(3685), 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, - ACTIONS(3540), 1, + [57640] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(906), 1, + STATE(423), 1, sym_declaration_list, - STATE(2110), 1, + STATE(2105), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61319] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3636), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, + [57660] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [61331] = 6, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(903), 1, + STATE(299), 1, sym_declaration_list, - STATE(2109), 1, + STATE(2243), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61351] = 4, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, - ACTIONS(3646), 1, - anon_sym_for, + [57680] = 6, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(790), 1, + sym_declaration_list, + STATE(2154), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + [57700] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3588), 1, anon_sym_where, - [61367] = 6, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3902), 1, - anon_sym_COMMA, - ACTIONS(3904), 1, - anon_sym_GT, - STATE(1965), 1, - aux_sym_type_parameters_repeat1, - STATE(1977), 1, - sym_trait_bounds, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(347), 1, + sym_declaration_list, + STATE(2120), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61387] = 6, - ACTIONS(3502), 1, + [57720] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(358), 1, + STATE(426), 1, sym_declaration_list, - STATE(2154), 1, + STATE(2123), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61407] = 2, + [57740] = 5, + 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(3906), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [61419] = 6, - ACTIONS(3502), 1, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57758] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(421), 1, + STATE(789), 1, sym_declaration_list, - STATE(2068), 1, + STATE(2155), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61439] = 4, - ACTIONS(279), 1, + [57778] = 4, + ACTIONS(644), 1, anon_sym_LBRACE, - ACTIONS(3908), 1, + ACTIONS(4030), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(960), 3, + STATE(217), 3, sym_if_expression, sym_if_let_expression, sym_block, - [61455] = 5, - ACTIONS(3910), 1, - anon_sym_RPAREN, - ACTIONS(3912), 1, - anon_sym_COMMA, - STATE(1970), 1, - aux_sym_parameters_repeat1, + [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, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - [61473] = 5, - ACTIONS(3914), 1, - anon_sym_RPAREN, - ACTIONS(3916), 1, - anon_sym_COMMA, - STATE(1836), 1, - aux_sym_parameters_repeat1, + [57814] = 4, + ACTIONS(4034), 1, + anon_sym_as, + ACTIONS(4036), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - [61491] = 4, - ACTIONS(3238), 1, + ACTIONS(4032), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [57830] = 4, + ACTIONS(3312), 1, anon_sym_COLON_COLON, - ACTIONS(3631), 1, + ACTIONS(3731), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2394), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [61507] = 6, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(273), 1, - sym_declaration_list, - STATE(2107), 1, - sym_where_clause, + [57846] = 6, + ACTIONS(2362), 1, + anon_sym_LPAREN, + ACTIONS(3209), 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, - [61527] = 4, - ACTIONS(3891), 1, - anon_sym_RBRACK, + [57866] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3338), 2, - anon_sym_COMMA, + ACTIONS(3390), 2, + anon_sym_COLON, anon_sym_PIPE, - [61543] = 6, - ACTIONS(3918), 1, + ACTIONS(2880), 3, anon_sym_RPAREN, - ACTIONS(3920), 1, - anon_sym_COLON, - ACTIONS(3922), 1, + anon_sym_PLUS, anon_sym_COMMA, - ACTIONS(3924), 1, - anon_sym_PIPE, - STATE(1865), 1, - aux_sym_tuple_pattern_repeat1, + [57880] = 4, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, + ACTIONS(3679), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61563] = 6, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, + ACTIONS(2394), 3, anon_sym_LBRACE, - ACTIONS(3767), 1, anon_sym_PLUS, - STATE(761), 1, - sym_declaration_list, - STATE(2090), 1, - sym_where_clause, + anon_sym_where, + [57896] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61583] = 6, - ACTIONS(3516), 1, + ACTIONS(4038), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3540), 1, + anon_sym_EQ, + anon_sym_COMMA, + [57908] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(758), 1, + STATE(420), 1, sym_declaration_list, - STATE(2087), 1, + STATE(2232), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61603] = 6, - ACTIONS(3502), 1, + [57928] = 4, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, + ACTIONS(3677), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2394), 3, anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3767), 1, anon_sym_PLUS, - STATE(306), 1, - sym_declaration_list, - STATE(2070), 1, - sym_where_clause, + anon_sym_where, + [57944] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61623] = 6, - ACTIONS(3516), 1, + ACTIONS(4040), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3540), 1, + anon_sym_EQ, + anon_sym_COMMA, + [57956] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(910), 1, + STATE(857), 1, sym_declaration_list, - STATE(1988), 1, + STATE(2037), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61643] = 4, - ACTIONS(3829), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3861), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61659] = 2, + [57976] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3926), 5, + ACTIONS(4042), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [61671] = 2, + [57988] = 4, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(4044), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3928), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [61683] = 4, - ACTIONS(3829), 1, + STATE(979), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [58004] = 4, + ACTIONS(3312), 1, anon_sym_COLON_COLON, + ACTIONS(3675), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3930), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61699] = 6, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, + ACTIONS(2394), 3, anon_sym_LBRACE, - ACTIONS(3767), 1, anon_sym_PLUS, - STATE(913), 1, - sym_declaration_list, - STATE(2034), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61719] = 6, - ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3540), 1, + [58020] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(909), 1, + STATE(302), 1, sym_declaration_list, - STATE(2080), 1, + STATE(2224), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61739] = 6, - ACTIONS(3502), 1, + [58040] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(245), 1, + STATE(944), 1, sym_declaration_list, - STATE(2102), 1, + STATE(2040), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61759] = 2, + [58060] = 6, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3209), 1, + anon_sym_COLON_COLON, + ACTIONS(3211), 1, + anon_sym_LT2, + STATE(1285), 1, + sym_type_arguments, + STATE(1301), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3932), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [61771] = 4, - ACTIONS(3785), 1, + [58080] = 4, + ACTIONS(3312), 1, anon_sym_COLON_COLON, + ACTIONS(3655), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3930), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61787] = 5, - ACTIONS(758), 1, - anon_sym_RPAREN, - ACTIONS(3934), 1, - anon_sym_COMMA, - STATE(1934), 1, - aux_sym_parameters_repeat1, + ACTIONS(2394), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [58096] = 6, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(860), 1, + sym_declaration_list, + STATE(2132), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - [61805] = 4, - ACTIONS(3938), 1, + [58116] = 4, + ACTIONS(3996), 1, anon_sym_as, - ACTIONS(3940), 1, + ACTIONS(4046), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3936), 3, + ACTIONS(3994), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61821] = 4, - ACTIONS(3944), 1, - anon_sym_as, - ACTIONS(3946), 1, - anon_sym_COLON_COLON, + [58132] = 6, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 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, - ACTIONS(3942), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61837] = 4, - ACTIONS(3944), 1, - anon_sym_as, - ACTIONS(3948), 1, + [58152] = 4, + ACTIONS(3941), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3942), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3223), 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, + anon_sym_RPAREN, + ACTIONS(4048), 1, anon_sym_COMMA, - [61853] = 2, + STATE(2011), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3950), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3213), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58186] = 6, + ACTIONS(4050), 1, + anon_sym_RPAREN, + ACTIONS(4052), 1, + anon_sym_COLON, + ACTIONS(4054), 1, anon_sym_COMMA, - [61865] = 4, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, - ACTIONS(3580), 1, - anon_sym_for, + ACTIONS(4056), 1, + anon_sym_PIPE, + STATE(1867), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + [58206] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3588), 1, anon_sym_where, - [61881] = 4, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, - ACTIONS(3590), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2356), 3, - anon_sym_LBRACE, + ACTIONS(3871), 1, anon_sym_PLUS, - anon_sym_where, - [61897] = 5, - ACTIONS(3952), 1, - anon_sym_RPAREN, - ACTIONS(3955), 1, - anon_sym_COMMA, - STATE(1836), 1, - aux_sym_parameters_repeat1, + STATE(938), 1, + sym_declaration_list, + STATE(2078), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - [61915] = 4, - ACTIONS(3238), 1, + [58226] = 4, + ACTIONS(3941), 1, anon_sym_COLON_COLON, - ACTIONS(3578), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3863), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58242] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3588), 1, anon_sym_where, - [61931] = 4, - ACTIONS(3944), 1, - anon_sym_as, - ACTIONS(3958), 1, - anon_sym_COLON_COLON, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(418), 1, + sym_declaration_list, + STATE(2235), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3942), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61947] = 2, + [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(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3960), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + [58279] = 4, + ACTIONS(4060), 1, anon_sym_COMMA, - [61959] = 4, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, - ACTIONS(3629), 1, - anon_sym_for, + STATE(1693), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [61975] = 6, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(828), 1, - sym_declaration_list, - STATE(2049), 1, - sym_where_clause, + 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(3), 2, sym_block_comment, sym_line_comment, - [61995] = 6, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, + [58311] = 4, + ACTIONS(3318), 1, + anon_sym_COLON_COLON, + ACTIONS(4063), 1, + anon_sym_COLON, + 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, + anon_sym_LPAREN, + ACTIONS(4067), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(881), 1, - sym_declaration_list, - STATE(2037), 1, - sym_where_clause, + ACTIONS(4069), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62015] = 5, - ACTIONS(770), 1, + [58343] = 5, + ACTIONS(778), 1, anon_sym_RPAREN, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(3887), 1, + ACTIONS(4048), 1, anon_sym_COMMA, - STATE(1761), 1, + STATE(2011), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62032] = 5, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3962), 1, - anon_sym_RPAREN, - ACTIONS(3964), 1, - anon_sym_COMMA, - STATE(1859), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [58360] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62049] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, + ACTIONS(4058), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [58373] = 5, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(807), 1, - sym_declaration_list, - STATE(2051), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62066] = 5, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3833), 1, - anon_sym_LBRACE, - STATE(791), 1, - sym_enum_variant_list, + STATE(939), 1, + sym_declaration_list, STATE(2059), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62083] = 5, - ACTIONS(758), 1, - anon_sym_RPAREN, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3934), 1, - anon_sym_COMMA, - STATE(1934), 1, - aux_sym_parameters_repeat1, + [58390] = 5, + ACTIONS(3402), 1, + anon_sym_PIPE, + ACTIONS(4071), 1, + anon_sym_SEMI, + ACTIONS(4073), 1, + anon_sym_COLON, + ACTIONS(4075), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62100] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, + [58407] = 5, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(835), 1, + ACTIONS(3588), 1, + anon_sym_where, + STATE(459), 1, sym_declaration_list, - STATE(2046), 1, + STATE(2167), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62117] = 5, - ACTIONS(3516), 1, + [58424] = 5, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(3594), 1, anon_sym_LBRACE, - STATE(780), 1, + STATE(943), 1, sym_field_declaration_list, - STATE(2064), 1, + STATE(2231), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62134] = 5, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3966), 1, - anon_sym_RPAREN, - ACTIONS(3968), 1, - anon_sym_COMMA, - STATE(1771), 1, - aux_sym_tuple_pattern_repeat1, + [58441] = 5, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_LT, + STATE(1616), 1, + sym_parameters, + STATE(2185), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62151] = 3, + [58458] = 5, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + STATE(777), 1, + sym_declaration_list, + STATE(2160), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3970), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62164] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [58475] = 4, + ACTIONS(3318), 1, + anon_sym_COLON_COLON, + ACTIONS(3739), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3972), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [62177] = 5, - ACTIONS(3153), 1, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58490] = 5, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3518), 1, + ACTIONS(3590), 1, anon_sym_LT, - STATE(1539), 1, + STATE(1557), 1, sym_parameters, - STATE(2071), 1, + STATE(2043), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62194] = 5, - ACTIONS(2185), 1, - anon_sym_PLUS, - ACTIONS(3974), 1, - anon_sym_COMMA, - ACTIONS(3976), 1, - anon_sym_GT, - STATE(1960), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62211] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(898), 1, - sym_line_comment, - ACTIONS(3978), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(3980), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [62226] = 5, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3974), 1, - anon_sym_COMMA, - ACTIONS(3976), 1, - anon_sym_GT, - STATE(1960), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62243] = 4, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3982), 1, + [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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [62258] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(788), 1, - sym_declaration_list, - STATE(2091), 1, - sym_where_clause, + [58524] = 5, + ACTIONS(3402), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_SEMI, + ACTIONS(4079), 1, + anon_sym_COLON, + ACTIONS(4081), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62275] = 5, - ACTIONS(3502), 1, + [58541] = 5, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - STATE(401), 1, + STATE(405), 1, sym_declaration_list, - STATE(2113), 1, + STATE(2216), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62292] = 5, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3910), 1, - anon_sym_RPAREN, - ACTIONS(3912), 1, + [58558] = 4, + ACTIONS(4083), 1, anon_sym_COMMA, - STATE(1970), 1, - aux_sym_parameters_repeat1, + STATE(1714), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62309] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, + ACTIONS(2804), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [58573] = 5, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(862), 1, + ACTIONS(3588), 1, + anon_sym_where, + STATE(269), 1, sym_declaration_list, - STATE(2096), 1, + STATE(2153), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62326] = 4, - ACTIONS(3984), 1, - anon_sym_DQUOTE, - STATE(1676), 1, - aux_sym_string_literal_repeat1, + [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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3986), 2, - sym__string_content, - sym_escape_sequence, - [62341] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(898), 1, - sym_line_comment, - ACTIONS(3989), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(3991), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [62356] = 3, - ACTIONS(3993), 1, - anon_sym_COLON, + [58607] = 5, + ACTIONS(4012), 1, + anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_GT, + ACTIONS(4085), 1, + anon_sym_EQ, + STATE(2009), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3370), 3, - anon_sym_RPAREN, + [58624] = 4, + ACTIONS(4089), 1, anon_sym_COMMA, - anon_sym_PIPE, - [62369] = 4, - ACTIONS(3863), 1, - anon_sym_COLON, - ACTIONS(3865), 1, - anon_sym_COLON_COLON, + STATE(1714), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62384] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, + ACTIONS(4087), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(942), 1, - sym_declaration_list, - STATE(2115), 1, - sym_where_clause, + [58639] = 4, + ACTIONS(4094), 1, + anon_sym_COMMA, + STATE(1710), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62401] = 4, - ACTIONS(3608), 1, - anon_sym_COLON, - STATE(1977), 1, - sym_trait_bounds, + ACTIONS(4092), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [58654] = 3, + ACTIONS(4096), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3995), 2, - anon_sym_COMMA, - anon_sym_GT, - [62416] = 4, - ACTIONS(3997), 1, - anon_sym_DQUOTE, - STATE(1683), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, + ACTIONS(4098), 3, + sym_self, + sym_super, + sym_crate, + [58667] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(986), 1, sym_line_comment, - ACTIONS(3999), 2, - sym__string_content, - sym_escape_sequence, - [62431] = 4, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - STATE(1676), 1, - aux_sym_string_literal_repeat1, + ACTIONS(4100), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4102), 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, sym_block_comment, sym_line_comment, - ACTIONS(4003), 2, - sym__string_content, - sym_escape_sequence, - [62446] = 5, - ACTIONS(3516), 1, + [58699] = 5, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(3873), 1, anon_sym_LBRACE, - STATE(920), 1, - sym_field_declaration_list, - STATE(1993), 1, + STATE(889), 1, + sym_enum_variant_list, + STATE(2094), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62463] = 5, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4005), 1, - anon_sym_RBRACK, - ACTIONS(4007), 1, + [58716] = 5, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4108), 1, + anon_sym_RPAREN, + ACTIONS(4110), 1, anon_sym_COMMA, - STATE(1810), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1919), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62480] = 4, + [58733] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(898), 1, + ACTIONS(986), 1, sym_line_comment, - ACTIONS(4009), 1, + ACTIONS(4112), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4011), 3, + ACTIONS(4114), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [62495] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(892), 1, - sym_declaration_list, - STATE(1990), 1, - sym_where_clause, + [58748] = 4, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62512] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(898), 1, - sym_line_comment, - ACTIONS(4013), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4015), 3, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58763] = 5, + ACTIONS(3871), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [62527] = 5, - ACTIONS(3370), 1, - anon_sym_PIPE, - ACTIONS(4017), 1, - anon_sym_SEMI, - ACTIONS(4019), 1, - anon_sym_COLON, - ACTIONS(4021), 1, - anon_sym_EQ, + ACTIONS(4006), 1, + anon_sym_RPAREN, + ACTIONS(4008), 1, + anon_sym_COMMA, + STATE(1854), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62544] = 5, - ACTIONS(2302), 1, + [58780] = 5, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3149), 1, - anon_sym_LT2, - STATE(826), 1, + ACTIONS(3590), 1, + anon_sym_LT, + STATE(1558), 1, sym_parameters, - STATE(1273), 1, - sym_type_arguments, + STATE(2163), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62561] = 5, - ACTIONS(4023), 1, - anon_sym_LPAREN, - ACTIONS(4025), 1, + [58797] = 5, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(4027), 1, - anon_sym_LBRACK, - STATE(1316), 1, - sym_token_tree, + ACTIONS(3588), 1, + anon_sym_where, + STATE(915), 1, + sym_declaration_list, + STATE(2090), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62578] = 5, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3857), 1, - sym_identifier, - ACTIONS(3859), 1, - anon_sym_STAR, - STATE(1763), 1, - sym_use_list, + [58814] = 4, + ACTIONS(3318), 1, + anon_sym_COLON_COLON, + ACTIONS(3380), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62595] = 3, - ACTIONS(4029), 1, - anon_sym_in, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58829] = 5, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_LT, + STATE(1587), 1, + sym_parameters, + STATE(2209), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4031), 3, - sym_self, - sym_super, - sym_crate, - [62608] = 5, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_SEMI, - ACTIONS(4035), 1, - anon_sym_COLON, - ACTIONS(4037), 1, + [58846] = 5, + ACTIONS(3935), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_GT, + ACTIONS(4085), 1, anon_sym_EQ, + STATE(1892), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62625] = 4, - ACTIONS(3800), 1, + [58863] = 4, + ACTIONS(3681), 1, anon_sym_COLON, - ACTIONS(3865), 1, - anon_sym_COLON_COLON, + STATE(1890), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62640] = 4, - ACTIONS(4041), 1, + ACTIONS(4116), 2, anon_sym_COMMA, - STATE(1696), 1, - aux_sym_tuple_pattern_repeat1, + anon_sym_GT, + [58878] = 4, + ACTIONS(3681), 1, + anon_sym_COLON, + STATE(1890), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4039), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [62655] = 5, - ACTIONS(3902), 1, + ACTIONS(4118), 2, anon_sym_COMMA, - ACTIONS(3904), 1, anon_sym_GT, - ACTIONS(4044), 1, - anon_sym_EQ, - STATE(1965), 1, - aux_sym_type_parameters_repeat1, + [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, - [62672] = 5, - ACTIONS(3920), 1, - anon_sym_COLON, - ACTIONS(4046), 1, - anon_sym_COMMA, - ACTIONS(4048), 1, - anon_sym_PIPE, - STATE(1923), 1, - aux_sym_closure_parameters_repeat1, + [58910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62689] = 5, - ACTIONS(3767), 1, + ACTIONS(3213), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4127), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58923] = 5, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4050), 1, + ACTIONS(4129), 1, anon_sym_RPAREN, - ACTIONS(4052), 1, + ACTIONS(4131), 1, anon_sym_COMMA, - STATE(1961), 1, + STATE(1911), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62706] = 5, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(4054), 1, - sym_identifier, - ACTIONS(4056), 1, - anon_sym_STAR, - STATE(1753), 1, - sym_use_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62723] = 4, - ACTIONS(3608), 1, + [58940] = 4, + ACTIONS(3867), 1, + anon_sym_COLON_COLON, + ACTIONS(3913), 1, anon_sym_COLON, - STATE(1977), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4058), 2, - anon_sym_COMMA, - anon_sym_GT, - [62738] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3833), 1, - anon_sym_LBRACE, - STATE(746), 1, - sym_enum_variant_list, - STATE(2056), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62755] = 5, - ACTIONS(4061), 1, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58955] = 5, + ACTIONS(4121), 1, anon_sym_LPAREN, - ACTIONS(4063), 1, + ACTIONS(4123), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4125), 1, anon_sym_LBRACK, - STATE(833), 1, + STATE(1038), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62772] = 4, - ACTIONS(4067), 1, + [58972] = 4, + ACTIONS(4133), 1, anon_sym_DQUOTE, - STATE(1676), 1, + STATE(1749), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4003), 2, + ACTIONS(4135), 2, sym__string_content, sym_escape_sequence, - [62787] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, + [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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59004] = 4, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(4137), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4039), 3, + STATE(1077), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [59019] = 5, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + STATE(905), 1, + sym_declaration_list, + STATE(2095), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59036] = 5, + ACTIONS(772), 1, anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4024), 1, anon_sym_COMMA, - [62800] = 5, - ACTIONS(3502), 1, + STATE(1976), 1, + aux_sym_parameters_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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59070] = 5, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - STATE(300), 1, + STATE(312), 1, sym_declaration_list, - STATE(2114), 1, + STATE(2211), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62817] = 5, - ACTIONS(4069), 1, - anon_sym_LPAREN, - ACTIONS(4071), 1, + [59087] = 5, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3873), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_LBRACK, - STATE(1043), 1, - sym_token_tree, + STATE(899), 1, + sym_enum_variant_list, + STATE(2103), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62834] = 4, - ACTIONS(4075), 1, + [59104] = 5, + ACTIONS(3586), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + STATE(336), 1, + sym_field_declaration_list, + STATE(2152), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59121] = 4, + ACTIONS(4139), 1, anon_sym_DQUOTE, - STATE(1676), 1, + STATE(1788), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4003), 2, + ACTIONS(4141), 2, sym__string_content, sym_escape_sequence, - [62849] = 5, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4077), 1, - anon_sym_RPAREN, - ACTIONS(4079), 1, - anon_sym_COMMA, - STATE(1953), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [59136] = 4, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62866] = 5, - ACTIONS(3767), 1, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59151] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(986), 1, + sym_line_comment, + ACTIONS(4143), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4145), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59166] = 5, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(4147), 1, anon_sym_RPAREN, - ACTIONS(4083), 1, + ACTIONS(4149), 1, anon_sym_COMMA, - STATE(1746), 1, + STATE(2000), 1, aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62883] = 4, - ACTIONS(4087), 1, - anon_sym_COMMA, - STATE(1711), 1, - aux_sym_where_clause_repeat1, + [59183] = 4, + ACTIONS(4151), 1, + anon_sym_DQUOTE, + STATE(1749), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4085), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [62898] = 5, - ACTIONS(3924), 1, + ACTIONS(4153), 2, + sym__string_content, + sym_escape_sequence, + [59198] = 5, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4090), 1, - anon_sym_SEMI, - ACTIONS(4092), 1, - anon_sym_COLON, - ACTIONS(4094), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62915] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - STATE(432), 1, - sym_field_declaration_list, - STATE(2136), 1, - sym_where_clause, + ACTIONS(4156), 1, + anon_sym_RPAREN, + ACTIONS(4158), 1, + anon_sym_COMMA, + STATE(1959), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62932] = 5, - ACTIONS(3153), 1, + [59215] = 5, + ACTIONS(4160), 1, anon_sym_LPAREN, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(1586), 1, - sym_parameters, - STATE(2151), 1, - sym_type_parameters, + ACTIONS(4162), 1, + anon_sym_LBRACE, + ACTIONS(4164), 1, + anon_sym_LBRACK, + STATE(793), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62949] = 5, - ACTIONS(4096), 1, + [59232] = 5, + ACTIONS(4160), 1, anon_sym_LPAREN, - ACTIONS(4098), 1, + ACTIONS(4162), 1, anon_sym_LBRACE, - ACTIONS(4100), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - STATE(63), 1, + STATE(794), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62966] = 3, - ACTIONS(4102), 1, - anon_sym_in, + [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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4104), 3, - sym_self, - sym_super, - sym_crate, - [62979] = 4, - ACTIONS(4108), 1, + [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, + anon_sym_PIPE, + ACTIONS(4176), 1, + anon_sym_RBRACK, + ACTIONS(4178), 1, anon_sym_COMMA, - STATE(1719), 1, - aux_sym_where_clause_repeat1, + STATE(1956), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4106), 2, - anon_sym_SEMI, + [59298] = 5, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3909), 1, anon_sym_LBRACE, - [62994] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + STATE(327), 1, + sym_enum_variant_list, + STATE(2166), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4110), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [63007] = 4, - ACTIONS(4112), 1, - anon_sym_COMMA, - STATE(1711), 1, - aux_sym_where_clause_repeat1, + [59315] = 5, + ACTIONS(3588), 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, - ACTIONS(2825), 2, - anon_sym_SEMI, + [59332] = 5, + ACTIONS(3157), 1, anon_sym_LBRACE, - [63022] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + 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, - ACTIONS(4114), 3, - anon_sym_RPAREN, + [59349] = 5, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + STATE(321), 1, + sym_declaration_list, + STATE(2201), 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, - anon_sym_PIPE, - [63035] = 5, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3608), 1, - anon_sym_COLON, - STATE(1273), 1, - sym_type_arguments, - STATE(1826), 1, - sym_trait_bounds, + ACTIONS(4186), 1, + anon_sym_GT, + STATE(1872), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63052] = 5, - ACTIONS(2185), 1, + [59383] = 5, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4116), 1, + ACTIONS(4184), 1, anon_sym_COMMA, - ACTIONS(4118), 1, + ACTIONS(4186), 1, anon_sym_GT, - STATE(1878), 1, + STATE(1872), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63069] = 5, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(1583), 1, - sym_parameters, - STATE(2082), 1, - sym_type_parameters, + [59400] = 4, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3478), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63086] = 5, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - STATE(413), 1, - sym_declaration_list, - STATE(2148), 1, - sym_where_clause, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59415] = 3, + ACTIONS(4188), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63103] = 4, - ACTIONS(4120), 1, - anon_sym_DQUOTE, - STATE(1708), 1, - aux_sym_string_literal_repeat1, + ACTIONS(3402), 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4122), 2, - sym__string_content, - sym_escape_sequence, - [63118] = 5, - ACTIONS(3767), 1, + [59445] = 5, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4116), 1, + ACTIONS(4190), 1, + anon_sym_RPAREN, + ACTIONS(4192), 1, anon_sym_COMMA, - ACTIONS(4118), 1, - anon_sym_GT, - STATE(1878), 1, - aux_sym_type_arguments_repeat1, + STATE(1901), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63135] = 5, - ACTIONS(3502), 1, + [59462] = 5, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - STATE(248), 1, + STATE(836), 1, sym_declaration_list, - STATE(2084), 1, + STATE(2141), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63152] = 5, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(1531), 1, - sym_parameters, - STATE(2122), 1, - sym_type_parameters, + [59479] = 4, + ACTIONS(3865), 1, + anon_sym_COLON, + ACTIONS(3867), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63169] = 5, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - STATE(340), 1, - sym_declaration_list, - STATE(2044), 1, - sym_where_clause, + ACTIONS(3223), 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, + anon_sym_PIPE, + STATE(1898), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63186] = 5, - ACTIONS(4069), 1, - anon_sym_LPAREN, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_LBRACK, - STATE(1786), 1, - sym_token_tree, + [59511] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3213), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4198), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59524] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63203] = 5, - ACTIONS(3918), 1, + ACTIONS(4200), 3, anon_sym_RPAREN, - ACTIONS(3922), 1, anon_sym_COMMA, - ACTIONS(3924), 1, anon_sym_PIPE, - STATE(1865), 1, - aux_sym_tuple_pattern_repeat1, + [59537] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63220] = 5, - ACTIONS(3370), 1, + ACTIONS(4202), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(4124), 1, - anon_sym_SEMI, - ACTIONS(4126), 1, - anon_sym_COLON, - ACTIONS(4128), 1, - anon_sym_EQ, + [59550] = 5, + ACTIONS(3586), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + STATE(262), 1, + sym_field_declaration_list, + STATE(2130), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63237] = 5, - ACTIONS(3149), 1, + [59567] = 5, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1273), 1, + ACTIONS(3681), 1, + anon_sym_COLON, + STATE(1276), 1, sym_type_arguments, - STATE(1296), 1, - sym_parameters, + STATE(1851), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63254] = 5, - ACTIONS(3502), 1, + [59584] = 5, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - STATE(266), 1, + STATE(433), 1, sym_declaration_list, - STATE(2144), 1, + STATE(2174), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63271] = 5, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(1528), 1, - sym_parameters, - STATE(2085), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63288] = 5, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(1554), 1, - sym_parameters, - STATE(2069), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63305] = 5, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3792), 1, - anon_sym_GT, - ACTIONS(4044), 1, + [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, - STATE(1984), 1, - aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63322] = 5, - ACTIONS(3514), 1, + [59618] = 5, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3588), 1, anon_sym_where, - STATE(286), 1, - sym_field_declaration_list, - STATE(2112), 1, + STATE(854), 1, + sym_declaration_list, + STATE(2136), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63339] = 5, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3914), 1, - anon_sym_RPAREN, - ACTIONS(3916), 1, - anon_sym_COMMA, - STATE(1836), 1, - aux_sym_parameters_repeat1, + [59635] = 5, + ACTIONS(4121), 1, + anon_sym_LPAREN, + ACTIONS(4123), 1, + anon_sym_LBRACE, + ACTIONS(4125), 1, + anon_sym_LBRACK, + STATE(1074), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63356] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3769), 1, - anon_sym_LBRACE, - STATE(404), 1, - sym_enum_variant_list, - STATE(2163), 1, - sym_where_clause, + [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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63373] = 3, + [59669] = 5, + ACTIONS(4214), 1, + anon_sym_LPAREN, + ACTIONS(4216), 1, + anon_sym_LBRACE, + ACTIONS(4218), 1, + anon_sym_LBRACK, + STATE(1345), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4130), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63386] = 4, - ACTIONS(4132), 1, + [59686] = 4, + ACTIONS(4220), 1, anon_sym_DQUOTE, - STATE(1704), 1, + STATE(1749), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4134), 2, + ACTIONS(4135), 2, sym__string_content, sym_escape_sequence, - [63401] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3769), 1, + [59701] = 5, + ACTIONS(4214), 1, + anon_sym_LPAREN, + ACTIONS(4216), 1, anon_sym_LBRACE, - STATE(280), 1, - sym_enum_variant_list, - STATE(2152), 1, - sym_where_clause, + ACTIONS(4218), 1, + anon_sym_LBRACK, + STATE(1316), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63418] = 5, - ACTIONS(3767), 1, + [59718] = 5, + ACTIONS(2247), 1, anon_sym_PLUS, - ACTIONS(4136), 1, - anon_sym_RPAREN, - ACTIONS(4138), 1, + ACTIONS(4210), 1, anon_sym_COMMA, - STATE(1928), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4212), 1, + anon_sym_GT, + STATE(2013), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63435] = 3, - ACTIONS(3767), 1, + [59735] = 3, + ACTIONS(3871), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4140), 3, + ACTIONS(4222), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [63448] = 4, - ACTIONS(2089), 1, + [59748] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4224), 3, anon_sym_RPAREN, - ACTIONS(4142), 1, anon_sym_COMMA, - STATE(1788), 1, - aux_sym_ordered_field_declaration_list_repeat1, + anon_sym_PIPE, + [59761] = 4, + ACTIONS(4226), 1, + anon_sym_DQUOTE, + STATE(1780), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63462] = 4, - ACTIONS(3105), 1, - anon_sym_RBRACE, - ACTIONS(4144), 1, + ACTIONS(4228), 2, + sym__string_content, + sym_escape_sequence, + [59776] = 5, + ACTIONS(4050), 1, + anon_sym_RPAREN, + ACTIONS(4054), 1, anon_sym_COMMA, - STATE(1870), 1, - aux_sym_use_list_repeat1, + ACTIONS(4056), 1, + anon_sym_PIPE, + STATE(1867), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63476] = 2, + [59793] = 3, + ACTIONS(4230), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4146), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63486] = 3, - ACTIONS(2185), 1, - anon_sym_PLUS, + 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(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4148), 2, - anon_sym_COMMA, - anon_sym_GT, - [63498] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + 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(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4148), 2, - anon_sym_COMMA, - anon_sym_GT, - [63510] = 3, - ACTIONS(3767), 1, + ACTIONS(4238), 2, + sym__string_content, + sym_escape_sequence, + [59836] = 5, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, + anon_sym_LBRACE, + ACTIONS(4069), 1, + anon_sym_LBRACK, + STATE(59), 1, + sym_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59853] = 3, + ACTIONS(3871), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4150), 2, + ACTIONS(4240), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [59865] = 4, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(4242), 1, anon_sym_GT, - [63522] = 4, - ACTIONS(4152), 1, - anon_sym_RBRACE, - ACTIONS(4154), 1, - anon_sym_COMMA, - STATE(1752), 1, - aux_sym_struct_pattern_repeat1, + STATE(2046), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63536] = 2, + [59879] = 3, + ACTIONS(4244), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4157), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4246), 2, + anon_sym_default, + anon_sym_union, + [59891] = 4, + ACTIONS(628), 1, + anon_sym_RBRACK, + ACTIONS(2945), 1, anon_sym_COMMA, - [63546] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, + STATE(2002), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4159), 2, + [59905] = 4, + ACTIONS(3173), 1, anon_sym_RBRACE, + ACTIONS(4248), 1, anon_sym_COMMA, - [63558] = 4, - ACTIONS(3914), 1, - anon_sym_RPAREN, - ACTIONS(3916), 1, - anon_sym_COMMA, - STATE(1836), 1, - aux_sym_parameters_repeat1, + STATE(1934), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63572] = 3, - ACTIONS(4163), 1, - anon_sym_COLON, + [59919] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4161), 2, + ACTIONS(4250), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63584] = 4, - ACTIONS(2185), 1, - anon_sym_PLUS, - ACTIONS(4165), 1, - sym_mutable_specifier, - ACTIONS(4167), 1, - sym_self, + [59929] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63598] = 4, - ACTIONS(3765), 1, + ACTIONS(2688), 3, anon_sym_LBRACE, - ACTIONS(4169), 1, - anon_sym_SEMI, - STATE(446), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63612] = 2, + anon_sym_COLON, + anon_sym_where, + [59939] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63622] = 2, + ACTIONS(2696), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [59949] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4173), 3, + ACTIONS(4252), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63632] = 4, - ACTIONS(768), 1, - anon_sym_RPAREN, - ACTIONS(4175), 1, - anon_sym_COMMA, - STATE(1766), 1, - aux_sym_parameters_repeat1, + [59959] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63646] = 4, - ACTIONS(4177), 1, + ACTIONS(2660), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [59969] = 4, + ACTIONS(4254), 1, sym_identifier, - ACTIONS(4179), 1, + ACTIONS(4256), 1, anon_sym_ref, - ACTIONS(4181), 1, + ACTIONS(4258), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63660] = 2, + [59983] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4183), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63670] = 3, - ACTIONS(3039), 1, - anon_sym_COLON_COLON, + ACTIONS(2742), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [59993] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3930), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63682] = 4, - ACTIONS(3765), 1, + ACTIONS(2750), 3, anon_sym_LBRACE, - ACTIONS(4185), 1, - anon_sym_SEMI, - STATE(341), 1, - sym_block, + anon_sym_COLON, + anon_sym_where, + [60003] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63696] = 4, - ACTIONS(4130), 1, - anon_sym_RPAREN, - ACTIONS(4187), 1, + ACTIONS(4260), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1766), 1, - aux_sym_parameters_repeat1, + [60013] = 4, + ACTIONS(4262), 1, + sym_identifier, + ACTIONS(4264), 1, + anon_sym_ref, + ACTIONS(4266), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63710] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [60027] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(4268), 1, + sym_identifier, + STATE(2364), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4130), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63722] = 4, - ACTIONS(4190), 1, + [60041] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(4268), 1, sym_identifier, - ACTIONS(4192), 1, - anon_sym_ref, - ACTIONS(4194), 1, - sym_mutable_specifier, + STATE(2322), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63736] = 2, + [60055] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [63746] = 4, - ACTIONS(612), 1, - anon_sym_RBRACK, - ACTIONS(2841), 1, + ACTIONS(4270), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1906), 1, - aux_sym_array_expression_repeat1, + [60065] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63760] = 4, - ACTIONS(2228), 1, - anon_sym_RPAREN, - ACTIONS(4196), 1, - anon_sym_COMMA, - STATE(1696), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(2716), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [60075] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63774] = 2, + ACTIONS(4272), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60085] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4198), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4274), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [63784] = 2, + [60095] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(4276), 1, + sym_identifier, + STATE(2322), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4085), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [63794] = 4, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(4200), 1, - anon_sym_EQ, - STATE(2386), 1, - sym_type_parameters, + sym_line_comment, + [60109] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63808] = 4, - ACTIONS(3524), 1, + ACTIONS(4278), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4202), 1, anon_sym_COMMA, - STATE(1779), 1, - aux_sym_enum_variant_list_repeat2, + [60119] = 4, + ACTIONS(4280), 1, + anon_sym_for, + ACTIONS(4282), 1, + anon_sym_loop, + ACTIONS(4284), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63822] = 3, - ACTIONS(4206), 1, + [60133] = 4, + ACTIONS(3590), 1, + anon_sym_LT, + ACTIONS(4286), 1, anon_sym_EQ, + STATE(2448), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4204), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63834] = 4, - ACTIONS(4208), 1, - anon_sym_RBRACE, - ACTIONS(4210), 1, - anon_sym_COMMA, - STATE(1777), 1, - aux_sym_field_initializer_list_repeat1, + [60147] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63848] = 4, - ACTIONS(3149), 1, + ACTIONS(4288), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [60157] = 4, + ACTIONS(2370), 1, anon_sym_LT2, - ACTIONS(3857), 1, + ACTIONS(4290), 1, sym_identifier, - STATE(2255), 1, + STATE(747), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63862] = 4, - ACTIONS(4213), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_COMMA, - STATE(1779), 1, - aux_sym_enum_variant_list_repeat2, + [60171] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3855), 1, + sym_identifier, + STATE(2322), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63876] = 2, + [60185] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4218), 3, + ACTIONS(4292), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [63886] = 4, - ACTIONS(3149), 1, + [60195] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(3857), 1, + ACTIONS(4276), 1, sym_identifier, - STATE(2268), 1, + STATE(2364), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63900] = 4, - ACTIONS(3149), 1, + [60209] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4220), 1, + ACTIONS(3855), 1, sym_identifier, - STATE(2255), 1, + STATE(2364), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63914] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4220), 1, + [60223] = 4, + ACTIONS(4294), 1, sym_identifier, - STATE(2268), 1, - sym_type_arguments, + ACTIONS(4296), 1, + anon_sym_await, + ACTIONS(4298), 1, + sym_integer_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60237] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4300), 1, + anon_sym_SEMI, + ACTIONS(4302), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63928] = 3, - ACTIONS(3920), 1, + [60251] = 3, + ACTIONS(4052), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4222), 2, + ACTIONS(4304), 2, anon_sym_COMMA, anon_sym_PIPE, - [63940] = 4, - ACTIONS(4222), 1, + [60263] = 4, + ACTIONS(4304), 1, anon_sym_PIPE, - ACTIONS(4224), 1, + ACTIONS(4306), 1, anon_sym_COMMA, - STATE(1785), 1, + STATE(1825), 1, aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63954] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4227), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [63964] = 4, - ACTIONS(4229), 1, - anon_sym_for, - ACTIONS(4231), 1, - anon_sym_loop, - ACTIONS(4233), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63978] = 4, - ACTIONS(4235), 1, - anon_sym_RPAREN, - ACTIONS(4237), 1, - anon_sym_COMMA, - STATE(1788), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63992] = 3, - ACTIONS(3773), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [64004] = 4, + [60277] = 4, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(980), 1, + STATE(1006), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64018] = 4, - ACTIONS(4240), 1, - sym_identifier, - ACTIONS(4242), 1, - anon_sym_ref, - ACTIONS(4244), 1, - sym_mutable_specifier, + [60291] = 4, + ACTIONS(3606), 1, + anon_sym_RBRACE, + ACTIONS(4309), 1, + anon_sym_COMMA, + STATE(1944), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64032] = 4, - ACTIONS(2310), 1, - anon_sym_LT2, - ACTIONS(4246), 1, + [60305] = 3, + ACTIONS(4311), 1, sym_identifier, - STATE(846), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64046] = 4, - ACTIONS(383), 1, - anon_sym_RPAREN, - ACTIONS(4248), 1, - anon_sym_COMMA, - STATE(1794), 1, - aux_sym_arguments_repeat1, + ACTIONS(4313), 2, + anon_sym_default, + anon_sym_union, + [60317] = 3, + ACTIONS(4317), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64060] = 4, - ACTIONS(2943), 1, - anon_sym_RPAREN, - ACTIONS(4250), 1, + ACTIONS(4315), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1794), 1, - aux_sym_arguments_repeat1, + [60329] = 4, + ACTIONS(3935), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_GT, + STATE(1892), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64074] = 4, - ACTIONS(3496), 1, - anon_sym_RBRACE, - ACTIONS(4253), 1, - anon_sym_COMMA, - STATE(1777), 1, - aux_sym_field_initializer_list_repeat1, + [60343] = 3, + ACTIONS(3933), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64088] = 4, - ACTIONS(4255), 1, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60355] = 4, + ACTIONS(4319), 1, sym_identifier, - ACTIONS(4257), 1, - anon_sym_await, - ACTIONS(4259), 1, - sym_integer_literal, + ACTIONS(4321), 1, + anon_sym_ref, + ACTIONS(4323), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64102] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4261), 1, + [60369] = 4, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(4325), 1, anon_sym_SEMI, - ACTIONS(4263), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64116] = 4, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(4265), 1, - anon_sym_GT, - STATE(2067), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64130] = 4, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(4270), 1, - anon_sym_GT, - STATE(1799), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2373), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64144] = 3, - ACTIONS(4274), 1, - anon_sym_COLON, + [60383] = 4, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(4327), 1, + anon_sym_SEMI, + STATE(338), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4272), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64156] = 4, - ACTIONS(4276), 1, + [60397] = 4, + ACTIONS(4329), 1, anon_sym_for, - ACTIONS(4278), 1, + ACTIONS(4331), 1, anon_sym_loop, - ACTIONS(4280), 1, + ACTIONS(4333), 1, anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64170] = 3, - ACTIONS(3829), 1, + [60411] = 3, + ACTIONS(3915), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [64182] = 4, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(4282), 1, - anon_sym_SEMI, - STATE(2258), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64196] = 4, - ACTIONS(3790), 1, + [60423] = 4, + ACTIONS(371), 1, + anon_sym_RPAREN, + ACTIONS(2955), 1, anon_sym_COMMA, - ACTIONS(3792), 1, - anon_sym_GT, - STATE(1984), 1, - aux_sym_type_parameters_repeat1, + STATE(1965), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64210] = 4, - ACTIONS(2332), 1, + [60437] = 4, + ACTIONS(2422), 1, anon_sym_LBRACE, - ACTIONS(4284), 1, + ACTIONS(4335), 1, anon_sym_COLON_COLON, - STATE(1018), 1, + STATE(1082), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64224] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [60451] = 4, + ACTIONS(4337), 1, + sym_identifier, + ACTIONS(4339), 1, + anon_sym_ref, + ACTIONS(4341), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4286), 2, - anon_sym_COMMA, - anon_sym_GT, - [64236] = 4, - ACTIONS(385), 1, - anon_sym_RPAREN, - ACTIONS(2863), 1, - anon_sym_COMMA, - STATE(1794), 1, - aux_sym_arguments_repeat1, + [60465] = 4, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(4343), 1, + anon_sym_SEMI, + STATE(2306), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64250] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4288), 1, - sym_identifier, - STATE(2255), 1, - sym_type_arguments, + [60479] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64264] = 2, + ACTIONS(4345), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60491] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4290), 3, + ACTIONS(4347), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [64274] = 4, - ACTIONS(2219), 1, - anon_sym_RBRACK, - ACTIONS(4292), 1, - anon_sym_COMMA, - STATE(1696), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64288] = 4, + [60501] = 4, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(4294), 1, + ACTIONS(4349), 1, anon_sym_move, - STATE(970), 1, + STATE(1071), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64302] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4288), 1, - sym_identifier, - STATE(2268), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64316] = 2, + [60515] = 4, + ACTIONS(4351), 1, + anon_sym_RBRACE, + ACTIONS(4353), 1, + anon_sym_COMMA, + STATE(1921), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4296), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [64326] = 4, - ACTIONS(3765), 1, + [60529] = 4, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(4298), 1, + ACTIONS(4355), 1, anon_sym_SEMI, - STATE(336), 1, + STATE(343), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64340] = 4, - ACTIONS(4300), 1, - sym_identifier, - ACTIONS(4302), 1, - anon_sym_ref, - ACTIONS(4304), 1, - sym_mutable_specifier, + [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, - [64354] = 4, - ACTIONS(3516), 1, + [60557] = 4, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(4306), 1, + ACTIONS(4361), 1, anon_sym_SEMI, - STATE(2235), 1, + STATE(2405), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64368] = 2, + [60571] = 3, + ACTIONS(4365), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4308), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [64378] = 4, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(4310), 1, - anon_sym_SEMI, - STATE(342), 1, - sym_block, + ACTIONS(4363), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60583] = 4, + ACTIONS(3608), 1, + 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, + anon_sym_RBRACE, + ACTIONS(4367), 1, + anon_sym_COMMA, + STATE(1985), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64392] = 2, + [60611] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2815), 3, + ACTIONS(4369), 3, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [64402] = 3, - ACTIONS(4314), 1, - anon_sym_EQ, + anon_sym_COMMA, + [60621] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4312), 2, - anon_sym_RBRACE, + ACTIONS(4371), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - [64414] = 4, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(4316), 1, + [60631] = 4, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(4373), 1, anon_sym_SEMI, - STATE(2356), 1, - sym_where_clause, + STATE(350), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64428] = 3, - ACTIONS(4320), 1, - anon_sym_COLON, + [60645] = 4, + ACTIONS(778), 1, + anon_sym_RPAREN, + ACTIONS(4048), 1, + anon_sym_COMMA, + STATE(2008), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4318), 2, - anon_sym_RBRACE, + [60659] = 4, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4375), 1, + anon_sym_EQ_GT, + ACTIONS(4377), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60673] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4379), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [64440] = 4, - ACTIONS(4322), 1, - anon_sym_RBRACE, - ACTIONS(4324), 1, + [60683] = 4, + ACTIONS(778), 1, + anon_sym_RPAREN, + ACTIONS(4048), 1, anon_sym_COMMA, - STATE(1876), 1, - aux_sym_struct_pattern_repeat1, + STATE(2011), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64454] = 4, - ACTIONS(3542), 1, + [60697] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4381), 2, anon_sym_RBRACE, - ACTIONS(4326), 1, anon_sym_COMMA, - STATE(1779), 1, - aux_sym_enum_variant_list_repeat2, + [60709] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64468] = 4, - ACTIONS(3542), 1, + ACTIONS(4383), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4326), 1, anon_sym_COMMA, - STATE(1775), 1, - aux_sym_enum_variant_list_repeat2, + [60719] = 4, + ACTIONS(2370), 1, + anon_sym_LT2, + ACTIONS(4290), 1, + sym_identifier, + STATE(763), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64482] = 2, + [60733] = 4, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(4385), 1, + anon_sym_SEMI, + STATE(359), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4328), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + [60747] = 4, + ACTIONS(4387), 1, + anon_sym_RBRACE, + ACTIONS(4389), 1, anon_sym_COMMA, - [64492] = 4, - ACTIONS(4330), 1, - anon_sym_for, - ACTIONS(4332), 1, - anon_sym_loop, - ACTIONS(4334), 1, - anon_sym_while, + STATE(1795), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64506] = 4, - ACTIONS(3767), 1, + [60761] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4391), 3, anon_sym_PLUS, - ACTIONS(4336), 1, + anon_sym_STAR, + anon_sym_QMARK, + [60771] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4393), 1, anon_sym_SEMI, - ACTIONS(4338), 1, + ACTIONS(4395), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64520] = 4, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(4340), 1, - anon_sym_SEMI, - STATE(318), 1, - sym_block, + [60785] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64534] = 2, + ACTIONS(4397), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60795] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4342), 3, + ACTIONS(4399), 3, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, - [64544] = 3, - ACTIONS(3865), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [64556] = 3, - ACTIONS(3785), 1, - anon_sym_COLON_COLON, + [60805] = 4, + ACTIONS(2235), 1, + anon_sym_RPAREN, + ACTIONS(4401), 1, + anon_sym_COMMA, + STATE(1693), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [64568] = 4, - ACTIONS(3765), 1, + [60819] = 4, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(4344), 1, + ACTIONS(4403), 1, anon_sym_SEMI, - STATE(353), 1, + STATE(366), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64582] = 4, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(4346), 1, - anon_sym_SEMI, - STATE(2344), 1, - sym_where_clause, + [60833] = 3, + ACTIONS(4407), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64596] = 4, - ACTIONS(2332), 1, - anon_sym_LBRACE, - ACTIONS(4348), 1, + ACTIONS(4405), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60845] = 3, + ACTIONS(3318), 1, anon_sym_COLON_COLON, - STATE(1018), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64610] = 4, - ACTIONS(770), 1, - anon_sym_RPAREN, - ACTIONS(3887), 1, + 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(1766), 1, - aux_sym_parameters_repeat1, + STATE(2021), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64624] = 2, + [60871] = 4, + ACTIONS(904), 1, + anon_sym_GT, + ACTIONS(4411), 1, + anon_sym_COMMA, + STATE(2032), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4350), 3, - anon_sym_SEMI, + [60885] = 4, + ACTIONS(4413), 1, + anon_sym_for, + ACTIONS(4415), 1, + anon_sym_loop, + ACTIONS(4417), 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, - [64634] = 2, + STATE(2021), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4352), 3, + [60913] = 3, + ACTIONS(3871), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [64644] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3430), 1, - anon_sym_LBRACE, - STATE(1273), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64658] = 4, - ACTIONS(638), 1, + ACTIONS(4421), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60925] = 4, + ACTIONS(644), 1, anon_sym_LBRACE, - ACTIONS(4354), 1, + ACTIONS(4423), 1, anon_sym_move, - STATE(220), 1, + STATE(231), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64672] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4356), 1, - sym_identifier, - STATE(2268), 1, - sym_type_arguments, + [60939] = 4, + ACTIONS(4421), 1, + anon_sym_RPAREN, + ACTIONS(4425), 1, + anon_sym_COMMA, + STATE(1877), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64686] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4356), 1, - sym_identifier, - STATE(2255), 1, - sym_type_arguments, + [60953] = 4, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(4428), 1, + anon_sym_GT, + STATE(2046), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64700] = 4, - ACTIONS(4116), 1, - anon_sym_COMMA, - ACTIONS(4118), 1, + [60967] = 4, + ACTIONS(4428), 1, anon_sym_GT, - STATE(1878), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4430), 1, + anon_sym_COMMA, + STATE(2035), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64714] = 4, - ACTIONS(770), 1, - anon_sym_RPAREN, - ACTIONS(3887), 1, - anon_sym_COMMA, - STATE(1761), 1, - aux_sym_parameters_repeat1, + [60981] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4432), 1, + anon_sym_SEMI, + ACTIONS(4434), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64728] = 2, + [60995] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4358), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64738] = 4, - ACTIONS(4360), 1, - anon_sym_RBRACE, - ACTIONS(4362), 1, + ACTIONS(4436), 2, anon_sym_COMMA, - STATE(1962), 1, - aux_sym_field_declaration_list_repeat1, + anon_sym_GT, + [61007] = 3, + ACTIONS(3941), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64752] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4364), 1, - sym_identifier, - STATE(2268), 1, - sym_type_arguments, + ACTIONS(3223), 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, - [64766] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4364), 1, - sym_identifier, - STATE(2255), 1, - sym_type_arguments, + ACTIONS(4116), 2, + anon_sym_COMMA, + anon_sym_GT, + [61031] = 4, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(4438), 1, + anon_sym_SEMI, + STATE(378), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64780] = 4, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, - ACTIONS(3240), 1, - anon_sym_COLON, - STATE(1826), 1, - sym_trait_bounds, + [61045] = 4, + ACTIONS(4116), 1, + anon_sym_GT, + ACTIONS(4440), 1, + anon_sym_COMMA, + STATE(1885), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64794] = 4, - ACTIONS(3765), 1, + [61059] = 4, + ACTIONS(4443), 1, + anon_sym_RPAREN, + ACTIONS(4445), 1, + anon_sym_COMMA, + STATE(1886), 1, + aux_sym_meta_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61073] = 4, + ACTIONS(2422), 1, anon_sym_LBRACE, - ACTIONS(4366), 1, - anon_sym_SEMI, - STATE(324), 1, - sym_block, + ACTIONS(4448), 1, + anon_sym_COLON_COLON, + STATE(1082), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64808] = 4, - ACTIONS(3767), 1, + [61087] = 3, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4368), 1, - anon_sym_SEMI, - ACTIONS(4370), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64822] = 4, - ACTIONS(2310), 1, - anon_sym_LT2, - ACTIONS(4246), 1, - sym_identifier, - STATE(764), 1, - sym_type_arguments, + ACTIONS(4450), 2, + anon_sym_COMMA, + anon_sym_GT, + [61099] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64836] = 4, - ACTIONS(4372), 1, - anon_sym_RBRACE, - ACTIONS(4374), 1, + ACTIONS(4452), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1747), 1, - aux_sym_use_list_repeat1, + [61109] = 2, + 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64850] = 2, + 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [64860] = 2, + [61145] = 4, + ACTIONS(3628), 1, + anon_sym_GT, + ACTIONS(4458), 1, + anon_sym_COMMA, + STATE(1885), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [64870] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4376), 1, - sym_identifier, - STATE(2268), 1, - sym_type_arguments, + [61159] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64884] = 4, - ACTIONS(3149), 1, + ACTIONS(4460), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [61169] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4376), 1, + ACTIONS(4462), 1, sym_identifier, - STATE(2255), 1, + STATE(2364), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64898] = 2, + [61183] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4378), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64908] = 4, - ACTIONS(2087), 1, - anon_sym_RPAREN, - ACTIONS(4380), 1, + ACTIONS(4464), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1788), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64922] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [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, - ACTIONS(4382), 2, - anon_sym_RPAREN, + [61209] = 4, + ACTIONS(4194), 1, anon_sym_COMMA, - [64934] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4384), 1, - anon_sym_SEMI, - ACTIONS(4386), 1, - anon_sym_EQ, + ACTIONS(4466), 1, + anon_sym_PIPE, + STATE(1825), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64948] = 2, + [61223] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3538), 1, + anon_sym_LBRACE, + STATE(1276), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4388), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64958] = 4, - ACTIONS(3540), 1, + [61237] = 4, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(4390), 1, + ACTIONS(4468), 1, anon_sym_SEMI, - STATE(814), 1, + STATE(834), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64972] = 4, - ACTIONS(4392), 1, - anon_sym_RPAREN, - ACTIONS(4394), 1, - anon_sym_COMMA, - STATE(1917), 1, - aux_sym_meta_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64986] = 4, - ACTIONS(2236), 1, + [61251] = 4, + ACTIONS(4470), 1, anon_sym_RPAREN, - ACTIONS(4396), 1, + ACTIONS(4472), 1, anon_sym_COMMA, - STATE(1696), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65000] = 2, + STATE(1997), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4398), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [65010] = 3, - ACTIONS(3767), 1, + [61265] = 3, + ACTIONS(3871), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4400), 2, + ACTIONS(4474), 2, anon_sym_RPAREN, anon_sym_COMMA, - [65022] = 4, - ACTIONS(3230), 1, - anon_sym_COLON_COLON, - ACTIONS(3240), 1, - anon_sym_COLON, - STATE(1826), 1, - sym_trait_bounds, + [61277] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4476), 1, + anon_sym_SEMI, + ACTIONS(4478), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65036] = 3, - ACTIONS(4404), 1, + [61291] = 3, + ACTIONS(4482), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4402), 2, + ACTIONS(4480), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65048] = 4, - ACTIONS(4406), 1, + [61303] = 4, + ACTIONS(4484), 1, anon_sym_RBRACE, - ACTIONS(4408), 1, + ACTIONS(4486), 1, anon_sym_COMMA, - STATE(1870), 1, - aux_sym_use_list_repeat1, + STATE(1827), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65062] = 2, + [61317] = 4, + ACTIONS(4488), 1, + anon_sym_COMMA, + ACTIONS(4490), 1, + anon_sym_GT, + STATE(1879), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4411), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [65072] = 2, + [61331] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(4492), 1, + sym_identifier, + STATE(2364), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4413), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [65082] = 4, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(4415), 1, - anon_sym_SEMI, - STATE(388), 1, - sym_block, + [61345] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(4492), 1, + sym_identifier, + STATE(2322), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65096] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [61359] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4417), 2, + ACTIONS(4494), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65108] = 4, - ACTIONS(2310), 1, - anon_sym_LT2, - ACTIONS(4419), 1, + [61371] = 4, + ACTIONS(3374), 1, + anon_sym_COLON_COLON, + ACTIONS(3735), 1, + anon_sym_BANG, + ACTIONS(4496), 1, sym_identifier, - STATE(1204), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65122] = 4, - ACTIONS(3729), 1, - anon_sym_RBRACE, - ACTIONS(4421), 1, + [61385] = 4, + ACTIONS(2315), 1, + anon_sym_RPAREN, + ACTIONS(4498), 1, anon_sym_COMMA, - STATE(1752), 1, - aux_sym_struct_pattern_repeat1, + STATE(1877), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65136] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, + [61399] = 4, + ACTIONS(2370), 1, + anon_sym_LT2, + ACTIONS(4500), 1, + sym_identifier, + STATE(1209), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4423), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65148] = 4, - ACTIONS(866), 1, - anon_sym_GT, - ACTIONS(4425), 1, - anon_sym_COMMA, - STATE(1929), 1, - aux_sym_type_arguments_repeat1, + [61413] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4502), 1, + anon_sym_SEMI, + ACTIONS(4504), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65162] = 4, - ACTIONS(3705), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, + [61427] = 4, + ACTIONS(4194), 1, anon_sym_COMMA, - STATE(1752), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4506), 1, + anon_sym_PIPE, + STATE(1898), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65176] = 4, - ACTIONS(3502), 1, + [61441] = 4, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(4429), 1, + ACTIONS(4508), 1, anon_sym_SEMI, - STATE(350), 1, - sym_declaration_list, + STATE(392), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65190] = 4, - ACTIONS(2310), 1, + [61455] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4419), 1, + ACTIONS(4510), 1, sym_identifier, - STATE(1166), 1, + STATE(2364), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65204] = 4, - ACTIONS(3149), 1, + [61469] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4431), 1, + ACTIONS(4510), 1, sym_identifier, - STATE(2268), 1, + STATE(2322), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65218] = 4, - ACTIONS(3149), 1, + [61483] = 4, + ACTIONS(2370), 1, anon_sym_LT2, - ACTIONS(4431), 1, + ACTIONS(4500), 1, sym_identifier, - STATE(2255), 1, + STATE(1230), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65232] = 2, + [61497] = 4, + ACTIONS(4512), 1, + anon_sym_RPAREN, + ACTIONS(4514), 1, + anon_sym_COMMA, + STATE(1997), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4433), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [65242] = 4, - ACTIONS(4435), 1, + [61511] = 3, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4516), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61523] = 4, + ACTIONS(3622), 1, anon_sym_RBRACE, - ACTIONS(4437), 1, + ACTIONS(4518), 1, anon_sym_COMMA, - STATE(1885), 1, + STATE(1993), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65256] = 3, - ACTIONS(3767), 1, + [61537] = 3, + ACTIONS(3871), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4440), 2, + ACTIONS(4127), 2, anon_sym_RPAREN, anon_sym_COMMA, - [65268] = 4, - ACTIONS(4442), 1, + [61549] = 4, + ACTIONS(3622), 1, anon_sym_RBRACE, - ACTIONS(4444), 1, + ACTIONS(4518), 1, anon_sym_COMMA, - STATE(1824), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1988), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65282] = 4, - ACTIONS(4440), 1, - anon_sym_RPAREN, - ACTIONS(4446), 1, + [61563] = 4, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(4520), 1, + anon_sym_SEMI, + STATE(259), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61577] = 4, + ACTIONS(4184), 1, anon_sym_COMMA, - STATE(1888), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4186), 1, + anon_sym_GT, + STATE(1872), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65296] = 4, - ACTIONS(3532), 1, + [61591] = 4, + ACTIONS(4522), 1, anon_sym_RBRACE, - ACTIONS(4449), 1, + ACTIONS(4524), 1, anon_sym_COMMA, - STATE(1885), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1871), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65310] = 4, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(4451), 1, - anon_sym_GT, - STATE(2067), 1, - sym_lifetime, + [61605] = 3, + ACTIONS(4528), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65324] = 4, - ACTIONS(3149), 1, + ACTIONS(4526), 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, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61641] = 4, + ACTIONS(4534), 1, + anon_sym_RBRACE, + ACTIONS(4536), 1, + anon_sym_COMMA, + STATE(1874), 1, + aux_sym_struct_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61655] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4453), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(2255), 1, + STATE(2364), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65338] = 4, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(4455), 1, - anon_sym_SEMI, - STATE(772), 1, - sym_block, + [61669] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(4540), 1, + sym_identifier, + STATE(2322), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65352] = 4, - ACTIONS(4451), 1, - anon_sym_GT, - ACTIONS(4457), 1, + [61683] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(4538), 1, + sym_identifier, + STATE(2322), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61697] = 4, + ACTIONS(4542), 1, + anon_sym_RBRACE, + ACTIONS(4544), 1, anon_sym_COMMA, - STATE(1799), 1, - aux_sym_for_lifetimes_repeat1, + STATE(1934), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65366] = 4, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(4459), 1, - anon_sym_SEMI, - STATE(768), 1, - sym_block, + [61711] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65380] = 4, - ACTIONS(3149), 1, + ACTIONS(4547), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [61721] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4453), 1, + ACTIONS(4540), 1, sym_identifier, - STATE(2268), 1, + STATE(2364), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65394] = 4, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(4461), 1, - anon_sym_SEMI, - STATE(367), 1, - sym_block, + [61735] = 4, + ACTIONS(4549), 1, + anon_sym_RPAREN, + ACTIONS(4551), 1, + anon_sym_COMMA, + STATE(1962), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65408] = 4, - ACTIONS(3767), 1, + [61749] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4463), 1, + ACTIONS(4553), 1, anon_sym_SEMI, - ACTIONS(4465), 1, + ACTIONS(4555), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65422] = 4, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(4467), 1, - anon_sym_SEMI, - STATE(763), 1, - sym_block, + [61763] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65436] = 4, - ACTIONS(3902), 1, + ACTIONS(4557), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [61773] = 4, + ACTIONS(4012), 1, anon_sym_COMMA, - ACTIONS(3904), 1, + ACTIONS(4014), 1, anon_sym_GT, - STATE(1965), 1, + STATE(2009), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65450] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4469), 1, - anon_sym_SEMI, - ACTIONS(4471), 1, - anon_sym_EQ, + [61787] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65464] = 4, - ACTIONS(4046), 1, + ACTIONS(4559), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(4473), 1, - anon_sym_PIPE, - STATE(1923), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65478] = 4, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4475), 1, - anon_sym_EQ_GT, - ACTIONS(4477), 1, - anon_sym_if, + [61797] = 4, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(4561), 1, + anon_sym_SEMI, + STATE(362), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65492] = 3, - ACTIONS(3767), 1, + [61811] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, + ACTIONS(4563), 1, + anon_sym_as, + ACTIONS(4565), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4479), 2, - anon_sym_COMMA, - anon_sym_GT, - [65504] = 4, - ACTIONS(632), 1, - anon_sym_RBRACK, - ACTIONS(4481), 1, + [61825] = 4, + ACTIONS(4567), 1, + anon_sym_RBRACE, + ACTIONS(4569), 1, anon_sym_COMMA, - STATE(1906), 1, - aux_sym_array_expression_repeat1, + STATE(1944), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65518] = 4, - ACTIONS(3755), 1, + [61839] = 4, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(4483), 1, + ACTIONS(4572), 1, anon_sym_SEMI, - STATE(734), 1, + STATE(440), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65532] = 4, - ACTIONS(2975), 1, - anon_sym_RBRACK, - ACTIONS(4485), 1, - anon_sym_COMMA, - STATE(1906), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65546] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4488), 1, + [61853] = 4, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(4574), 1, anon_sym_SEMI, - ACTIONS(4490), 1, - anon_sym_EQ, + STATE(736), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65560] = 4, - ACTIONS(3755), 1, + [61867] = 4, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(4492), 1, + ACTIONS(4576), 1, anon_sym_SEMI, - STATE(796), 1, + STATE(398), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65574] = 2, + [61881] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4578), 1, + anon_sym_SEMI, + ACTIONS(4580), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4494), 3, + [61895] = 4, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(4582), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [65584] = 3, - ACTIONS(4044), 1, - anon_sym_EQ, + STATE(739), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3995), 2, - anon_sym_COMMA, - anon_sym_GT, - [65596] = 4, - ACTIONS(3755), 1, + [61909] = 4, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4496), 1, + ACTIONS(4584), 1, anon_sym_SEMI, - STATE(884), 1, + STATE(743), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65610] = 4, - ACTIONS(3516), 1, + [61923] = 4, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(4498), 1, + ACTIONS(4586), 1, anon_sym_SEMI, - STATE(2409), 1, + STATE(2378), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65624] = 4, - ACTIONS(3995), 1, - anon_sym_GT, - ACTIONS(4500), 1, - anon_sym_COMMA, - STATE(1913), 1, - aux_sym_type_parameters_repeat1, + [61937] = 4, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(4588), 1, + anon_sym_SEMI, + STATE(750), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65638] = 4, - ACTIONS(4503), 1, - anon_sym_RBRACE, - ACTIONS(4505), 1, - anon_sym_COMMA, - STATE(1879), 1, - aux_sym_struct_pattern_repeat1, + [61951] = 4, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(4590), 1, + anon_sym_SEMI, + STATE(2471), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65652] = 3, - ACTIONS(3767), 1, + [61965] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, + ACTIONS(4592), 1, + anon_sym_SEMI, + ACTIONS(4594), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4507), 2, - anon_sym_COMMA, - anon_sym_GT, - [65664] = 2, + [61979] = 4, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(4596), 1, + anon_sym_SEMI, + STATE(755), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4509), 3, - anon_sym_RPAREN, + [61993] = 4, + ACTIONS(2245), 1, anon_sym_RBRACK, + ACTIONS(4598), 1, anon_sym_COMMA, - [65674] = 4, - ACTIONS(3005), 1, - anon_sym_RPAREN, - ACTIONS(4511), 1, - anon_sym_COMMA, - STATE(1926), 1, - aux_sym_meta_arguments_repeat1, + STATE(1693), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65688] = 4, - ACTIONS(3755), 1, + [62007] = 4, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(4513), 1, + ACTIONS(4600), 1, anon_sym_SEMI, - STATE(925), 1, + STATE(413), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65702] = 4, - ACTIONS(3767), 1, + [62021] = 4, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4515), 1, - anon_sym_SEMI, - ACTIONS(4517), 1, - anon_sym_EQ, + STATE(1050), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65716] = 4, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(4519), 1, - anon_sym_SEMI, - STATE(377), 1, - sym_block, + [62035] = 4, + ACTIONS(2233), 1, + anon_sym_RPAREN, + ACTIONS(4602), 1, + anon_sym_COMMA, + STATE(1693), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65730] = 4, - ACTIONS(3765), 1, + [62049] = 4, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4521), 1, + ACTIONS(4604), 1, anon_sym_SEMI, - STATE(410), 1, + STATE(766), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65744] = 4, - ACTIONS(3755), 1, + [62063] = 4, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4523), 1, + ACTIONS(4606), 1, anon_sym_SEMI, - STATE(916), 1, + STATE(771), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65758] = 4, - ACTIONS(4046), 1, + [62077] = 4, + ACTIONS(2959), 1, + anon_sym_RPAREN, + ACTIONS(4608), 1, anon_sym_COMMA, - ACTIONS(4525), 1, - anon_sym_PIPE, - STATE(1785), 1, - aux_sym_closure_parameters_repeat1, + STATE(1886), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65772] = 2, + [62091] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4527), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [65782] = 4, - ACTIONS(3522), 1, - anon_sym_RBRACE, - ACTIONS(4529), 1, + ACTIONS(4610), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1885), 1, - aux_sym_field_declaration_list_repeat1, + [62101] = 4, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(4612), 1, + anon_sym_SEMI, + STATE(297), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65796] = 4, - ACTIONS(4531), 1, + [62115] = 4, + ACTIONS(3029), 1, anon_sym_RPAREN, - ACTIONS(4533), 1, + ACTIONS(4614), 1, anon_sym_COMMA, - STATE(1926), 1, - aux_sym_meta_arguments_repeat1, + STATE(1965), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65810] = 4, - ACTIONS(3767), 1, + [62129] = 2, + 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, - ACTIONS(4536), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4619), 2, + anon_sym_COMMA, + anon_sym_GT, + [62151] = 4, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(4621), 1, anon_sym_SEMI, - ACTIONS(4538), 1, - anon_sym_EQ, + STATE(956), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65824] = 4, - ACTIONS(2276), 1, + [62165] = 4, + ACTIONS(387), 1, anon_sym_RPAREN, - ACTIONS(4540), 1, + ACTIONS(4623), 1, anon_sym_COMMA, - STATE(1888), 1, - aux_sym_tuple_type_repeat1, + STATE(1965), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65838] = 4, - ACTIONS(4148), 1, - anon_sym_GT, - ACTIONS(4542), 1, + [62179] = 4, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(4625), 1, + anon_sym_SEMI, + STATE(785), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62193] = 4, + ACTIONS(3612), 1, + anon_sym_RBRACE, + ACTIONS(4627), 1, anon_sym_COMMA, - STATE(1929), 1, - aux_sym_type_arguments_repeat1, + STATE(1993), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65852] = 4, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(4545), 1, + [62207] = 4, + ACTIONS(2247), 1, + anon_sym_PLUS, + ACTIONS(4629), 1, + sym_mutable_specifier, + ACTIONS(4631), 1, + sym_self, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62221] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4633), 1, anon_sym_SEMI, - STATE(936), 1, - sym_declaration_list, + ACTIONS(4635), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65866] = 4, - ACTIONS(4547), 1, - anon_sym_COMMA, - ACTIONS(4549), 1, - anon_sym_GT, - STATE(1893), 1, - aux_sym_for_lifetimes_repeat1, + [62235] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65880] = 4, - ACTIONS(3755), 1, + ACTIONS(4637), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [62245] = 4, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4551), 1, + ACTIONS(4639), 1, anon_sym_SEMI, - STATE(880), 1, + STATE(812), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65894] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4553), 3, + [62259] = 4, + ACTIONS(774), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [65904] = 4, - ACTIONS(762), 1, - anon_sym_RPAREN, - ACTIONS(4555), 1, + ACTIONS(4641), 1, anon_sym_COMMA, - STATE(1766), 1, + STATE(2008), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65918] = 4, - ACTIONS(3506), 1, + [62273] = 4, + ACTIONS(3620), 1, anon_sym_RBRACE, - ACTIONS(4557), 1, + ACTIONS(4643), 1, anon_sym_COMMA, - STATE(1779), 1, + STATE(1979), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65932] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4559), 1, - anon_sym_SEMI, - ACTIONS(4561), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65946] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4563), 1, - anon_sym_as, - ACTIONS(4565), 1, - anon_sym_GT, + [62287] = 4, + ACTIONS(4006), 1, + anon_sym_RPAREN, + ACTIONS(4008), 1, + anon_sym_COMMA, + STATE(1854), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65960] = 3, - ACTIONS(4569), 1, - anon_sym_COLON, + [62301] = 4, + ACTIONS(4645), 1, + anon_sym_RBRACE, + ACTIONS(4647), 1, + anon_sym_COMMA, + STATE(1979), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4567), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65972] = 4, - ACTIONS(3516), 1, + [62315] = 4, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(4571), 1, + ACTIONS(4650), 1, anon_sym_SEMI, - STATE(2308), 1, + STATE(2387), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65986] = 4, - ACTIONS(3767), 1, + [62329] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4573), 1, + ACTIONS(4652), 1, anon_sym_SEMI, - ACTIONS(4575), 1, + ACTIONS(4654), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66000] = 4, - ACTIONS(3767), 1, + [62343] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4577), 1, + ACTIONS(4656), 1, anon_sym_SEMI, - ACTIONS(4579), 1, + ACTIONS(4658), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66014] = 4, - ACTIONS(3755), 1, + [62357] = 4, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4660), 1, anon_sym_SEMI, - STATE(832), 1, + STATE(847), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66028] = 4, - ACTIONS(4583), 1, + [62371] = 3, + ACTIONS(4664), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4662), 2, anon_sym_RBRACE, - ACTIONS(4585), 1, anon_sym_COMMA, - STATE(1975), 1, + [62383] = 4, + ACTIONS(3634), 1, + anon_sym_RBRACE, + ACTIONS(4666), 1, + anon_sym_COMMA, + STATE(1979), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66042] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(1058), 1, - sym_block, + [62397] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66056] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + ACTIONS(4668), 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4587), 2, + [62421] = 4, + ACTIONS(3624), 1, anon_sym_RBRACE, + ACTIONS(4674), 1, anon_sym_COMMA, - [66068] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4589), 1, - anon_sym_SEMI, - ACTIONS(4591), 1, - anon_sym_EQ, + STATE(1993), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66082] = 2, + [62435] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4593), 3, - anon_sym_EQ, + ACTIONS(4087), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - [66092] = 4, - ACTIONS(4595), 1, + [62445] = 4, + ACTIONS(3614), 1, anon_sym_RBRACE, - ACTIONS(4597), 1, + ACTIONS(4676), 1, anon_sym_COMMA, - STATE(1795), 1, - aux_sym_field_initializer_list_repeat1, + STATE(1971), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66106] = 4, - ACTIONS(3504), 1, + [62459] = 4, + ACTIONS(3614), 1, anon_sym_RBRACE, - ACTIONS(4599), 1, + ACTIONS(4676), 1, anon_sym_COMMA, - STATE(1925), 1, + STATE(1993), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66120] = 4, - ACTIONS(3910), 1, - anon_sym_RPAREN, - ACTIONS(3912), 1, - anon_sym_COMMA, - STATE(1970), 1, - aux_sym_parameters_repeat1, + [62473] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4678), 1, + anon_sym_SEMI, + ACTIONS(4680), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66134] = 4, - ACTIONS(3504), 1, + [62487] = 4, + ACTIONS(4682), 1, anon_sym_RBRACE, - ACTIONS(4599), 1, + ACTIONS(4684), 1, anon_sym_COMMA, - STATE(1885), 1, + STATE(1993), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66148] = 4, - ACTIONS(3566), 1, - anon_sym_RBRACE, - ACTIONS(4601), 1, + [62501] = 4, + ACTIONS(4026), 1, + anon_sym_RPAREN, + ACTIONS(4028), 1, anon_sym_COMMA, - STATE(1889), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2022), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62515] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66162] = 4, - ACTIONS(2081), 1, + ACTIONS(4198), 2, anon_sym_RPAREN, - ACTIONS(4603), 1, anon_sym_COMMA, - STATE(1788), 1, + [62527] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66176] = 4, - ACTIONS(3755), 1, + [62553] = 4, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(4694), 1, anon_sym_SEMI, - STATE(953), 1, + STATE(950), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66190] = 4, - ACTIONS(3767), 1, + [62567] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4607), 1, + ACTIONS(4696), 1, anon_sym_SEMI, - ACTIONS(4609), 1, + ACTIONS(4698), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66204] = 4, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(4611), 1, - anon_sym_SEMI, - STATE(394), 1, - sym_block, + [62581] = 4, + ACTIONS(4700), 1, + anon_sym_RPAREN, + ACTIONS(4702), 1, + anon_sym_COMMA, + STATE(1997), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66218] = 4, - ACTIONS(3974), 1, + [62595] = 4, + ACTIONS(4210), 1, anon_sym_COMMA, - ACTIONS(3976), 1, + ACTIONS(4212), 1, anon_sym_GT, - STATE(1960), 1, + STATE(2013), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66232] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4613), 1, - anon_sym_SEMI, - ACTIONS(4615), 1, - anon_sym_EQ, + [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, - [66246] = 3, - ACTIONS(3767), 1, + [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, - ACTIONS(4617), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66258] = 4, - ACTIONS(870), 1, - anon_sym_GT, - ACTIONS(4619), 1, + [62637] = 4, + ACTIONS(636), 1, + anon_sym_RBRACK, + ACTIONS(4711), 1, anon_sym_COMMA, - STATE(1929), 1, - aux_sym_type_arguments_repeat1, + STATE(2002), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66272] = 4, - ACTIONS(2268), 1, + [62651] = 4, + ACTIONS(2321), 1, anon_sym_RPAREN, - ACTIONS(4621), 1, + ACTIONS(4713), 1, anon_sym_COMMA, - STATE(1888), 1, + STATE(1877), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66286] = 4, - ACTIONS(3566), 1, - anon_sym_RBRACE, - ACTIONS(4601), 1, - anon_sym_COMMA, - STATE(1885), 1, - aux_sym_field_declaration_list_repeat1, + [62665] = 4, + ACTIONS(3871), 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, - [66300] = 4, - ACTIONS(3564), 1, + [62679] = 4, + ACTIONS(3636), 1, anon_sym_GT, - ACTIONS(4623), 1, + ACTIONS(4719), 1, anon_sym_COMMA, - STATE(1913), 1, + STATE(1885), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66314] = 4, - ACTIONS(3572), 1, - anon_sym_GT, - ACTIONS(4625), 1, + [62693] = 4, + ACTIONS(4198), 1, + anon_sym_RPAREN, + ACTIONS(4721), 1, anon_sym_COMMA, - STATE(1913), 1, - aux_sym_type_parameters_repeat1, + STATE(2008), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66328] = 4, - ACTIONS(3568), 1, + [62707] = 4, + ACTIONS(3638), 1, anon_sym_GT, - ACTIONS(4627), 1, + ACTIONS(4724), 1, anon_sym_COMMA, - STATE(1913), 1, + STATE(1885), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66342] = 4, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(4629), 1, - anon_sym_SEMI, - STATE(743), 1, - sym_block, + [62721] = 3, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66356] = 4, - ACTIONS(758), 1, + ACTIONS(3977), 2, anon_sym_RPAREN, - ACTIONS(3934), 1, anon_sym_COMMA, - STATE(1934), 1, + [62733] = 4, + ACTIONS(768), 1, + anon_sym_RPAREN, + ACTIONS(4726), 1, + anon_sym_COMMA, + STATE(2008), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66370] = 2, + [62747] = 4, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(4728), 1, + anon_sym_SEMI, + STATE(446), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2790), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [66380] = 2, + [62761] = 4, + ACTIONS(902), 1, + anon_sym_GT, + ACTIONS(4730), 1, + anon_sym_COMMA, + STATE(2032), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4631), 3, - anon_sym_SEMI, + [62775] = 4, + ACTIONS(4732), 1, anon_sym_RBRACE, + ACTIONS(4734), 1, anon_sym_COMMA, - [66390] = 4, - ACTIONS(758), 1, - anon_sym_RPAREN, - ACTIONS(3934), 1, - anon_sym_COMMA, - STATE(1766), 1, - aux_sym_parameters_repeat1, + STATE(1849), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66404] = 4, - ACTIONS(3767), 1, + [62789] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4633), 1, + ACTIONS(4736), 1, anon_sym_SEMI, - ACTIONS(4635), 1, + ACTIONS(4738), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66418] = 2, + [62803] = 3, + ACTIONS(4742), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2806), 3, - anon_sym_LBRACE, + ACTIONS(4740), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62815] = 4, + ACTIONS(3298), 1, + anon_sym_COLON_COLON, + ACTIONS(3328), 1, anon_sym_COLON, - anon_sym_where, - [66428] = 4, - ACTIONS(3089), 1, + STATE(1851), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62829] = 4, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4637), 1, - sym_identifier, - STATE(1871), 1, - sym_use_list, + ACTIONS(4744), 1, + anon_sym_SEMI, + STATE(883), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66442] = 4, - ACTIONS(3550), 1, + [62843] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4746), 2, anon_sym_RBRACE, - ACTIONS(4639), 1, anon_sym_COMMA, - STATE(1935), 1, - aux_sym_enum_variant_list_repeat2, + [62855] = 4, + ACTIONS(772), 1, + anon_sym_RPAREN, + ACTIONS(4024), 1, + anon_sym_COMMA, + STATE(1976), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66456] = 4, - ACTIONS(3550), 1, + [62869] = 4, + ACTIONS(4748), 1, anon_sym_RBRACE, - ACTIONS(4639), 1, + ACTIONS(4750), 1, anon_sym_COMMA, - STATE(1779), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2021), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66470] = 4, - ACTIONS(3767), 1, + [62883] = 4, + ACTIONS(772), 1, + anon_sym_RPAREN, + ACTIONS(4024), 1, + anon_sym_COMMA, + STATE(2008), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62897] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4641), 1, + ACTIONS(4753), 1, anon_sym_SEMI, - ACTIONS(4643), 1, + ACTIONS(4755), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66484] = 2, + [62911] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4645), 3, - anon_sym_EQ, + ACTIONS(4757), 2, anon_sym_COMMA, anon_sym_GT, - [66494] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4647), 1, - anon_sym_SEMI, - ACTIONS(4649), 1, - anon_sym_EQ, + [62923] = 4, + ACTIONS(4759), 1, + anon_sym_RBRACE, + ACTIONS(4761), 1, + anon_sym_COMMA, + STATE(1991), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66508] = 4, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(4651), 1, + [62937] = 4, + ACTIONS(3630), 1, + anon_sym_RBRACE, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(1977), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62951] = 4, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(4765), 1, anon_sym_SEMI, - STATE(427), 1, - sym_declaration_list, + STATE(2440), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66522] = 4, - ACTIONS(4653), 1, + [62965] = 4, + ACTIONS(3630), 1, anon_sym_RBRACE, - ACTIONS(4655), 1, + ACTIONS(4763), 1, anon_sym_COMMA, - STATE(1951), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1979), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66536] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, + [62979] = 3, + ACTIONS(2247), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4657), 2, - anon_sym_RBRACE, + ACTIONS(4619), 2, anon_sym_COMMA, - [66548] = 4, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(4659), 1, - anon_sym_SEMI, - STATE(2363), 1, - sym_where_clause, + anon_sym_GT, + [62991] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66562] = 4, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(4661), 1, + ACTIONS(4767), 3, anon_sym_SEMI, - STATE(2354), 1, - sym_where_clause, + anon_sym_RBRACE, + anon_sym_COMMA, + [63001] = 4, + ACTIONS(3157), 1, + anon_sym_LBRACE, + ACTIONS(4769), 1, + sym_identifier, + STATE(1866), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66576] = 4, - ACTIONS(3570), 1, + [63015] = 4, + ACTIONS(4619), 1, anon_sym_GT, - ACTIONS(4663), 1, + ACTIONS(4771), 1, anon_sym_COMMA, - STATE(1913), 1, - aux_sym_type_parameters_repeat1, + STATE(2032), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66590] = 4, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(4665), 1, - anon_sym_EQ, - STATE(2318), 1, - sym_type_parameters, + [63029] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66604] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + ACTIONS(4774), 2, + 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3970), 2, - anon_sym_RPAREN, + [63055] = 4, + ACTIONS(4778), 1, anon_sym_COMMA, - [66616] = 3, - ACTIONS(3039), 1, + ACTIONS(4781), 1, + anon_sym_GT, + STATE(2035), 1, + aux_sym_for_lifetimes_repeat1, + 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4667), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66628] = 3, - ACTIONS(3540), 1, + [63083] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(893), 1, + STATE(788), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66639] = 2, + [63094] = 3, + ACTIONS(2362), 1, + anon_sym_LPAREN, + STATE(820), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4669), 2, - anon_sym_const, - sym_mutable_specifier, - [66648] = 3, - ACTIONS(3540), 1, + [63105] = 3, + ACTIONS(3590), 1, + anon_sym_LT, + STATE(674), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63116] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(841), 1, + STATE(908), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66659] = 3, - ACTIONS(3540), 1, + [63127] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(837), 1, + STATE(906), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66670] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4671), 1, - anon_sym_SEMI, + [63138] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(441), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66681] = 3, - ACTIONS(3554), 1, + [63149] = 3, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(1611), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63160] = 3, + ACTIONS(3873), 1, + anon_sym_LBRACE, + STATE(900), 1, + sym_enum_variant_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63171] = 3, + ACTIONS(3594), 1, + anon_sym_LBRACE, + STATE(897), 1, + sym_field_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63182] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4781), 2, + anon_sym_COMMA, + anon_sym_GT, + [63191] = 3, + ACTIONS(3594), 1, anon_sym_LBRACE, - STATE(831), 1, + STATE(893), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66692] = 2, + [63202] = 3, + ACTIONS(3681), 1, + anon_sym_COLON, + STATE(1851), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63213] = 3, + ACTIONS(4783), 1, + anon_sym_SEMI, + ACTIONS(4785), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4152), 2, + [63224] = 3, + ACTIONS(3819), 1, anon_sym_RBRACE, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63235] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4789), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63246] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4619), 2, anon_sym_COMMA, - [66701] = 3, - ACTIONS(3540), 1, + anon_sym_GT, + [63255] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(820), 1, + STATE(438), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66712] = 3, - ACTIONS(3540), 1, + [63266] = 3, + ACTIONS(3909), 1, anon_sym_LBRACE, - STATE(816), 1, + STATE(363), 1, + sym_enum_variant_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63277] = 3, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(4791), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63288] = 2, + 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, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63308] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(916), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66723] = 3, - ACTIONS(3920), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - anon_sym_PIPE, + [63319] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(917), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66734] = 2, + [63330] = 3, + ACTIONS(3594), 1, + anon_sym_LBRACE, + STATE(918), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3930), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66743] = 3, - ACTIONS(3769), 1, - anon_sym_LBRACE, - STATE(407), 1, - sym_enum_variant_list, + [63341] = 3, + ACTIONS(3775), 1, + anon_sym_COLON, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66754] = 3, - ACTIONS(4673), 1, + [63352] = 3, + ACTIONS(4797), 1, sym_identifier, - ACTIONS(4675), 1, + ACTIONS(4799), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66765] = 3, - ACTIONS(3833), 1, - anon_sym_LBRACE, - STATE(795), 1, - sym_enum_variant_list, + [63363] = 3, + ACTIONS(2854), 1, + anon_sym_COLON, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66776] = 3, - ACTIONS(3554), 1, + [63374] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(787), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66787] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4677), 1, - anon_sym_EQ, + STATE(51), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66798] = 3, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(781), 1, - sym_field_declaration_list, + [63385] = 3, + ACTIONS(3831), 1, + anon_sym_COLON_COLON, + ACTIONS(4801), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66809] = 3, - ACTIONS(4679), 1, - sym_identifier, - ACTIONS(4681), 1, - sym_mutable_specifier, + [63396] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66820] = 2, + ACTIONS(4748), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63405] = 3, + ACTIONS(3821), 1, + anon_sym_COLON_COLON, + ACTIONS(4801), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4130), 2, + [63416] = 3, + ACTIONS(3753), 1, + anon_sym_COLON_COLON, + ACTIONS(4801), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [66829] = 3, - ACTIONS(4683), 1, - anon_sym_SEMI, - ACTIONS(4685), 1, - anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66840] = 2, + [63427] = 3, + ACTIONS(3374), 1, + anon_sym_COLON_COLON, + ACTIONS(4803), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4687), 2, - sym_identifier, - sym_metavariable, - [66849] = 3, - ACTIONS(4177), 1, + [63438] = 3, + ACTIONS(4254), 1, sym_identifier, - ACTIONS(4181), 1, + ACTIONS(4258), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66860] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(44), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66871] = 2, + [63449] = 3, + ACTIONS(2370), 1, + anon_sym_LT2, + STATE(997), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3970), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66880] = 3, - ACTIONS(3924), 1, + [63460] = 3, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4689), 1, + ACTIONS(4805), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66891] = 3, - ACTIONS(4691), 1, - anon_sym_SEMI, - ACTIONS(4693), 1, - anon_sym_RBRACE, + [63471] = 3, + ACTIONS(3909), 1, + anon_sym_LBRACE, + STATE(289), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66902] = 3, - ACTIONS(3719), 1, - anon_sym_COLON_COLON, - ACTIONS(4695), 1, - anon_sym_RPAREN, + [63482] = 3, + ACTIONS(2362), 1, + anon_sym_LPAREN, + STATE(932), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66913] = 3, - ACTIONS(3723), 1, - anon_sym_COLON_COLON, - ACTIONS(4695), 1, - anon_sym_RPAREN, + [63493] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66924] = 3, - ACTIONS(3727), 1, - anon_sym_COLON_COLON, - ACTIONS(4695), 1, + ACTIONS(3977), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [63502] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(934), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66935] = 3, - ACTIONS(3924), 1, + [63513] = 3, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4697), 1, + ACTIONS(4807), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66946] = 3, - ACTIONS(3288), 1, - anon_sym_COLON_COLON, - ACTIONS(4699), 1, - anon_sym_RPAREN, + [63524] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66957] = 3, - ACTIONS(3924), 1, + [63535] = 3, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4701), 1, + ACTIONS(4809), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66968] = 3, - ACTIONS(3924), 1, + [63546] = 3, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4703), 1, + ACTIONS(4811), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66979] = 2, + [63557] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(869), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4705), 2, - sym_identifier, - sym_metavariable, - [66988] = 3, - ACTIONS(2302), 1, - anon_sym_LPAREN, - STATE(888), 1, - sym_parameters, + [63568] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4813), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66999] = 3, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(905), 1, - sym_declaration_list, + [63579] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4815), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67010] = 3, - ACTIONS(3302), 1, - anon_sym_COLON_COLON, - ACTIONS(4707), 1, - anon_sym_BANG, + [63590] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4817), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67021] = 2, + [63601] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4709), 2, + ACTIONS(4682), 2, anon_sym_RBRACE, anon_sym_COMMA, - [67030] = 3, - ACTIONS(3294), 1, - anon_sym_COLON_COLON, - ACTIONS(4707), 1, - anon_sym_BANG, + [63610] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67041] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4711), 1, - anon_sym_in, + ACTIONS(4198), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63619] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67052] = 3, - ACTIONS(3924), 1, + ACTIONS(4819), 2, + sym_identifier, + sym_metavariable, + [63628] = 3, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4713), 1, + ACTIONS(4821), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67063] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4715), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67074] = 3, - ACTIONS(2676), 1, + [63639] = 3, + ACTIONS(2728), 1, anon_sym_COLON, - ACTIONS(3767), 1, + ACTIONS(3871), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67085] = 3, - ACTIONS(3701), 1, - anon_sym_COLON, - ACTIONS(3767), 1, - anon_sym_PLUS, + [63650] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(863), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67096] = 2, + [63661] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4823), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4717), 2, - sym_identifier, - sym_metavariable, - [67105] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4719), 1, - anon_sym_EQ, + [63672] = 3, + ACTIONS(2724), 1, + anon_sym_COLON, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67116] = 3, - ACTIONS(3540), 1, + [63683] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(900), 1, + STATE(859), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67127] = 2, + [63694] = 3, + ACTIONS(3873), 1, + anon_sym_LBRACE, + STATE(734), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4213), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [67136] = 3, - ACTIONS(2566), 1, - anon_sym_COLON, - ACTIONS(3767), 1, - anon_sym_PLUS, + [63705] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(856), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67147] = 3, - ACTIONS(3540), 1, + [63716] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(732), 1, + STATE(855), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67158] = 3, - ACTIONS(3924), 1, + [63727] = 3, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4721), 1, + ACTIONS(4825), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67169] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1301), 1, - sym_parameters, + [63738] = 3, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1906), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67180] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4723), 1, - anon_sym_GT, + [63749] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4827), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67191] = 2, + [63760] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4829), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4725), 2, - sym_identifier, - sym_metavariable, - [67200] = 3, - ACTIONS(2520), 1, - anon_sym_COLON, - ACTIONS(3767), 1, - anon_sym_PLUS, + [63771] = 3, + ACTIONS(3805), 1, + anon_sym_RPAREN, + ACTIONS(4787), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67211] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(402), 1, - sym_declaration_list, + [63782] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67222] = 3, - ACTIONS(3502), 1, + ACTIONS(4304), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [63791] = 3, + ACTIONS(3873), 1, anon_sym_LBRACE, - STATE(403), 1, - sym_declaration_list, + STATE(844), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67233] = 3, - ACTIONS(2310), 1, - anon_sym_LT2, - STATE(1003), 1, - sym_type_arguments, + [63802] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67244] = 3, - ACTIONS(3540), 1, + ACTIONS(4831), 2, + sym_identifier, + sym_metavariable, + [63811] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(756), 1, + STATE(421), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67255] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4727), 1, - anon_sym_SEMI, + [63822] = 3, + ACTIONS(3594), 1, + anon_sym_LBRACE, + STATE(841), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67266] = 2, + [63833] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4833), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4729), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [67275] = 3, - ACTIONS(3540), 1, + [63844] = 3, + ACTIONS(3594), 1, anon_sym_LBRACE, - STATE(759), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67286] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4731), 1, - anon_sym_EQ, + STATE(839), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67297] = 3, - ACTIONS(3540), 1, + [63855] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(762), 1, + STATE(838), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67308] = 3, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(771), 1, - sym_declaration_list, + [63866] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67319] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4733), 1, + ACTIONS(4835), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63875] = 3, + ACTIONS(3801), 1, + anon_sym_RBRACE, + ACTIONS(4787), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67330] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4735), 1, - anon_sym_in, + [63886] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67341] = 2, + ACTIONS(4645), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63895] = 3, + ACTIONS(2642), 1, + anon_sym_COLON, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4222), 2, - anon_sym_COMMA, + [63906] = 3, + ACTIONS(4056), 1, anon_sym_PIPE, - [67350] = 3, - ACTIONS(3833), 1, - anon_sym_LBRACE, - STATE(946), 1, - sym_enum_variant_list, + ACTIONS(4837), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67361] = 3, - ACTIONS(4737), 1, + [63917] = 3, + ACTIONS(4839), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4841), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67372] = 2, + [63928] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4741), 2, + ACTIONS(4843), 2, sym_identifier, sym_metavariable, - [67381] = 3, - ACTIONS(3833), 1, - anon_sym_LBRACE, - STATE(848), 1, - sym_enum_variant_list, + [63937] = 3, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4787), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67392] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4743), 1, - anon_sym_EQ, + [63948] = 3, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(1568), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67403] = 3, - ACTIONS(2516), 1, - anon_sym_COLON, - ACTIONS(3767), 1, - anon_sym_PLUS, + [63959] = 3, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(1311), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67414] = 3, - ACTIONS(3554), 1, + [63970] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(856), 1, - sym_field_declaration_list, + STATE(298), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67425] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4745), 1, + [63981] = 3, + ACTIONS(3785), 1, + anon_sym_RBRACE, + ACTIONS(4787), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67436] = 3, - ACTIONS(3554), 1, + [63992] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(859), 1, - sym_field_declaration_list, + STATE(317), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67447] = 3, - ACTIONS(3540), 1, + [64003] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(861), 1, + STATE(417), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67458] = 3, - ACTIONS(3735), 1, - anon_sym_RBRACE, - ACTIONS(4691), 1, - anon_sym_SEMI, + [64014] = 3, + ACTIONS(4337), 1, + sym_identifier, + ACTIONS(4341), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67469] = 2, + [64025] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(806), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4270), 2, - anon_sym_COMMA, - anon_sym_GT, - [67478] = 3, - ACTIONS(3502), 1, + [64036] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(383), 1, + STATE(805), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67489] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1544), 1, - sym_parameters, + [64047] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(316), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67500] = 3, - ACTIONS(3502), 1, + [64058] = 3, + ACTIONS(3909), 1, anon_sym_LBRACE, - STATE(369), 1, - sym_declaration_list, + STATE(326), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67511] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1564), 1, - sym_parameters, + [64069] = 3, + ACTIONS(3586), 1, + anon_sym_LBRACE, + STATE(329), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67522] = 3, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1931), 1, - sym_lifetime, + [64080] = 3, + ACTIONS(3586), 1, + anon_sym_LBRACE, + STATE(314), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67533] = 3, - ACTIONS(3769), 1, + [64091] = 3, + ACTIONS(279), 1, anon_sym_LBRACE, - STATE(277), 1, - sym_enum_variant_list, + STATE(1032), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67544] = 3, - ACTIONS(3502), 1, + [64102] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(382), 1, + STATE(792), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67555] = 3, - ACTIONS(4747), 1, - anon_sym_LBRACK, - ACTIONS(4749), 1, - anon_sym_BANG, + [64113] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4845), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67566] = 3, - ACTIONS(85), 1, + [64124] = 3, + ACTIONS(4052), 1, + anon_sym_COLON, + ACTIONS(4056), 1, anon_sym_PIPE, - STATE(77), 1, - sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67577] = 3, - ACTIONS(279), 1, + [64135] = 3, + ACTIONS(4847), 1, + anon_sym_LBRACK, + ACTIONS(4849), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64146] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(958), 1, - sym_block, + STATE(787), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67588] = 3, - ACTIONS(3514), 1, + [64157] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4851), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64168] = 3, + ACTIONS(3759), 1, + anon_sym_RPAREN, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64179] = 3, + ACTIONS(3586), 1, anon_sym_LBRACE, - STATE(282), 1, + STATE(335), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67599] = 2, + [64190] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4853), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4531), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [67608] = 3, - ACTIONS(3540), 1, + [64201] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(890), 1, + STATE(779), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67619] = 3, - ACTIONS(15), 1, + [64212] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(47), 1, - sym_block, + STATE(778), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67630] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1538), 1, - sym_parameters, + [64223] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(86), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67641] = 3, - ACTIONS(3514), 1, - anon_sym_LBRACE, - STATE(285), 1, - sym_field_declaration_list, + [64234] = 3, + ACTIONS(4855), 1, + anon_sym_SEMI, + ACTIONS(4857), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64245] = 3, + ACTIONS(4859), 1, + anon_sym_SEMI, + ACTIONS(4861), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67652] = 3, - ACTIONS(3502), 1, + [64256] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(426), 1, + STATE(311), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67663] = 3, - ACTIONS(3153), 1, + [64267] = 3, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(1565), 1, + STATE(1581), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67674] = 3, - ACTIONS(3695), 1, - anon_sym_RPAREN, - ACTIONS(4691), 1, - anon_sym_SEMI, + [64278] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4863), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67685] = 3, - ACTIONS(3540), 1, + [64289] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(902), 1, + STATE(455), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67696] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4751), 1, - anon_sym_SEMI, + [64300] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(65), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67707] = 3, - ACTIONS(4753), 1, - anon_sym_SEMI, - ACTIONS(4755), 1, - anon_sym_as, + [64311] = 3, + ACTIONS(3594), 1, + anon_sym_LBRACE, + STATE(942), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67718] = 3, - ACTIONS(3540), 1, + [64322] = 3, + ACTIONS(3586), 1, anon_sym_LBRACE, - STATE(907), 1, - sym_declaration_list, + STATE(453), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67729] = 3, - ACTIONS(3540), 1, + [64333] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(914), 1, + STATE(310), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67740] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1285), 1, - sym_parameters, + [64344] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(760), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67751] = 2, + [64355] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(759), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4757), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [67760] = 3, - ACTIONS(4759), 1, + [64366] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4865), 1, anon_sym_SEMI, - ACTIONS(4761), 1, - anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67771] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4763), 1, - anon_sym_SEMI, + [64377] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(937), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64388] = 3, + ACTIONS(3586), 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, - [67782] = 3, - ACTIONS(3540), 1, + [64410] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(935), 1, + STATE(752), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67793] = 3, - ACTIONS(3540), 1, + [64421] = 3, + ACTIONS(3594), 1, anon_sym_LBRACE, - STATE(950), 1, - sym_declaration_list, + STATE(933), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67804] = 3, - ACTIONS(3725), 1, - anon_sym_RBRACE, - ACTIONS(4691), 1, + [64432] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4869), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67815] = 3, - ACTIONS(2332), 1, - anon_sym_LBRACE, - STATE(1018), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67826] = 2, + [64443] = 3, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(1566), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2153), 2, - anon_sym_COMMA, - anon_sym_GT, - [67835] = 3, - ACTIONS(3554), 1, + [64454] = 3, + ACTIONS(3586), 1, anon_sym_LBRACE, - STATE(918), 1, + STATE(309), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67846] = 3, - ACTIONS(3502), 1, + [64465] = 3, + ACTIONS(2422), 1, anon_sym_LBRACE, - STATE(355), 1, - sym_declaration_list, + STATE(1082), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67857] = 3, - ACTIONS(3502), 1, + [64476] = 3, + ACTIONS(3909), 1, anon_sym_LBRACE, - STATE(337), 1, - sym_declaration_list, + STATE(444), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67868] = 3, - ACTIONS(3540), 1, + [64487] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(887), 1, + STATE(408), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67879] = 3, - ACTIONS(3554), 1, + [64498] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(882), 1, - sym_field_declaration_list, + STATE(406), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67890] = 3, - ACTIONS(4691), 1, + [64509] = 3, + ACTIONS(4787), 1, anon_sym_SEMI, - ACTIONS(4765), 1, + ACTIONS(4871), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67901] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(321), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67912] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3995), 2, - anon_sym_COMMA, - anon_sym_GT, - [67921] = 3, - ACTIONS(3540), 1, + [64520] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(827), 1, + STATE(924), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67932] = 3, - ACTIONS(3540), 1, + [64531] = 3, + ACTIONS(644), 1, anon_sym_LBRACE, - STATE(779), 1, - sym_declaration_list, + STATE(229), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67943] = 3, - ACTIONS(4767), 1, + [64542] = 3, + ACTIONS(4787), 1, anon_sym_SEMI, - ACTIONS(4769), 1, - anon_sym_as, + ACTIONS(4873), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67954] = 3, - ACTIONS(3514), 1, + [64553] = 3, + ACTIONS(644), 1, anon_sym_LBRACE, - STATE(333), 1, - sym_field_declaration_list, + STATE(235), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67965] = 3, - ACTIONS(3502), 1, + [64564] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(371), 1, + STATE(415), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67976] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(418), 1, - sym_declaration_list, + [64575] = 3, + ACTIONS(2362), 1, + anon_sym_LPAREN, + STATE(922), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67987] = 3, - ACTIONS(3540), 1, + [64586] = 3, + ACTIONS(644), 1, anon_sym_LBRACE, - STATE(817), 1, - sym_declaration_list, + STATE(226), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67998] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(419), 1, - sym_declaration_list, + [64597] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68009] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4771), 1, - anon_sym_in, + ACTIONS(4567), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64606] = 3, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(4875), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68020] = 3, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(744), 1, - sym_declaration_list, + [64617] = 3, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(4877), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68031] = 3, - ACTIONS(2302), 1, - anon_sym_LPAREN, - STATE(731), 1, - sym_parameters, + [64628] = 3, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(4879), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68042] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(422), 1, - sym_declaration_list, + [64639] = 3, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(4881), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68053] = 3, - ACTIONS(4773), 1, + [64650] = 3, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4775), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68064] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1547), 1, - sym_parameters, + [64661] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68075] = 3, - ACTIONS(4777), 1, + ACTIONS(4887), 2, sym_identifier, - ACTIONS(4779), 1, - sym_mutable_specifier, + sym_metavariable, + [64670] = 3, + ACTIONS(4889), 1, + anon_sym_LPAREN, + ACTIONS(4891), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68086] = 3, - ACTIONS(279), 1, - anon_sym_LBRACE, - STATE(972), 1, - sym_block, + [64681] = 3, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(1584), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68097] = 2, + [64692] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4148), 2, + ACTIONS(2157), 2, anon_sym_COMMA, anon_sym_GT, - [68106] = 3, - ACTIONS(638), 1, + [64701] = 3, + ACTIONS(279), 1, anon_sym_LBRACE, - STATE(219), 1, + STATE(1072), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68117] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(265), 1, - sym_declaration_list, + [64712] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68128] = 3, - ACTIONS(638), 1, + ACTIONS(4542), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64721] = 3, + ACTIONS(279), 1, anon_sym_LBRACE, - STATE(229), 1, + STATE(1084), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68139] = 3, - ACTIONS(3502), 1, + [64732] = 3, + ACTIONS(3586), 1, anon_sym_LBRACE, - STATE(263), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68150] = 3, - ACTIONS(4691), 1, - anon_sym_SEMI, - ACTIONS(4781), 1, - anon_sym_RPAREN, + STATE(279), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68161] = 3, - ACTIONS(638), 1, + [64743] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(224), 1, - sym_block, + STATE(270), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68172] = 3, - ACTIONS(4691), 1, - anon_sym_SEMI, - ACTIONS(4783), 1, - anon_sym_RBRACE, + [64754] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68183] = 3, - ACTIONS(3675), 1, + ACTIONS(4893), 2, + sym_identifier, + sym_metavariable, + [64763] = 3, + ACTIONS(3831), 1, + anon_sym_COLON_COLON, + ACTIONS(4895), 1, anon_sym_RPAREN, - ACTIONS(4691), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68194] = 3, - ACTIONS(3514), 1, - anon_sym_LBRACE, - STATE(317), 1, - sym_field_declaration_list, + [64774] = 3, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(4897), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68205] = 3, - ACTIONS(3288), 1, + [64785] = 3, + ACTIONS(3821), 1, anon_sym_COLON_COLON, - ACTIONS(4785), 1, + ACTIONS(4895), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68216] = 3, - ACTIONS(3514), 1, - anon_sym_LBRACE, - STATE(257), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68227] = 3, - ACTIONS(15), 1, + [64796] = 3, + ACTIONS(644), 1, anon_sym_LBRACE, - STATE(48), 1, + STATE(213), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68238] = 3, - ACTIONS(3833), 1, - anon_sym_LBRACE, - STATE(747), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68249] = 3, - ACTIONS(3727), 1, + [64807] = 3, + ACTIONS(3753), 1, anon_sym_COLON_COLON, - ACTIONS(4787), 1, + ACTIONS(4895), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68260] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4789), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68271] = 3, - ACTIONS(3502), 1, + [64818] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(412), 1, + STATE(430), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68282] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(438), 1, - sym_declaration_list, + [64829] = 3, + ACTIONS(4899), 1, + sym_identifier, + ACTIONS(4901), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68293] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4791), 1, - anon_sym_SEMI, + [64840] = 3, + ACTIONS(3374), 1, + anon_sym_COLON_COLON, + ACTIONS(4903), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68304] = 3, - ACTIONS(3502), 1, + [64851] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(279), 1, + STATE(427), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68315] = 3, - ACTIONS(4300), 1, - sym_identifier, - ACTIONS(4304), 1, - sym_mutable_specifier, + [64862] = 3, + ACTIONS(3781), 1, + anon_sym_RPAREN, + ACTIONS(4787), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68326] = 3, - ACTIONS(3514), 1, + [64873] = 3, + ACTIONS(3586), 1, anon_sym_LBRACE, - STATE(331), 1, + STATE(263), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68337] = 3, - ACTIONS(3723), 1, - anon_sym_COLON_COLON, - ACTIONS(4787), 1, + [64884] = 3, + ACTIONS(3773), 1, anon_sym_RPAREN, + ACTIONS(4787), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68348] = 3, - ACTIONS(3502), 1, + [64895] = 3, + ACTIONS(3873), 1, anon_sym_LBRACE, - STATE(249), 1, - sym_declaration_list, + STATE(879), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68359] = 2, + [64906] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(425), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4435), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [68368] = 3, - ACTIONS(638), 1, + [64917] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(238), 1, + STATE(66), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68379] = 3, - ACTIONS(3153), 1, + [64928] = 3, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(1548), 1, + STATE(1295), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68390] = 3, - ACTIONS(3769), 1, - anon_sym_LBRACE, - STATE(328), 1, - sym_enum_variant_list, + [64939] = 3, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(1577), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68401] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(288), 1, - sym_declaration_list, + [64950] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4905), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68412] = 3, - ACTIONS(3502), 1, + [64961] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(441), 1, + STATE(416), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68423] = 3, - ACTIONS(638), 1, + [64972] = 3, + ACTIONS(279), 1, anon_sym_LBRACE, - STATE(232), 1, + STATE(1085), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68434] = 3, - ACTIONS(3719), 1, - anon_sym_COLON_COLON, - ACTIONS(4787), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68445] = 3, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(4793), 1, - anon_sym_COLON_COLON, + [64983] = 3, + ACTIONS(4907), 1, + sym_identifier, + ACTIONS(4909), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68456] = 3, + [64994] = 3, ACTIONS(85), 1, anon_sym_PIPE, - STATE(84), 1, + STATE(83), 1, sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68467] = 3, - ACTIONS(4795), 1, - anon_sym_LT, - STATE(634), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68478] = 2, + [65005] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4406), 2, + ACTIONS(4911), 2, anon_sym_RBRACE, anon_sym_COMMA, - [68487] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4797), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68498] = 3, - ACTIONS(848), 1, + [65014] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(1391), 1, - sym_block, + STATE(372), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68509] = 3, - ACTIONS(3769), 1, - anon_sym_LBRACE, - STATE(395), 1, - sym_enum_variant_list, + [65025] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4913), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68520] = 3, - ACTIONS(3514), 1, - anon_sym_LBRACE, - STATE(250), 1, - sym_field_declaration_list, + [65036] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68531] = 3, - ACTIONS(279), 1, - anon_sym_LBRACE, - STATE(1020), 1, - sym_block, + ACTIONS(4127), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65045] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4915), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68542] = 3, - ACTIONS(279), 1, + [65056] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(1000), 1, - sym_block, + STATE(369), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68553] = 3, - ACTIONS(4799), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACE, + [65067] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68564] = 3, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(677), 1, - sym_type_parameters, + ACTIONS(4917), 2, + anon_sym_const, + sym_mutable_specifier, + [65076] = 3, + ACTIONS(3368), 1, + anon_sym_BANG, + ACTIONS(4919), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68575] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1287), 1, - sym_parameters, + [65087] = 3, + ACTIONS(3348), 1, + anon_sym_COLON_COLON, + ACTIONS(4921), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68586] = 3, - ACTIONS(3502), 1, + [65098] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(294), 1, + STATE(381), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68597] = 3, - ACTIONS(3514), 1, - anon_sym_LBRACE, - STATE(430), 1, - sym_field_declaration_list, + [65109] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68608] = 2, + ACTIONS(4923), 2, + anon_sym_const, + sym_mutable_specifier, + [65118] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3861), 2, - anon_sym_RPAREN, + ACTIONS(4925), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [68617] = 2, + [65127] = 3, + ACTIONS(2478), 1, + anon_sym_COLON_COLON, + ACTIONS(3739), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4803), 2, - anon_sym_const, - sym_mutable_specifier, - [68626] = 3, - ACTIONS(3276), 1, - anon_sym_BANG, - ACTIONS(4805), 1, - anon_sym_COLON_COLON, + [65138] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68637] = 3, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(842), 1, - sym_field_declaration_list, + ACTIONS(3863), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65147] = 3, + ACTIONS(3298), 1, + anon_sym_COLON_COLON, + ACTIONS(3382), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68648] = 3, - ACTIONS(3608), 1, - anon_sym_COLON, - STATE(1826), 1, - sym_trait_bounds, + [65158] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68659] = 2, + ACTIONS(4443), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65167] = 3, + ACTIONS(3594), 1, + anon_sym_LBRACE, + STATE(912), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4208), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [68668] = 3, - ACTIONS(3502), 1, + [65178] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(440), 1, + STATE(386), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68679] = 2, + [65189] = 3, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(1304), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4807), 2, - sym_float_literal, - sym_integer_literal, - [68688] = 3, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(2067), 1, - sym_lifetime, + [65200] = 3, + ACTIONS(644), 1, + anon_sym_LBRACE, + STATE(224), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68699] = 3, - ACTIONS(3502), 1, + [65211] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(271), 1, + STATE(385), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68710] = 3, - ACTIONS(279), 1, + [65222] = 3, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4929), 1, anon_sym_LBRACE, - STATE(981), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68721] = 3, - ACTIONS(2302), 1, + [65233] = 3, + ACTIONS(4931), 1, anon_sym_LPAREN, - STATE(845), 1, - sym_parameters, + ACTIONS(4933), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68732] = 2, + [65244] = 3, + ACTIONS(4935), 1, + anon_sym_SEMI, + ACTIONS(4937), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4809), 2, - sym_identifier, - sym_metavariable, - [68741] = 2, + [65255] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4811), 2, - anon_sym_const, - sym_mutable_specifier, - [68750] = 2, - ACTIONS(4813), 1, - sym_identifier, + ACTIONS(4116), 2, + anon_sym_COMMA, + anon_sym_GT, + [65264] = 3, + ACTIONS(3366), 1, + anon_sym_COLON_COLON, + ACTIONS(4921), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68758] = 2, - ACTIONS(4815), 1, - anon_sym_RPAREN, + [65275] = 3, + ACTIONS(279), 1, + anon_sym_LBRACE, + STATE(1075), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68766] = 2, - ACTIONS(4817), 1, - sym_identifier, + [65286] = 3, + ACTIONS(874), 1, + anon_sym_LBRACE, + STATE(1374), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68774] = 2, - ACTIONS(4819), 1, - anon_sym_SEMI, + [65297] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(301), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68782] = 2, - ACTIONS(4821), 1, - anon_sym_RBRACE, + [65308] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68790] = 2, - ACTIONS(4823), 1, - anon_sym_LPAREN, + ACTIONS(4939), 2, + sym_float_literal, + sym_integer_literal, + [65317] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68798] = 2, - ACTIONS(4825), 1, - anon_sym_RPAREN, + ACTIONS(4941), 2, + anon_sym_const, + sym_mutable_specifier, + [65326] = 3, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(2046), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68806] = 2, - ACTIONS(4827), 1, - sym_identifier, + [65337] = 2, + ACTIONS(2261), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68814] = 2, - ACTIONS(4829), 1, - sym_identifier, + [65345] = 2, + ACTIONS(4943), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68822] = 2, - ACTIONS(4392), 1, - anon_sym_RPAREN, + [65353] = 2, + ACTIONS(4534), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68830] = 2, - ACTIONS(4831), 1, + [65361] = 2, + ACTIONS(4945), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68838] = 2, - ACTIONS(4833), 1, + [65369] = 2, + ACTIONS(4947), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68846] = 2, - ACTIONS(4835), 1, - anon_sym_RPAREN, + [65377] = 2, + ACTIONS(4510), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68854] = 2, - ACTIONS(4837), 1, + [65385] = 2, + ACTIONS(4949), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68862] = 2, - ACTIONS(2195), 1, - anon_sym_PLUS, + [65393] = 2, + ACTIONS(4951), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68870] = 2, - ACTIONS(4376), 1, - sym_identifier, + [65401] = 2, + ACTIONS(4953), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68878] = 2, - ACTIONS(4839), 1, + [65409] = 2, + ACTIONS(4268), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68886] = 2, - ACTIONS(4841), 1, - anon_sym_RBRACK, + [65417] = 2, + ACTIONS(4955), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68894] = 2, - ACTIONS(2185), 1, - anon_sym_PLUS, + [65425] = 2, + ACTIONS(4957), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68902] = 2, - ACTIONS(4843), 1, + [65433] = 2, + ACTIONS(4959), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68910] = 2, - ACTIONS(4845), 1, - anon_sym_fn, + [65441] = 2, + ACTIONS(4961), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68918] = 2, - ACTIONS(4847), 1, - anon_sym_SEMI, + [65449] = 2, + ACTIONS(4963), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68926] = 2, - ACTIONS(4849), 1, + [65457] = 2, + ACTIONS(4965), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68934] = 2, - ACTIONS(4360), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68942] = 2, - ACTIONS(4851), 1, + [65465] = 2, + ACTIONS(4500), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68950] = 2, - ACTIONS(4853), 1, - anon_sym_COLON, + [65473] = 2, + ACTIONS(4967), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68958] = 2, - ACTIONS(4855), 1, + [65481] = 2, + ACTIONS(4492), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68966] = 2, - ACTIONS(4857), 1, + [65489] = 2, + ACTIONS(4969), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68974] = 2, - ACTIONS(4364), 1, - sym_identifier, + [65497] = 2, + ACTIONS(3374), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68982] = 2, - ACTIONS(4859), 1, - sym_identifier, + [65505] = 2, + ACTIONS(4971), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68990] = 2, - ACTIONS(4861), 1, - sym_identifier, + [65513] = 2, + ACTIONS(4973), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68998] = 2, - ACTIONS(4863), 1, - anon_sym_RBRACK, + [65521] = 2, + ACTIONS(4975), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69006] = 2, - ACTIONS(4865), 1, - anon_sym_LT, + [65529] = 2, + ACTIONS(4484), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69014] = 2, - ACTIONS(4867), 1, + [65537] = 2, + ACTIONS(4977), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69022] = 2, - ACTIONS(4869), 1, - sym_self, + [65545] = 2, + ACTIONS(4979), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69030] = 2, - ACTIONS(4871), 1, + [65553] = 2, + ACTIONS(4462), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69038] = 2, - ACTIONS(4372), 1, - anon_sym_RBRACE, + [65561] = 2, + ACTIONS(4981), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69046] = 2, - ACTIONS(4873), 1, + [65569] = 2, + ACTIONS(4983), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69054] = 2, - ACTIONS(4356), 1, - sym_identifier, + [65577] = 2, + ACTIONS(4985), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69062] = 2, - ACTIONS(4875), 1, - sym_identifier, + [65585] = 2, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69070] = 2, - ACTIONS(4877), 1, - sym_identifier, + [65593] = 2, + ACTIONS(3867), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69078] = 2, - ACTIONS(4879), 1, + [65601] = 2, + ACTIONS(4987), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69086] = 2, - ACTIONS(4881), 1, - anon_sym_COLON_COLON, + [65609] = 2, + ACTIONS(4989), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69094] = 2, - ACTIONS(4883), 1, + [65617] = 2, + ACTIONS(4991), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69102] = 2, - ACTIONS(4885), 1, + [65625] = 2, + ACTIONS(4993), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69110] = 2, - ACTIONS(4887), 1, - sym_identifier, + [65633] = 2, + ACTIONS(4995), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69118] = 2, - ACTIONS(4889), 1, + [65641] = 2, + ACTIONS(4997), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69126] = 2, - ACTIONS(3238), 1, + [65649] = 2, + ACTIONS(3111), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69134] = 2, - ACTIONS(3865), 1, + [65657] = 2, + ACTIONS(3292), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69142] = 2, - ACTIONS(4891), 1, - anon_sym_SEMI, + [65665] = 2, + ACTIONS(4999), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69150] = 2, - ACTIONS(3049), 1, + [65673] = 2, + ACTIONS(2995), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69158] = 2, - ACTIONS(3224), 1, + [65681] = 2, + ACTIONS(5001), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69166] = 2, - ACTIONS(4893), 1, + [65689] = 2, + ACTIONS(5003), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69174] = 2, - ACTIONS(4895), 1, - sym_identifier, + [65697] = 2, + ACTIONS(5005), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69182] = 2, - ACTIONS(4246), 1, - sym_identifier, + [65705] = 2, + ACTIONS(5007), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69190] = 2, - ACTIONS(3039), 1, - anon_sym_COLON_COLON, + [65713] = 2, + ACTIONS(4769), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69198] = 2, - ACTIONS(4897), 1, - anon_sym_COLON_COLON, + [65721] = 2, + ACTIONS(5009), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69206] = 2, - ACTIONS(4899), 1, - anon_sym_fn, + [65729] = 2, + ACTIONS(5011), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69214] = 2, - ACTIONS(4901), 1, + [65737] = 2, + ACTIONS(5013), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69222] = 2, - ACTIONS(4903), 1, - anon_sym_EQ, + [65745] = 2, + ACTIONS(5015), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69230] = 2, - ACTIONS(4905), 1, + [65753] = 2, + ACTIONS(5017), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69238] = 2, - ACTIONS(4907), 1, + [65761] = 2, + ACTIONS(5019), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69246] = 2, - ACTIONS(4909), 1, + [65769] = 2, + ACTIONS(5021), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69254] = 2, - ACTIONS(4911), 1, + [65777] = 2, + ACTIONS(5023), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69262] = 2, - ACTIONS(4913), 1, - sym_identifier, + [65785] = 2, + ACTIONS(5025), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69270] = 2, - ACTIONS(3914), 1, - anon_sym_RPAREN, + [65793] = 2, + ACTIONS(5027), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69278] = 2, - ACTIONS(4637), 1, + [65801] = 2, + ACTIONS(5029), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69286] = 2, - ACTIONS(4915), 1, - anon_sym_RBRACE, + [65809] = 2, + ACTIONS(5031), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69294] = 2, - ACTIONS(4917), 1, - anon_sym_COLON, + [65817] = 2, + ACTIONS(5033), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69302] = 2, - ACTIONS(2408), 1, - anon_sym_COLON_COLON, + [65825] = 2, + ACTIONS(5035), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69310] = 2, - ACTIONS(4288), 1, + [65833] = 2, + ACTIONS(5037), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69318] = 2, - ACTIONS(4919), 1, + [65841] = 2, + ACTIONS(5039), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69326] = 2, - ACTIONS(4921), 1, - anon_sym_SEMI, + [65849] = 2, + ACTIONS(2478), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69334] = 2, - ACTIONS(2384), 1, - anon_sym_COLON_COLON, + [65857] = 2, + ACTIONS(5041), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69342] = 2, - ACTIONS(4805), 1, + [65865] = 2, + ACTIONS(4919), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69350] = 2, - ACTIONS(4923), 1, + [65873] = 2, + ACTIONS(5043), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69358] = 2, - ACTIONS(4925), 1, + [65881] = 2, + ACTIONS(5045), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69366] = 2, - ACTIONS(4927), 1, + [65889] = 2, + ACTIONS(5047), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69374] = 2, - ACTIONS(4929), 1, - anon_sym_RBRACK, + [65897] = 2, + ACTIONS(5049), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69382] = 2, - ACTIONS(4931), 1, + [65905] = 2, + ACTIONS(5051), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69390] = 2, - ACTIONS(4431), 1, - sym_identifier, + [65913] = 2, + ACTIONS(5053), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69398] = 2, - ACTIONS(4933), 1, + [65921] = 2, + ACTIONS(5055), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69406] = 2, - ACTIONS(2464), 1, + [65929] = 2, + ACTIONS(4387), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65937] = 2, + ACTIONS(2472), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69414] = 2, - ACTIONS(4935), 1, - sym_identifier, + [65945] = 2, + ACTIONS(5057), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69422] = 2, - ACTIONS(4937), 1, - anon_sym_SEMI, + [65953] = 2, + ACTIONS(5059), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69430] = 2, - ACTIONS(4939), 1, + [65961] = 2, + ACTIONS(5061), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69438] = 2, - ACTIONS(4941), 1, + [65969] = 2, + ACTIONS(5063), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69446] = 2, - ACTIONS(4943), 1, - sym_identifier, + [65977] = 2, + ACTIONS(2951), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69454] = 2, - ACTIONS(4503), 1, + [65985] = 2, + ACTIONS(5065), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69462] = 2, - ACTIONS(4945), 1, + [65993] = 2, + ACTIONS(5067), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69470] = 2, - ACTIONS(4947), 1, + [66001] = 2, + ACTIONS(5069), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66009] = 2, + ACTIONS(5071), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69478] = 2, - ACTIONS(4949), 1, + [66017] = 2, + ACTIONS(2247), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66025] = 2, + ACTIONS(5073), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69486] = 2, - ACTIONS(4951), 1, + [66033] = 2, + ACTIONS(4290), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69494] = 2, - ACTIONS(4953), 1, - anon_sym_COLON, + [66041] = 2, + ACTIONS(5075), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69502] = 2, - ACTIONS(4955), 1, + [66049] = 2, + ACTIONS(4540), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69510] = 2, - ACTIONS(4957), 1, + [66057] = 2, + ACTIONS(5077), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69518] = 2, - ACTIONS(4783), 1, + [66065] = 2, + ACTIONS(5079), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66073] = 2, + ACTIONS(5081), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69526] = 2, - ACTIONS(4959), 1, + [66081] = 2, + ACTIONS(5083), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69534] = 2, - ACTIONS(365), 1, + [66089] = 2, + ACTIONS(363), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69542] = 2, - ACTIONS(4961), 1, - anon_sym_RPAREN, + [66097] = 2, + ACTIONS(5085), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69550] = 2, - ACTIONS(4963), 1, + [66105] = 2, + ACTIONS(4538), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69558] = 2, - ACTIONS(4453), 1, - sym_identifier, + [66113] = 2, + ACTIONS(5087), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69566] = 2, - ACTIONS(4965), 1, - anon_sym_fn, + [66121] = 2, + ACTIONS(4351), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69574] = 2, - ACTIONS(4967), 1, + [66129] = 2, + ACTIONS(5089), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69582] = 2, - ACTIONS(3015), 1, + [66137] = 2, + ACTIONS(5091), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69590] = 2, - ACTIONS(2149), 1, - anon_sym_EQ_GT, + [66145] = 2, + ACTIONS(5093), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69598] = 2, - ACTIONS(4969), 1, - sym_identifier, + [66153] = 2, + ACTIONS(5095), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69606] = 2, - ACTIONS(4971), 1, - anon_sym_COLON, + [66161] = 2, + ACTIONS(5097), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69614] = 2, - ACTIONS(4973), 1, + [66169] = 2, + ACTIONS(5099), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69622] = 2, - ACTIONS(4975), 1, - sym_identifier, + [66177] = 2, + ACTIONS(4050), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69630] = 2, - ACTIONS(4977), 1, + [66185] = 2, + ACTIONS(5101), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69638] = 2, - ACTIONS(4979), 1, - sym_identifier, + [66193] = 2, + ACTIONS(5103), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69646] = 2, - ACTIONS(4981), 1, + [66201] = 2, + ACTIONS(4549), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66209] = 2, + ACTIONS(5105), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69654] = 2, - ACTIONS(4442), 1, - anon_sym_RBRACE, + [66217] = 2, + ACTIONS(4565), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69662] = 2, - ACTIONS(4983), 1, - anon_sym_RBRACK, + [66225] = 2, + ACTIONS(4522), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69670] = 2, - ACTIONS(4985), 1, + [66233] = 2, + ACTIONS(5107), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69678] = 2, - ACTIONS(4987), 1, - anon_sym_COLON_COLON, + [66241] = 2, + ACTIONS(5109), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69686] = 2, - ACTIONS(4989), 1, + [66249] = 2, + ACTIONS(4881), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69694] = 2, - ACTIONS(4991), 1, - anon_sym_COLON, + [66257] = 2, + ACTIONS(5111), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69702] = 2, - ACTIONS(4993), 1, - anon_sym_COLON, + [66265] = 2, + ACTIONS(5113), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69710] = 2, - ACTIONS(4220), 1, - sym_identifier, + [66273] = 2, + ACTIONS(2464), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69718] = 2, - ACTIONS(4995), 1, + [66281] = 2, + ACTIONS(5115), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69726] = 2, - ACTIONS(4997), 1, + [66289] = 2, + ACTIONS(4873), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69734] = 2, - ACTIONS(4999), 1, - anon_sym_EQ_GT, + [66297] = 2, + ACTIONS(5117), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69742] = 2, - ACTIONS(3723), 1, - anon_sym_COLON_COLON, + [66305] = 2, + ACTIONS(5119), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69750] = 2, - ACTIONS(5001), 1, - anon_sym_EQ_GT, + [66313] = 2, + ACTIONS(5121), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69758] = 2, - ACTIONS(5003), 1, - sym_identifier, + [66321] = 2, + ACTIONS(3821), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69766] = 2, - ACTIONS(5005), 1, - anon_sym_RBRACK, + [66329] = 2, + ACTIONS(5123), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69774] = 2, - ACTIONS(5007), 1, - anon_sym_RBRACE, + [66337] = 2, + ACTIONS(5125), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69782] = 2, - ACTIONS(3725), 1, + [66345] = 2, + ACTIONS(5127), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69790] = 2, - ACTIONS(3165), 1, + [66353] = 2, + ACTIONS(5129), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66361] = 2, + ACTIONS(2179), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66369] = 2, + ACTIONS(3257), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69798] = 2, - ACTIONS(5009), 1, + [66377] = 2, + ACTIONS(5131), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69806] = 2, - ACTIONS(5011), 1, - anon_sym_EQ, + [66385] = 2, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69814] = 2, - ACTIONS(2666), 1, + [66393] = 2, + ACTIONS(2866), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69822] = 2, - ACTIONS(5013), 1, - anon_sym_EQ_GT, + [66401] = 2, + ACTIONS(5135), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69830] = 2, - ACTIONS(5015), 1, + [66409] = 2, + ACTIONS(5137), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69838] = 2, - ACTIONS(5017), 1, + [66417] = 2, + ACTIONS(5139), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69846] = 2, - ACTIONS(4793), 1, - anon_sym_COLON_COLON, + [66425] = 2, + ACTIONS(5141), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69854] = 2, - ACTIONS(5019), 1, + [66433] = 2, + ACTIONS(5143), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69862] = 2, - ACTIONS(5021), 1, - sym_identifier, + [66441] = 2, + ACTIONS(3795), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69870] = 2, - ACTIONS(3230), 1, - anon_sym_COLON_COLON, + [66449] = 2, + ACTIONS(5145), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69878] = 2, - ACTIONS(4565), 1, - anon_sym_GT, + [66457] = 2, + ACTIONS(5147), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69886] = 2, - ACTIONS(5023), 1, - anon_sym_RPAREN, + [66465] = 2, + ACTIONS(5149), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69894] = 2, - ACTIONS(4322), 1, - anon_sym_RBRACE, + [66473] = 2, + ACTIONS(5151), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69902] = 2, - ACTIONS(5025), 1, - anon_sym_fn, + [66481] = 2, + ACTIONS(5153), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69910] = 2, - ACTIONS(2492), 1, + [66489] = 2, + ACTIONS(2480), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69918] = 2, - ACTIONS(5027), 1, + [66497] = 2, + ACTIONS(5155), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69926] = 2, - ACTIONS(3735), 1, - anon_sym_SEMI, + [66505] = 2, + ACTIONS(628), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69934] = 2, - ACTIONS(5029), 1, - anon_sym_COLON, + [66513] = 2, + ACTIONS(5157), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69942] = 2, - ACTIONS(5031), 1, - anon_sym_LPAREN, + [66521] = 2, + ACTIONS(2175), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69950] = 2, - ACTIONS(3857), 1, - sym_identifier, + [66529] = 2, + ACTIONS(5159), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69958] = 2, - ACTIONS(5033), 1, + [66537] = 2, + ACTIONS(5161), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69966] = 2, - ACTIONS(3918), 1, - anon_sym_RPAREN, + [66545] = 2, + ACTIONS(5163), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69974] = 2, - ACTIONS(5035), 1, + [66553] = 2, + ACTIONS(3785), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66561] = 2, + ACTIONS(5165), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69982] = 2, - ACTIONS(5037), 1, + [66569] = 2, + ACTIONS(5167), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69990] = 2, - ACTIONS(5039), 1, + [66577] = 2, + ACTIONS(5169), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66585] = 2, + ACTIONS(5171), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69998] = 2, - ACTIONS(5041), 1, + [66593] = 2, + ACTIONS(5173), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70006] = 2, - ACTIONS(4595), 1, - anon_sym_RBRACE, + [66601] = 2, + ACTIONS(5175), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70014] = 2, - ACTIONS(5043), 1, - anon_sym_SEMI, + [66609] = 2, + ACTIONS(5177), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70022] = 2, - ACTIONS(3785), 1, + [66617] = 2, + ACTIONS(3941), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70030] = 2, - ACTIONS(5045), 1, + [66625] = 2, + ACTIONS(5179), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70038] = 2, - ACTIONS(2121), 1, - anon_sym_EQ_GT, + [66633] = 2, + ACTIONS(5181), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70046] = 2, - ACTIONS(3829), 1, + [66641] = 2, + ACTIONS(3915), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70054] = 2, - ACTIONS(5047), 1, + [66649] = 2, + ACTIONS(5183), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70062] = 2, - ACTIONS(5049), 1, - anon_sym_SEMI, + [66657] = 2, + ACTIONS(5185), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70070] = 2, - ACTIONS(3773), 1, + [66665] = 2, + ACTIONS(3933), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70078] = 2, - ACTIONS(5051), 1, + [66673] = 2, + ACTIONS(5187), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70086] = 2, - ACTIONS(5053), 1, - sym_identifier, + [66681] = 2, + ACTIONS(4897), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70094] = 2, - ACTIONS(5055), 1, + [66689] = 2, + ACTIONS(4787), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70102] = 2, - ACTIONS(4583), 1, - anon_sym_RBRACE, + [66697] = 2, + ACTIONS(3801), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70110] = 2, - ACTIONS(5057), 1, - anon_sym_SEMI, + [66705] = 2, + ACTIONS(3855), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70118] = 2, - ACTIONS(5059), 1, + [66713] = 2, + ACTIONS(5189), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70126] = 2, - ACTIONS(5061), 1, + [66721] = 2, + ACTIONS(5191), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70134] = 2, - ACTIONS(5063), 1, + [66729] = 2, + ACTIONS(5193), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70142] = 2, - ACTIONS(5065), 1, + [66737] = 2, + ACTIONS(5195), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70150] = 2, - ACTIONS(3910), 1, - anon_sym_RPAREN, + [66745] = 2, + ACTIONS(5197), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70158] = 2, - ACTIONS(4005), 1, - anon_sym_RBRACK, + [66753] = 2, + ACTIONS(5199), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70166] = 2, - ACTIONS(5067), 1, - anon_sym_SEMI, + [66761] = 2, + ACTIONS(3298), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70174] = 2, - ACTIONS(5069), 1, + [66769] = 2, + ACTIONS(5201), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70182] = 2, - ACTIONS(5071), 1, + [66777] = 2, + ACTIONS(5203), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70190] = 2, - ACTIONS(5073), 1, + [66785] = 2, + ACTIONS(5205), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70198] = 2, - ACTIONS(5075), 1, - anon_sym_COLON, + [66793] = 2, + ACTIONS(5207), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70206] = 2, - ACTIONS(5077), 1, - sym_identifier, + [66801] = 2, + ACTIONS(3819), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70214] = 2, - ACTIONS(5079), 1, - anon_sym_RBRACE, + [66809] = 2, + ACTIONS(5209), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70222] = 2, - ACTIONS(5081), 1, - anon_sym_RBRACK, + [66817] = 2, + ACTIONS(5211), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70230] = 2, - ACTIONS(5083), 1, - sym_identifier, + [66825] = 2, + ACTIONS(5213), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70238] = 2, - ACTIONS(2855), 1, - anon_sym_RPAREN, + [66833] = 2, + ACTIONS(5215), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70246] = 2, - ACTIONS(5085), 1, + [66841] = 2, + ACTIONS(5217), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70254] = 2, - ACTIONS(5087), 1, + [66849] = 2, + ACTIONS(5219), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70262] = 2, - ACTIONS(4691), 1, - anon_sym_SEMI, + [66857] = 2, + ACTIONS(4670), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70270] = 2, - ACTIONS(5089), 1, - sym_identifier, + [66865] = 2, + ACTIONS(5221), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70278] = 2, - ACTIONS(4419), 1, - sym_identifier, + [66873] = 2, + ACTIONS(4006), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70286] = 2, - ACTIONS(3288), 1, - anon_sym_COLON_COLON, + [66881] = 2, + ACTIONS(5223), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70294] = 2, - ACTIONS(5091), 1, + [66889] = 2, + ACTIONS(5225), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70302] = 2, - ACTIONS(3691), 1, - anon_sym_COLON, + [66897] = 2, + ACTIONS(5227), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70310] = 2, - ACTIONS(5093), 1, - anon_sym_COLON, + [66905] = 2, + ACTIONS(5229), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70318] = 2, - ACTIONS(5095), 1, + [66913] = 2, + ACTIONS(5231), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70326] = 2, - ACTIONS(5097), 1, - anon_sym_EQ_GT, + [66921] = 2, + ACTIONS(4180), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70334] = 2, - ACTIONS(5099), 1, - anon_sym_EQ_GT, + [66929] = 2, + ACTIONS(5233), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70342] = 2, - ACTIONS(4054), 1, + [66937] = 2, + ACTIONS(4276), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70350] = 2, - ACTIONS(5101), 1, + [66945] = 2, + ACTIONS(5235), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70358] = 2, - ACTIONS(5103), 1, - sym_identifier, + [66953] = 2, + ACTIONS(4026), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70366] = 2, - ACTIONS(5105), 1, + [66961] = 2, + ACTIONS(5237), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70374] = 2, - ACTIONS(5107), 1, + [66969] = 2, + ACTIONS(5239), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70382] = 2, - ACTIONS(5109), 1, + [66977] = 2, + ACTIONS(5241), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70390] = 2, - ACTIONS(5111), 1, + [66985] = 2, + ACTIONS(5243), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70398] = 2, - ACTIONS(5113), 1, - anon_sym_LBRACK, + [66993] = 2, + ACTIONS(5245), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70406] = 2, - ACTIONS(5115), 1, - sym_identifier, + [67001] = 2, + ACTIONS(5247), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70414] = 2, - ACTIONS(3966), 1, - anon_sym_RPAREN, + [67009] = 2, + ACTIONS(4732), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70422] = 2, - ACTIONS(5117), 1, - anon_sym_RBRACE, + [67017] = 2, + ACTIONS(2993), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70430] = 2, - ACTIONS(5119), 1, - anon_sym_COLON, + [67025] = 2, + ACTIONS(5249), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70438] = 2, - ACTIONS(5121), 1, + [67033] = 2, + ACTIONS(5251), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70446] = 2, - ACTIONS(612), 1, - anon_sym_RBRACK, + [67041] = 2, + ACTIONS(5253), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70454] = 2, - ACTIONS(3189), 1, + [67049] = 2, + ACTIONS(3233), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70462] = 2, - ACTIONS(4693), 1, - anon_sym_SEMI, + [67057] = 2, + ACTIONS(5255), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70470] = 2, - ACTIONS(5123), 1, - anon_sym_SEMI, + [67065] = 2, + ACTIONS(5257), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70478] = 2, - ACTIONS(5125), 1, + [67073] = 2, + ACTIONS(5259), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70486] = 2, - ACTIONS(5127), 1, - anon_sym_COLON_COLON, + [67081] = 2, + ACTIONS(5261), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70494] = 2, - ACTIONS(4653), 1, + [67089] = 2, + ACTIONS(4759), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70502] = 2, - ACTIONS(5129), 1, - anon_sym_RPAREN, + [67097] = 2, + ACTIONS(4176), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70510] = 2, - ACTIONS(5131), 1, + [67105] = 2, + ACTIONS(5263), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70518] = 2, - ACTIONS(5133), 1, + [67113] = 2, + ACTIONS(5265), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70526] = 2, - ACTIONS(5135), 1, + [67121] = 2, + ACTIONS(5267), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70534] = 2, - ACTIONS(5137), 1, + [67129] = 2, + ACTIONS(5269), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70542] = 2, - ACTIONS(5139), 1, + [67137] = 2, + ACTIONS(5271), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70550] = 2, - ACTIONS(5141), 1, + [67145] = 2, + ACTIONS(5273), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70558] = 2, - ACTIONS(5143), 1, + [67153] = 2, + ACTIONS(5275), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70566] = 2, - ACTIONS(5145), 1, - sym_identifier, + [67161] = 2, + ACTIONS(4156), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70574] = 2, - ACTIONS(5147), 1, + [67169] = 2, + ACTIONS(4795), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70582] = 2, - ACTIONS(5149), 1, + [67177] = 2, + ACTIONS(5277), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70590] = 2, - ACTIONS(5151), 1, - anon_sym_RBRACK, + [67185] = 2, + ACTIONS(5279), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70598] = 2, - ACTIONS(5153), 1, - sym_identifier, + [67193] = 2, + ACTIONS(4791), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(546)] = 0, - [SMALL_STATE(547)] = 121, - [SMALL_STATE(548)] = 248, - [SMALL_STATE(549)] = 369, - [SMALL_STATE(550)] = 496, - [SMALL_STATE(551)] = 617, - [SMALL_STATE(552)] = 738, - [SMALL_STATE(553)] = 859, - [SMALL_STATE(554)] = 980, - [SMALL_STATE(555)] = 1107, - [SMALL_STATE(556)] = 1228, - [SMALL_STATE(557)] = 1349, - [SMALL_STATE(558)] = 1476, - [SMALL_STATE(559)] = 1597, - [SMALL_STATE(560)] = 1724, - [SMALL_STATE(561)] = 1851, - [SMALL_STATE(562)] = 1978, - [SMALL_STATE(563)] = 2099, - [SMALL_STATE(564)] = 2220, - [SMALL_STATE(565)] = 2341, - [SMALL_STATE(566)] = 2462, - [SMALL_STATE(567)] = 2589, - [SMALL_STATE(568)] = 2710, - [SMALL_STATE(569)] = 2831, - [SMALL_STATE(570)] = 2958, - [SMALL_STATE(571)] = 3079, - [SMALL_STATE(572)] = 3200, - [SMALL_STATE(573)] = 3327, - [SMALL_STATE(574)] = 3454, - [SMALL_STATE(575)] = 3581, - [SMALL_STATE(576)] = 3702, - [SMALL_STATE(577)] = 3829, - [SMALL_STATE(578)] = 3956, - [SMALL_STATE(579)] = 4077, - [SMALL_STATE(580)] = 4198, - [SMALL_STATE(581)] = 4319, - [SMALL_STATE(582)] = 4440, - [SMALL_STATE(583)] = 4561, - [SMALL_STATE(584)] = 4682, - [SMALL_STATE(585)] = 4803, - [SMALL_STATE(586)] = 4924, - [SMALL_STATE(587)] = 5045, - [SMALL_STATE(588)] = 5166, - [SMALL_STATE(589)] = 5287, - [SMALL_STATE(590)] = 5411, - [SMALL_STATE(591)] = 5535, - [SMALL_STATE(592)] = 5605, - [SMALL_STATE(593)] = 5729, - [SMALL_STATE(594)] = 5853, - [SMALL_STATE(595)] = 5977, - [SMALL_STATE(596)] = 6101, - [SMALL_STATE(597)] = 6225, - [SMALL_STATE(598)] = 6349, - [SMALL_STATE(599)] = 6473, - [SMALL_STATE(600)] = 6597, - [SMALL_STATE(601)] = 6721, - [SMALL_STATE(602)] = 6845, - [SMALL_STATE(603)] = 6969, - [SMALL_STATE(604)] = 7093, - [SMALL_STATE(605)] = 7217, - [SMALL_STATE(606)] = 7341, - [SMALL_STATE(607)] = 7465, - [SMALL_STATE(608)] = 7589, - [SMALL_STATE(609)] = 7713, - [SMALL_STATE(610)] = 7837, - [SMALL_STATE(611)] = 7961, - [SMALL_STATE(612)] = 8085, - [SMALL_STATE(613)] = 8209, - [SMALL_STATE(614)] = 8333, - [SMALL_STATE(615)] = 8457, - [SMALL_STATE(616)] = 8581, - [SMALL_STATE(617)] = 8705, - [SMALL_STATE(618)] = 8829, - [SMALL_STATE(619)] = 8953, - [SMALL_STATE(620)] = 9077, - [SMALL_STATE(621)] = 9201, - [SMALL_STATE(622)] = 9325, - [SMALL_STATE(623)] = 9449, - [SMALL_STATE(624)] = 9573, - [SMALL_STATE(625)] = 9697, - [SMALL_STATE(626)] = 9821, - [SMALL_STATE(627)] = 9945, - [SMALL_STATE(628)] = 10069, - [SMALL_STATE(629)] = 10193, - [SMALL_STATE(630)] = 10317, - [SMALL_STATE(631)] = 10441, - [SMALL_STATE(632)] = 10565, - [SMALL_STATE(633)] = 10689, - [SMALL_STATE(634)] = 10813, - [SMALL_STATE(635)] = 10937, - [SMALL_STATE(636)] = 11061, - [SMALL_STATE(637)] = 11185, - [SMALL_STATE(638)] = 11309, - [SMALL_STATE(639)] = 11433, - [SMALL_STATE(640)] = 11557, - [SMALL_STATE(641)] = 11681, - [SMALL_STATE(642)] = 11805, - [SMALL_STATE(643)] = 11929, - [SMALL_STATE(644)] = 12053, - [SMALL_STATE(645)] = 12177, - [SMALL_STATE(646)] = 12301, - [SMALL_STATE(647)] = 12425, - [SMALL_STATE(648)] = 12549, - [SMALL_STATE(649)] = 12673, - [SMALL_STATE(650)] = 12797, - [SMALL_STATE(651)] = 12921, - [SMALL_STATE(652)] = 13045, - [SMALL_STATE(653)] = 13169, - [SMALL_STATE(654)] = 13293, - [SMALL_STATE(655)] = 13417, - [SMALL_STATE(656)] = 13541, - [SMALL_STATE(657)] = 13665, - [SMALL_STATE(658)] = 13791, - [SMALL_STATE(659)] = 13915, - [SMALL_STATE(660)] = 14039, - [SMALL_STATE(661)] = 14163, - [SMALL_STATE(662)] = 14287, - [SMALL_STATE(663)] = 14411, - [SMALL_STATE(664)] = 14535, - [SMALL_STATE(665)] = 14659, - [SMALL_STATE(666)] = 14783, - [SMALL_STATE(667)] = 14907, - [SMALL_STATE(668)] = 15031, - [SMALL_STATE(669)] = 15155, - [SMALL_STATE(670)] = 15279, - [SMALL_STATE(671)] = 15403, - [SMALL_STATE(672)] = 15527, - [SMALL_STATE(673)] = 15651, - [SMALL_STATE(674)] = 15775, - [SMALL_STATE(675)] = 15899, - [SMALL_STATE(676)] = 16023, - [SMALL_STATE(677)] = 16147, - [SMALL_STATE(678)] = 16271, - [SMALL_STATE(679)] = 16395, - [SMALL_STATE(680)] = 16519, - [SMALL_STATE(681)] = 16643, - [SMALL_STATE(682)] = 16767, - [SMALL_STATE(683)] = 16891, - [SMALL_STATE(684)] = 17015, - [SMALL_STATE(685)] = 17139, - [SMALL_STATE(686)] = 17263, - [SMALL_STATE(687)] = 17387, - [SMALL_STATE(688)] = 17511, - [SMALL_STATE(689)] = 17635, - [SMALL_STATE(690)] = 17759, - [SMALL_STATE(691)] = 17883, - [SMALL_STATE(692)] = 18007, - [SMALL_STATE(693)] = 18131, - [SMALL_STATE(694)] = 18255, - [SMALL_STATE(695)] = 18379, - [SMALL_STATE(696)] = 18503, - [SMALL_STATE(697)] = 18627, - [SMALL_STATE(698)] = 18751, - [SMALL_STATE(699)] = 18816, - [SMALL_STATE(700)] = 18881, - [SMALL_STATE(701)] = 18946, - [SMALL_STATE(702)] = 19011, - [SMALL_STATE(703)] = 19073, - [SMALL_STATE(704)] = 19143, - [SMALL_STATE(705)] = 19210, - [SMALL_STATE(706)] = 19277, - [SMALL_STATE(707)] = 19337, - [SMALL_STATE(708)] = 19401, - [SMALL_STATE(709)] = 19465, - [SMALL_STATE(710)] = 19529, - [SMALL_STATE(711)] = 19589, - [SMALL_STATE(712)] = 19649, - [SMALL_STATE(713)] = 19713, - [SMALL_STATE(714)] = 19769, - [SMALL_STATE(715)] = 19829, - [SMALL_STATE(716)] = 19885, - [SMALL_STATE(717)] = 19941, - [SMALL_STATE(718)] = 19997, - [SMALL_STATE(719)] = 20053, - [SMALL_STATE(720)] = 20110, - [SMALL_STATE(721)] = 20169, - [SMALL_STATE(722)] = 20226, - [SMALL_STATE(723)] = 20283, - [SMALL_STATE(724)] = 20338, - [SMALL_STATE(725)] = 20397, - [SMALL_STATE(726)] = 20454, - [SMALL_STATE(727)] = 20513, - [SMALL_STATE(728)] = 20567, - [SMALL_STATE(729)] = 20623, - [SMALL_STATE(730)] = 20677, - [SMALL_STATE(731)] = 20731, - [SMALL_STATE(732)] = 20787, - [SMALL_STATE(733)] = 20841, - [SMALL_STATE(734)] = 20897, - [SMALL_STATE(735)] = 20951, - [SMALL_STATE(736)] = 21005, - [SMALL_STATE(737)] = 21059, - [SMALL_STATE(738)] = 21113, - [SMALL_STATE(739)] = 21167, - [SMALL_STATE(740)] = 21221, - [SMALL_STATE(741)] = 21275, - [SMALL_STATE(742)] = 21329, - [SMALL_STATE(743)] = 21383, - [SMALL_STATE(744)] = 21437, - [SMALL_STATE(745)] = 21491, - [SMALL_STATE(746)] = 21545, - [SMALL_STATE(747)] = 21599, - [SMALL_STATE(748)] = 21653, - [SMALL_STATE(749)] = 21707, - [SMALL_STATE(750)] = 21761, - [SMALL_STATE(751)] = 21815, - [SMALL_STATE(752)] = 21869, - [SMALL_STATE(753)] = 21923, - [SMALL_STATE(754)] = 21977, - [SMALL_STATE(755)] = 22031, - [SMALL_STATE(756)] = 22085, - [SMALL_STATE(757)] = 22139, - [SMALL_STATE(758)] = 22193, - [SMALL_STATE(759)] = 22247, - [SMALL_STATE(760)] = 22301, - [SMALL_STATE(761)] = 22355, - [SMALL_STATE(762)] = 22409, - [SMALL_STATE(763)] = 22463, - [SMALL_STATE(764)] = 22517, - [SMALL_STATE(765)] = 22573, - [SMALL_STATE(766)] = 22627, - [SMALL_STATE(767)] = 22681, - [SMALL_STATE(768)] = 22735, - [SMALL_STATE(769)] = 22789, - [SMALL_STATE(770)] = 22843, - [SMALL_STATE(771)] = 22897, - [SMALL_STATE(772)] = 22951, - [SMALL_STATE(773)] = 23005, - [SMALL_STATE(774)] = 23059, - [SMALL_STATE(775)] = 23115, - [SMALL_STATE(776)] = 23169, - [SMALL_STATE(777)] = 23223, - [SMALL_STATE(778)] = 23277, - [SMALL_STATE(779)] = 23331, - [SMALL_STATE(780)] = 23385, - [SMALL_STATE(781)] = 23439, - [SMALL_STATE(782)] = 23493, - [SMALL_STATE(783)] = 23547, - [SMALL_STATE(784)] = 23601, - [SMALL_STATE(785)] = 23655, - [SMALL_STATE(786)] = 23709, - [SMALL_STATE(787)] = 23763, - [SMALL_STATE(788)] = 23817, - [SMALL_STATE(789)] = 23871, - [SMALL_STATE(790)] = 23925, - [SMALL_STATE(791)] = 23979, - [SMALL_STATE(792)] = 24033, - [SMALL_STATE(793)] = 24087, - [SMALL_STATE(794)] = 24141, - [SMALL_STATE(795)] = 24197, - [SMALL_STATE(796)] = 24251, - [SMALL_STATE(797)] = 24305, - [SMALL_STATE(798)] = 24359, - [SMALL_STATE(799)] = 24413, - [SMALL_STATE(800)] = 24467, - [SMALL_STATE(801)] = 24521, - [SMALL_STATE(802)] = 24575, - [SMALL_STATE(803)] = 24629, - [SMALL_STATE(804)] = 24683, - [SMALL_STATE(805)] = 24737, - [SMALL_STATE(806)] = 24791, - [SMALL_STATE(807)] = 24845, - [SMALL_STATE(808)] = 24899, - [SMALL_STATE(809)] = 24953, - [SMALL_STATE(810)] = 25007, - [SMALL_STATE(811)] = 25061, - [SMALL_STATE(812)] = 25115, - [SMALL_STATE(813)] = 25169, - [SMALL_STATE(814)] = 25223, - [SMALL_STATE(815)] = 25277, - [SMALL_STATE(816)] = 25331, - [SMALL_STATE(817)] = 25385, - [SMALL_STATE(818)] = 25439, - [SMALL_STATE(819)] = 25493, - [SMALL_STATE(820)] = 25549, - [SMALL_STATE(821)] = 25603, - [SMALL_STATE(822)] = 25659, - [SMALL_STATE(823)] = 25713, - [SMALL_STATE(824)] = 25767, - [SMALL_STATE(825)] = 25825, - [SMALL_STATE(826)] = 25881, - [SMALL_STATE(827)] = 25937, - [SMALL_STATE(828)] = 25991, - [SMALL_STATE(829)] = 26045, - [SMALL_STATE(830)] = 26101, - [SMALL_STATE(831)] = 26155, - [SMALL_STATE(832)] = 26209, - [SMALL_STATE(833)] = 26263, - [SMALL_STATE(834)] = 26317, - [SMALL_STATE(835)] = 26371, - [SMALL_STATE(836)] = 26425, - [SMALL_STATE(837)] = 26479, - [SMALL_STATE(838)] = 26533, - [SMALL_STATE(839)] = 26587, - [SMALL_STATE(840)] = 26643, - [SMALL_STATE(841)] = 26697, - [SMALL_STATE(842)] = 26751, - [SMALL_STATE(843)] = 26805, - [SMALL_STATE(844)] = 26859, - [SMALL_STATE(845)] = 26913, - [SMALL_STATE(846)] = 26969, - [SMALL_STATE(847)] = 27025, - [SMALL_STATE(848)] = 27079, - [SMALL_STATE(849)] = 27133, - [SMALL_STATE(850)] = 27187, - [SMALL_STATE(851)] = 27241, - [SMALL_STATE(852)] = 27295, - [SMALL_STATE(853)] = 27349, - [SMALL_STATE(854)] = 27403, - [SMALL_STATE(855)] = 27457, - [SMALL_STATE(856)] = 27511, - [SMALL_STATE(857)] = 27565, - [SMALL_STATE(858)] = 27619, - [SMALL_STATE(859)] = 27673, - [SMALL_STATE(860)] = 27727, - [SMALL_STATE(861)] = 27781, - [SMALL_STATE(862)] = 27835, - [SMALL_STATE(863)] = 27889, - [SMALL_STATE(864)] = 27943, - [SMALL_STATE(865)] = 27997, - [SMALL_STATE(866)] = 28051, - [SMALL_STATE(867)] = 28105, - [SMALL_STATE(868)] = 28159, - [SMALL_STATE(869)] = 28213, - [SMALL_STATE(870)] = 28267, - [SMALL_STATE(871)] = 28321, - [SMALL_STATE(872)] = 28375, - [SMALL_STATE(873)] = 28429, - [SMALL_STATE(874)] = 28483, - [SMALL_STATE(875)] = 28537, - [SMALL_STATE(876)] = 28591, - [SMALL_STATE(877)] = 28645, - [SMALL_STATE(878)] = 28699, - [SMALL_STATE(879)] = 28753, - [SMALL_STATE(880)] = 28807, - [SMALL_STATE(881)] = 28861, - [SMALL_STATE(882)] = 28915, - [SMALL_STATE(883)] = 28969, - [SMALL_STATE(884)] = 29023, - [SMALL_STATE(885)] = 29077, - [SMALL_STATE(886)] = 29131, - [SMALL_STATE(887)] = 29185, - [SMALL_STATE(888)] = 29239, - [SMALL_STATE(889)] = 29295, - [SMALL_STATE(890)] = 29349, - [SMALL_STATE(891)] = 29403, - [SMALL_STATE(892)] = 29457, - [SMALL_STATE(893)] = 29511, - [SMALL_STATE(894)] = 29565, - [SMALL_STATE(895)] = 29621, - [SMALL_STATE(896)] = 29675, - [SMALL_STATE(897)] = 29729, - [SMALL_STATE(898)] = 29783, - [SMALL_STATE(899)] = 29837, - [SMALL_STATE(900)] = 29891, - [SMALL_STATE(901)] = 29945, - [SMALL_STATE(902)] = 29999, - [SMALL_STATE(903)] = 30053, - [SMALL_STATE(904)] = 30107, - [SMALL_STATE(905)] = 30163, - [SMALL_STATE(906)] = 30217, - [SMALL_STATE(907)] = 30271, - [SMALL_STATE(908)] = 30325, - [SMALL_STATE(909)] = 30379, - [SMALL_STATE(910)] = 30433, - [SMALL_STATE(911)] = 30487, - [SMALL_STATE(912)] = 30541, - [SMALL_STATE(913)] = 30595, - [SMALL_STATE(914)] = 30649, - [SMALL_STATE(915)] = 30703, - [SMALL_STATE(916)] = 30757, - [SMALL_STATE(917)] = 30811, - [SMALL_STATE(918)] = 30865, - [SMALL_STATE(919)] = 30919, - [SMALL_STATE(920)] = 30973, - [SMALL_STATE(921)] = 31027, - [SMALL_STATE(922)] = 31081, - [SMALL_STATE(923)] = 31135, - [SMALL_STATE(924)] = 31189, - [SMALL_STATE(925)] = 31243, - [SMALL_STATE(926)] = 31297, - [SMALL_STATE(927)] = 31351, - [SMALL_STATE(928)] = 31405, - [SMALL_STATE(929)] = 31459, - [SMALL_STATE(930)] = 31513, - [SMALL_STATE(931)] = 31567, - [SMALL_STATE(932)] = 31621, - [SMALL_STATE(933)] = 31675, - [SMALL_STATE(934)] = 31729, - [SMALL_STATE(935)] = 31783, - [SMALL_STATE(936)] = 31837, - [SMALL_STATE(937)] = 31891, - [SMALL_STATE(938)] = 31945, - [SMALL_STATE(939)] = 31999, - [SMALL_STATE(940)] = 32053, - [SMALL_STATE(941)] = 32107, - [SMALL_STATE(942)] = 32161, - [SMALL_STATE(943)] = 32215, - [SMALL_STATE(944)] = 32269, - [SMALL_STATE(945)] = 32323, - [SMALL_STATE(946)] = 32377, - [SMALL_STATE(947)] = 32431, - [SMALL_STATE(948)] = 32485, - [SMALL_STATE(949)] = 32539, - [SMALL_STATE(950)] = 32593, - [SMALL_STATE(951)] = 32647, - [SMALL_STATE(952)] = 32701, - [SMALL_STATE(953)] = 32755, - [SMALL_STATE(954)] = 32809, - [SMALL_STATE(955)] = 32862, - [SMALL_STATE(956)] = 32915, - [SMALL_STATE(957)] = 32968, - [SMALL_STATE(958)] = 33021, - [SMALL_STATE(959)] = 33074, - [SMALL_STATE(960)] = 33129, - [SMALL_STATE(961)] = 33182, - [SMALL_STATE(962)] = 33235, - [SMALL_STATE(963)] = 33288, - [SMALL_STATE(964)] = 33341, - [SMALL_STATE(965)] = 33394, - [SMALL_STATE(966)] = 33447, - [SMALL_STATE(967)] = 33500, - [SMALL_STATE(968)] = 33585, - [SMALL_STATE(969)] = 33638, - [SMALL_STATE(970)] = 33691, - [SMALL_STATE(971)] = 33744, - [SMALL_STATE(972)] = 33797, - [SMALL_STATE(973)] = 33850, - [SMALL_STATE(974)] = 33903, - [SMALL_STATE(975)] = 33956, - [SMALL_STATE(976)] = 34009, - [SMALL_STATE(977)] = 34062, - [SMALL_STATE(978)] = 34115, - [SMALL_STATE(979)] = 34168, - [SMALL_STATE(980)] = 34221, - [SMALL_STATE(981)] = 34274, - [SMALL_STATE(982)] = 34327, - [SMALL_STATE(983)] = 34380, - [SMALL_STATE(984)] = 34433, - [SMALL_STATE(985)] = 34486, - [SMALL_STATE(986)] = 34539, - [SMALL_STATE(987)] = 34592, - [SMALL_STATE(988)] = 34645, - [SMALL_STATE(989)] = 34698, - [SMALL_STATE(990)] = 34751, - [SMALL_STATE(991)] = 34804, - [SMALL_STATE(992)] = 34857, - [SMALL_STATE(993)] = 34910, - [SMALL_STATE(994)] = 34963, - [SMALL_STATE(995)] = 35016, - [SMALL_STATE(996)] = 35069, - [SMALL_STATE(997)] = 35122, - [SMALL_STATE(998)] = 35175, - [SMALL_STATE(999)] = 35260, - [SMALL_STATE(1000)] = 35313, - [SMALL_STATE(1001)] = 35366, - [SMALL_STATE(1002)] = 35419, - [SMALL_STATE(1003)] = 35472, - [SMALL_STATE(1004)] = 35525, - [SMALL_STATE(1005)] = 35578, - [SMALL_STATE(1006)] = 35631, - [SMALL_STATE(1007)] = 35684, - [SMALL_STATE(1008)] = 35737, - [SMALL_STATE(1009)] = 35790, - [SMALL_STATE(1010)] = 35843, - [SMALL_STATE(1011)] = 35898, - [SMALL_STATE(1012)] = 35951, - [SMALL_STATE(1013)] = 36036, - [SMALL_STATE(1014)] = 36089, - [SMALL_STATE(1015)] = 36158, - [SMALL_STATE(1016)] = 36211, - [SMALL_STATE(1017)] = 36276, - [SMALL_STATE(1018)] = 36349, - [SMALL_STATE(1019)] = 36402, - [SMALL_STATE(1020)] = 36455, - [SMALL_STATE(1021)] = 36508, - [SMALL_STATE(1022)] = 36561, - [SMALL_STATE(1023)] = 36614, - [SMALL_STATE(1024)] = 36681, - [SMALL_STATE(1025)] = 36764, - [SMALL_STATE(1026)] = 36855, - [SMALL_STATE(1027)] = 36908, - [SMALL_STATE(1028)] = 36961, - [SMALL_STATE(1029)] = 37014, - [SMALL_STATE(1030)] = 37067, - [SMALL_STATE(1031)] = 37120, - [SMALL_STATE(1032)] = 37211, - [SMALL_STATE(1033)] = 37264, - [SMALL_STATE(1034)] = 37317, - [SMALL_STATE(1035)] = 37382, - [SMALL_STATE(1036)] = 37457, - [SMALL_STATE(1037)] = 37542, - [SMALL_STATE(1038)] = 37595, - [SMALL_STATE(1039)] = 37648, - [SMALL_STATE(1040)] = 37701, - [SMALL_STATE(1041)] = 37754, - [SMALL_STATE(1042)] = 37807, - [SMALL_STATE(1043)] = 37860, - [SMALL_STATE(1044)] = 37913, - [SMALL_STATE(1045)] = 37994, - [SMALL_STATE(1046)] = 38059, - [SMALL_STATE(1047)] = 38112, - [SMALL_STATE(1048)] = 38165, - [SMALL_STATE(1049)] = 38218, - [SMALL_STATE(1050)] = 38271, - [SMALL_STATE(1051)] = 38342, - [SMALL_STATE(1052)] = 38395, - [SMALL_STATE(1053)] = 38448, - [SMALL_STATE(1054)] = 38501, - [SMALL_STATE(1055)] = 38566, - [SMALL_STATE(1056)] = 38619, - [SMALL_STATE(1057)] = 38672, - [SMALL_STATE(1058)] = 38731, - [SMALL_STATE(1059)] = 38784, - [SMALL_STATE(1060)] = 38837, - [SMALL_STATE(1061)] = 38922, - [SMALL_STATE(1062)] = 38975, - [SMALL_STATE(1063)] = 39028, - [SMALL_STATE(1064)] = 39105, - [SMALL_STATE(1065)] = 39157, - [SMALL_STATE(1066)] = 39209, - [SMALL_STATE(1067)] = 39261, - [SMALL_STATE(1068)] = 39313, - [SMALL_STATE(1069)] = 39365, - [SMALL_STATE(1070)] = 39421, - [SMALL_STATE(1071)] = 39481, - [SMALL_STATE(1072)] = 39533, - [SMALL_STATE(1073)] = 39586, - [SMALL_STATE(1074)] = 39671, - [SMALL_STATE(1075)] = 39766, - [SMALL_STATE(1076)] = 39861, - [SMALL_STATE(1077)] = 39946, - [SMALL_STATE(1078)] = 39999, - [SMALL_STATE(1079)] = 40091, - [SMALL_STATE(1080)] = 40175, - [SMALL_STATE(1081)] = 40225, - [SMALL_STATE(1082)] = 40275, - [SMALL_STATE(1083)] = 40329, - [SMALL_STATE(1084)] = 40379, - [SMALL_STATE(1085)] = 40471, - [SMALL_STATE(1086)] = 40555, - [SMALL_STATE(1087)] = 40639, - [SMALL_STATE(1088)] = 40695, - [SMALL_STATE(1089)] = 40745, - [SMALL_STATE(1090)] = 40829, - [SMALL_STATE(1091)] = 40918, - [SMALL_STATE(1092)] = 40967, - [SMALL_STATE(1093)] = 41044, - [SMALL_STATE(1094)] = 41133, - [SMALL_STATE(1095)] = 41220, - [SMALL_STATE(1096)] = 41307, - [SMALL_STATE(1097)] = 41358, - [SMALL_STATE(1098)] = 41439, - [SMALL_STATE(1099)] = 41528, - [SMALL_STATE(1100)] = 41581, - [SMALL_STATE(1101)] = 41662, - [SMALL_STATE(1102)] = 41749, - [SMALL_STATE(1103)] = 41838, - [SMALL_STATE(1104)] = 41925, - [SMALL_STATE(1105)] = 42014, - [SMALL_STATE(1106)] = 42063, - [SMALL_STATE(1107)] = 42150, - [SMALL_STATE(1108)] = 42237, - [SMALL_STATE(1109)] = 42326, - [SMALL_STATE(1110)] = 42415, - [SMALL_STATE(1111)] = 42504, - [SMALL_STATE(1112)] = 42591, - [SMALL_STATE(1113)] = 42680, - [SMALL_STATE(1114)] = 42769, - [SMALL_STATE(1115)] = 42858, - [SMALL_STATE(1116)] = 42907, - [SMALL_STATE(1117)] = 42994, - [SMALL_STATE(1118)] = 43083, - [SMALL_STATE(1119)] = 43172, - [SMALL_STATE(1120)] = 43261, - [SMALL_STATE(1121)] = 43350, - [SMALL_STATE(1122)] = 43439, - [SMALL_STATE(1123)] = 43528, - [SMALL_STATE(1124)] = 43617, - [SMALL_STATE(1125)] = 43706, - [SMALL_STATE(1126)] = 43795, - [SMALL_STATE(1127)] = 43884, - [SMALL_STATE(1128)] = 43973, - [SMALL_STATE(1129)] = 44062, - [SMALL_STATE(1130)] = 44151, - [SMALL_STATE(1131)] = 44240, - [SMALL_STATE(1132)] = 44329, - [SMALL_STATE(1133)] = 44418, - [SMALL_STATE(1134)] = 44507, - [SMALL_STATE(1135)] = 44596, - [SMALL_STATE(1136)] = 44685, - [SMALL_STATE(1137)] = 44734, - [SMALL_STATE(1138)] = 44823, - [SMALL_STATE(1139)] = 44912, - [SMALL_STATE(1140)] = 45001, - [SMALL_STATE(1141)] = 45090, - [SMALL_STATE(1142)] = 45179, - [SMALL_STATE(1143)] = 45266, - [SMALL_STATE(1144)] = 45355, - [SMALL_STATE(1145)] = 45444, - [SMALL_STATE(1146)] = 45533, - [SMALL_STATE(1147)] = 45622, - [SMALL_STATE(1148)] = 45711, - [SMALL_STATE(1149)] = 45800, - [SMALL_STATE(1150)] = 45889, - [SMALL_STATE(1151)] = 45978, - [SMALL_STATE(1152)] = 46065, - [SMALL_STATE(1153)] = 46154, - [SMALL_STATE(1154)] = 46243, - [SMALL_STATE(1155)] = 46329, - [SMALL_STATE(1156)] = 46379, - [SMALL_STATE(1157)] = 46465, - [SMALL_STATE(1158)] = 46551, - [SMALL_STATE(1159)] = 46637, - [SMALL_STATE(1160)] = 46723, - [SMALL_STATE(1161)] = 46809, - [SMALL_STATE(1162)] = 46895, - [SMALL_STATE(1163)] = 46981, - [SMALL_STATE(1164)] = 47067, - [SMALL_STATE(1165)] = 47153, - [SMALL_STATE(1166)] = 47239, - [SMALL_STATE(1167)] = 47289, - [SMALL_STATE(1168)] = 47375, - [SMALL_STATE(1169)] = 47455, - [SMALL_STATE(1170)] = 47541, - [SMALL_STATE(1171)] = 47627, - [SMALL_STATE(1172)] = 47701, - [SMALL_STATE(1173)] = 47787, - [SMALL_STATE(1174)] = 47873, - [SMALL_STATE(1175)] = 47959, - [SMALL_STATE(1176)] = 48023, - [SMALL_STATE(1177)] = 48073, - [SMALL_STATE(1178)] = 48159, - [SMALL_STATE(1179)] = 48245, - [SMALL_STATE(1180)] = 48319, - [SMALL_STATE(1181)] = 48399, - [SMALL_STATE(1182)] = 48485, - [SMALL_STATE(1183)] = 48559, - [SMALL_STATE(1184)] = 48607, - [SMALL_STATE(1185)] = 48661, - [SMALL_STATE(1186)] = 48709, - [SMALL_STATE(1187)] = 48769, - [SMALL_STATE(1188)] = 48855, - [SMALL_STATE(1189)] = 48905, - [SMALL_STATE(1190)] = 48991, - [SMALL_STATE(1191)] = 49077, - [SMALL_STATE(1192)] = 49145, - [SMALL_STATE(1193)] = 49225, - [SMALL_STATE(1194)] = 49311, - [SMALL_STATE(1195)] = 49397, - [SMALL_STATE(1196)] = 49467, - [SMALL_STATE(1197)] = 49517, - [SMALL_STATE(1198)] = 49595, - [SMALL_STATE(1199)] = 49643, - [SMALL_STATE(1200)] = 49729, - [SMALL_STATE(1201)] = 49789, - [SMALL_STATE(1202)] = 49869, - [SMALL_STATE(1203)] = 49955, - [SMALL_STATE(1204)] = 50015, - [SMALL_STATE(1205)] = 50065, - [SMALL_STATE(1206)] = 50139, - [SMALL_STATE(1207)] = 50225, - [SMALL_STATE(1208)] = 50273, - [SMALL_STATE(1209)] = 50321, - [SMALL_STATE(1210)] = 50407, - [SMALL_STATE(1211)] = 50493, - [SMALL_STATE(1212)] = 50569, - [SMALL_STATE(1213)] = 50655, - [SMALL_STATE(1214)] = 50717, - [SMALL_STATE(1215)] = 50777, - [SMALL_STATE(1216)] = 50863, - [SMALL_STATE(1217)] = 50943, - [SMALL_STATE(1218)] = 51015, - [SMALL_STATE(1219)] = 51081, - [SMALL_STATE(1220)] = 51167, - [SMALL_STATE(1221)] = 51242, - [SMALL_STATE(1222)] = 51313, - [SMALL_STATE(1223)] = 51388, - [SMALL_STATE(1224)] = 51457, - [SMALL_STATE(1225)] = 51523, - [SMALL_STATE(1226)] = 51589, - [SMALL_STATE(1227)] = 51652, - [SMALL_STATE(1228)] = 51715, - [SMALL_STATE(1229)] = 51778, - [SMALL_STATE(1230)] = 51841, - [SMALL_STATE(1231)] = 51904, - [SMALL_STATE(1232)] = 51943, - [SMALL_STATE(1233)] = 51982, - [SMALL_STATE(1234)] = 52021, - [SMALL_STATE(1235)] = 52074, - [SMALL_STATE(1236)] = 52127, - [SMALL_STATE(1237)] = 52180, - [SMALL_STATE(1238)] = 52233, - [SMALL_STATE(1239)] = 52286, - [SMALL_STATE(1240)] = 52339, - [SMALL_STATE(1241)] = 52392, - [SMALL_STATE(1242)] = 52442, - [SMALL_STATE(1243)] = 52492, - [SMALL_STATE(1244)] = 52522, - [SMALL_STATE(1245)] = 52552, - [SMALL_STATE(1246)] = 52594, - [SMALL_STATE(1247)] = 52634, - [SMALL_STATE(1248)] = 52663, - [SMALL_STATE(1249)] = 52692, - [SMALL_STATE(1250)] = 52721, - [SMALL_STATE(1251)] = 52758, - [SMALL_STATE(1252)] = 52787, - [SMALL_STATE(1253)] = 52816, - [SMALL_STATE(1254)] = 52853, - [SMALL_STATE(1255)] = 52882, - [SMALL_STATE(1256)] = 52911, - [SMALL_STATE(1257)] = 52940, - [SMALL_STATE(1258)] = 52994, - [SMALL_STATE(1259)] = 53026, - [SMALL_STATE(1260)] = 53058, - [SMALL_STATE(1261)] = 53090, - [SMALL_STATE(1262)] = 53144, - [SMALL_STATE(1263)] = 53169, - [SMALL_STATE(1264)] = 53192, - [SMALL_STATE(1265)] = 53214, - [SMALL_STATE(1266)] = 53236, - [SMALL_STATE(1267)] = 53260, - [SMALL_STATE(1268)] = 53304, - [SMALL_STATE(1269)] = 53328, - [SMALL_STATE(1270)] = 53352, - [SMALL_STATE(1271)] = 53396, - [SMALL_STATE(1272)] = 53426, - [SMALL_STATE(1273)] = 53450, - [SMALL_STATE(1274)] = 53474, - [SMALL_STATE(1275)] = 53498, - [SMALL_STATE(1276)] = 53522, - [SMALL_STATE(1277)] = 53568, - [SMALL_STATE(1278)] = 53592, - [SMALL_STATE(1279)] = 53616, - [SMALL_STATE(1280)] = 53638, - [SMALL_STATE(1281)] = 53660, - [SMALL_STATE(1282)] = 53684, - [SMALL_STATE(1283)] = 53709, - [SMALL_STATE(1284)] = 53730, - [SMALL_STATE(1285)] = 53753, - [SMALL_STATE(1286)] = 53776, - [SMALL_STATE(1287)] = 53799, - [SMALL_STATE(1288)] = 53822, - [SMALL_STATE(1289)] = 53847, - [SMALL_STATE(1290)] = 53872, - [SMALL_STATE(1291)] = 53897, - [SMALL_STATE(1292)] = 53918, - [SMALL_STATE(1293)] = 53963, - [SMALL_STATE(1294)] = 53984, - [SMALL_STATE(1295)] = 54007, - [SMALL_STATE(1296)] = 54028, - [SMALL_STATE(1297)] = 54051, - [SMALL_STATE(1298)] = 54076, - [SMALL_STATE(1299)] = 54101, - [SMALL_STATE(1300)] = 54128, - [SMALL_STATE(1301)] = 54151, - [SMALL_STATE(1302)] = 54174, - [SMALL_STATE(1303)] = 54195, - [SMALL_STATE(1304)] = 54215, - [SMALL_STATE(1305)] = 54235, - [SMALL_STATE(1306)] = 54255, - [SMALL_STATE(1307)] = 54275, - [SMALL_STATE(1308)] = 54295, - [SMALL_STATE(1309)] = 54315, - [SMALL_STATE(1310)] = 54337, - [SMALL_STATE(1311)] = 54357, - [SMALL_STATE(1312)] = 54377, - [SMALL_STATE(1313)] = 54397, - [SMALL_STATE(1314)] = 54417, - [SMALL_STATE(1315)] = 54437, - [SMALL_STATE(1316)] = 54457, - [SMALL_STATE(1317)] = 54477, - [SMALL_STATE(1318)] = 54499, - [SMALL_STATE(1319)] = 54519, - [SMALL_STATE(1320)] = 54539, - [SMALL_STATE(1321)] = 54559, - [SMALL_STATE(1322)] = 54579, - [SMALL_STATE(1323)] = 54599, - [SMALL_STATE(1324)] = 54619, - [SMALL_STATE(1325)] = 54639, - [SMALL_STATE(1326)] = 54659, - [SMALL_STATE(1327)] = 54679, - [SMALL_STATE(1328)] = 54703, - [SMALL_STATE(1329)] = 54723, - [SMALL_STATE(1330)] = 54743, - [SMALL_STATE(1331)] = 54765, - [SMALL_STATE(1332)] = 54785, - [SMALL_STATE(1333)] = 54805, - [SMALL_STATE(1334)] = 54840, - [SMALL_STATE(1335)] = 54865, - [SMALL_STATE(1336)] = 54890, - [SMALL_STATE(1337)] = 54913, - [SMALL_STATE(1338)] = 54936, - [SMALL_STATE(1339)] = 54961, - [SMALL_STATE(1340)] = 54984, - [SMALL_STATE(1341)] = 55007, - [SMALL_STATE(1342)] = 55030, - [SMALL_STATE(1343)] = 55053, - [SMALL_STATE(1344)] = 55076, - [SMALL_STATE(1345)] = 55101, - [SMALL_STATE(1346)] = 55124, - [SMALL_STATE(1347)] = 55147, - [SMALL_STATE(1348)] = 55172, - [SMALL_STATE(1349)] = 55197, - [SMALL_STATE(1350)] = 55222, - [SMALL_STATE(1351)] = 55243, - [SMALL_STATE(1352)] = 55268, - [SMALL_STATE(1353)] = 55289, - [SMALL_STATE(1354)] = 55310, - [SMALL_STATE(1355)] = 55333, - [SMALL_STATE(1356)] = 55356, - [SMALL_STATE(1357)] = 55379, - [SMALL_STATE(1358)] = 55399, - [SMALL_STATE(1359)] = 55419, - [SMALL_STATE(1360)] = 55439, - [SMALL_STATE(1361)] = 55463, - [SMALL_STATE(1362)] = 55483, - [SMALL_STATE(1363)] = 55507, - [SMALL_STATE(1364)] = 55527, - [SMALL_STATE(1365)] = 55547, - [SMALL_STATE(1366)] = 55567, - [SMALL_STATE(1367)] = 55587, - [SMALL_STATE(1368)] = 55607, - [SMALL_STATE(1369)] = 55627, - [SMALL_STATE(1370)] = 55647, - [SMALL_STATE(1371)] = 55667, - [SMALL_STATE(1372)] = 55687, - [SMALL_STATE(1373)] = 55707, - [SMALL_STATE(1374)] = 55727, - [SMALL_STATE(1375)] = 55747, - [SMALL_STATE(1376)] = 55767, - [SMALL_STATE(1377)] = 55787, - [SMALL_STATE(1378)] = 55807, - [SMALL_STATE(1379)] = 55827, - [SMALL_STATE(1380)] = 55847, - [SMALL_STATE(1381)] = 55867, - [SMALL_STATE(1382)] = 55891, - [SMALL_STATE(1383)] = 55911, - [SMALL_STATE(1384)] = 55931, - [SMALL_STATE(1385)] = 55951, - [SMALL_STATE(1386)] = 55975, - [SMALL_STATE(1387)] = 55995, - [SMALL_STATE(1388)] = 56015, - [SMALL_STATE(1389)] = 56035, - [SMALL_STATE(1390)] = 56055, - [SMALL_STATE(1391)] = 56075, - [SMALL_STATE(1392)] = 56095, - [SMALL_STATE(1393)] = 56122, - [SMALL_STATE(1394)] = 56153, - [SMALL_STATE(1395)] = 56186, - [SMALL_STATE(1396)] = 56217, - [SMALL_STATE(1397)] = 56248, - [SMALL_STATE(1398)] = 56281, - [SMALL_STATE(1399)] = 56312, - [SMALL_STATE(1400)] = 56337, - [SMALL_STATE(1401)] = 56362, - [SMALL_STATE(1402)] = 56391, - [SMALL_STATE(1403)] = 56422, - [SMALL_STATE(1404)] = 56453, - [SMALL_STATE(1405)] = 56484, - [SMALL_STATE(1406)] = 56515, - [SMALL_STATE(1407)] = 56546, - [SMALL_STATE(1408)] = 56571, - [SMALL_STATE(1409)] = 56604, - [SMALL_STATE(1410)] = 56637, - [SMALL_STATE(1411)] = 56667, - [SMALL_STATE(1412)] = 56693, - [SMALL_STATE(1413)] = 56723, - [SMALL_STATE(1414)] = 56749, - [SMALL_STATE(1415)] = 56779, - [SMALL_STATE(1416)] = 56801, - [SMALL_STATE(1417)] = 56831, - [SMALL_STATE(1418)] = 56861, - [SMALL_STATE(1419)] = 56883, - [SMALL_STATE(1420)] = 56915, - [SMALL_STATE(1421)] = 56941, - [SMALL_STATE(1422)] = 56971, - [SMALL_STATE(1423)] = 57001, - [SMALL_STATE(1424)] = 57031, - [SMALL_STATE(1425)] = 57053, - [SMALL_STATE(1426)] = 57083, - [SMALL_STATE(1427)] = 57113, - [SMALL_STATE(1428)] = 57143, - [SMALL_STATE(1429)] = 57165, - [SMALL_STATE(1430)] = 57195, - [SMALL_STATE(1431)] = 57225, - [SMALL_STATE(1432)] = 57257, - [SMALL_STATE(1433)] = 57287, - [SMALL_STATE(1434)] = 57317, - [SMALL_STATE(1435)] = 57349, - [SMALL_STATE(1436)] = 57379, - [SMALL_STATE(1437)] = 57401, - [SMALL_STATE(1438)] = 57433, - [SMALL_STATE(1439)] = 57455, - [SMALL_STATE(1440)] = 57485, - [SMALL_STATE(1441)] = 57515, - [SMALL_STATE(1442)] = 57545, - [SMALL_STATE(1443)] = 57575, - [SMALL_STATE(1444)] = 57605, - [SMALL_STATE(1445)] = 57628, - [SMALL_STATE(1446)] = 57655, - [SMALL_STATE(1447)] = 57680, - [SMALL_STATE(1448)] = 57705, - [SMALL_STATE(1449)] = 57730, - [SMALL_STATE(1450)] = 57757, - [SMALL_STATE(1451)] = 57772, - [SMALL_STATE(1452)] = 57799, - [SMALL_STATE(1453)] = 57826, - [SMALL_STATE(1454)] = 57851, - [SMALL_STATE(1455)] = 57870, - [SMALL_STATE(1456)] = 57893, - [SMALL_STATE(1457)] = 57912, - [SMALL_STATE(1458)] = 57939, - [SMALL_STATE(1459)] = 57958, - [SMALL_STATE(1460)] = 57985, - [SMALL_STATE(1461)] = 58014, - [SMALL_STATE(1462)] = 58041, - [SMALL_STATE(1463)] = 58068, - [SMALL_STATE(1464)] = 58087, - [SMALL_STATE(1465)] = 58106, - [SMALL_STATE(1466)] = 58135, - [SMALL_STATE(1467)] = 58162, - [SMALL_STATE(1468)] = 58189, - [SMALL_STATE(1469)] = 58208, - [SMALL_STATE(1470)] = 58227, - [SMALL_STATE(1471)] = 58252, - [SMALL_STATE(1472)] = 58275, - [SMALL_STATE(1473)] = 58300, - [SMALL_STATE(1474)] = 58325, - [SMALL_STATE(1475)] = 58352, - [SMALL_STATE(1476)] = 58381, - [SMALL_STATE(1477)] = 58408, - [SMALL_STATE(1478)] = 58435, - [SMALL_STATE(1479)] = 58458, - [SMALL_STATE(1480)] = 58483, - [SMALL_STATE(1481)] = 58510, - [SMALL_STATE(1482)] = 58537, - [SMALL_STATE(1483)] = 58558, - [SMALL_STATE(1484)] = 58587, - [SMALL_STATE(1485)] = 58616, - [SMALL_STATE(1486)] = 58635, - [SMALL_STATE(1487)] = 58660, - [SMALL_STATE(1488)] = 58689, - [SMALL_STATE(1489)] = 58710, - [SMALL_STATE(1490)] = 58733, - [SMALL_STATE(1491)] = 58747, - [SMALL_STATE(1492)] = 58763, - [SMALL_STATE(1493)] = 58777, - [SMALL_STATE(1494)] = 58803, - [SMALL_STATE(1495)] = 58829, - [SMALL_STATE(1496)] = 58855, - [SMALL_STATE(1497)] = 58877, - [SMALL_STATE(1498)] = 58891, - [SMALL_STATE(1499)] = 58915, - [SMALL_STATE(1500)] = 58931, - [SMALL_STATE(1501)] = 58955, - [SMALL_STATE(1502)] = 58969, - [SMALL_STATE(1503)] = 58983, - [SMALL_STATE(1504)] = 59009, - [SMALL_STATE(1505)] = 59033, - [SMALL_STATE(1506)] = 59059, - [SMALL_STATE(1507)] = 59073, - [SMALL_STATE(1508)] = 59089, - [SMALL_STATE(1509)] = 59113, - [SMALL_STATE(1510)] = 59129, - [SMALL_STATE(1511)] = 59155, - [SMALL_STATE(1512)] = 59181, - [SMALL_STATE(1513)] = 59203, - [SMALL_STATE(1514)] = 59219, - [SMALL_STATE(1515)] = 59241, - [SMALL_STATE(1516)] = 59267, - [SMALL_STATE(1517)] = 59289, - [SMALL_STATE(1518)] = 59313, - [SMALL_STATE(1519)] = 59329, - [SMALL_STATE(1520)] = 59355, - [SMALL_STATE(1521)] = 59381, - [SMALL_STATE(1522)] = 59395, - [SMALL_STATE(1523)] = 59421, - [SMALL_STATE(1524)] = 59447, - [SMALL_STATE(1525)] = 59463, - [SMALL_STATE(1526)] = 59485, - [SMALL_STATE(1527)] = 59507, - [SMALL_STATE(1528)] = 59530, - [SMALL_STATE(1529)] = 59553, - [SMALL_STATE(1530)] = 59568, - [SMALL_STATE(1531)] = 59591, - [SMALL_STATE(1532)] = 59614, - [SMALL_STATE(1533)] = 59635, - [SMALL_STATE(1534)] = 59658, - [SMALL_STATE(1535)] = 59673, - [SMALL_STATE(1536)] = 59696, - [SMALL_STATE(1537)] = 59719, - [SMALL_STATE(1538)] = 59736, - [SMALL_STATE(1539)] = 59759, - [SMALL_STATE(1540)] = 59782, - [SMALL_STATE(1541)] = 59805, - [SMALL_STATE(1542)] = 59822, - [SMALL_STATE(1543)] = 59839, - [SMALL_STATE(1544)] = 59860, - [SMALL_STATE(1545)] = 59883, - [SMALL_STATE(1546)] = 59902, - [SMALL_STATE(1547)] = 59925, - [SMALL_STATE(1548)] = 59948, - [SMALL_STATE(1549)] = 59971, - [SMALL_STATE(1550)] = 59994, - [SMALL_STATE(1551)] = 60017, - [SMALL_STATE(1552)] = 60034, - [SMALL_STATE(1553)] = 60057, - [SMALL_STATE(1554)] = 60080, - [SMALL_STATE(1555)] = 60103, - [SMALL_STATE(1556)] = 60126, - [SMALL_STATE(1557)] = 60143, - [SMALL_STATE(1558)] = 60166, - [SMALL_STATE(1559)] = 60189, - [SMALL_STATE(1560)] = 60212, - [SMALL_STATE(1561)] = 60229, - [SMALL_STATE(1562)] = 60248, - [SMALL_STATE(1563)] = 60271, - [SMALL_STATE(1564)] = 60294, - [SMALL_STATE(1565)] = 60317, - [SMALL_STATE(1566)] = 60340, - [SMALL_STATE(1567)] = 60363, - [SMALL_STATE(1568)] = 60386, - [SMALL_STATE(1569)] = 60409, - [SMALL_STATE(1570)] = 60432, - [SMALL_STATE(1571)] = 60455, - [SMALL_STATE(1572)] = 60478, - [SMALL_STATE(1573)] = 60501, - [SMALL_STATE(1574)] = 60524, - [SMALL_STATE(1575)] = 60547, - [SMALL_STATE(1576)] = 60570, - [SMALL_STATE(1577)] = 60593, - [SMALL_STATE(1578)] = 60616, - [SMALL_STATE(1579)] = 60639, - [SMALL_STATE(1580)] = 60658, - [SMALL_STATE(1581)] = 60681, - [SMALL_STATE(1582)] = 60704, - [SMALL_STATE(1583)] = 60727, - [SMALL_STATE(1584)] = 60750, - [SMALL_STATE(1585)] = 60767, - [SMALL_STATE(1586)] = 60790, - [SMALL_STATE(1587)] = 60813, - [SMALL_STATE(1588)] = 60833, - [SMALL_STATE(1589)] = 60853, - [SMALL_STATE(1590)] = 60873, - [SMALL_STATE(1591)] = 60885, - [SMALL_STATE(1592)] = 60897, - [SMALL_STATE(1593)] = 60917, - [SMALL_STATE(1594)] = 60933, - [SMALL_STATE(1595)] = 60953, - [SMALL_STATE(1596)] = 60969, - [SMALL_STATE(1597)] = 60989, - [SMALL_STATE(1598)] = 61007, - [SMALL_STATE(1599)] = 61027, - [SMALL_STATE(1600)] = 61043, - [SMALL_STATE(1601)] = 61059, - [SMALL_STATE(1602)] = 61079, - [SMALL_STATE(1603)] = 61099, - [SMALL_STATE(1604)] = 61119, - [SMALL_STATE(1605)] = 61139, - [SMALL_STATE(1606)] = 61153, - [SMALL_STATE(1607)] = 61165, - [SMALL_STATE(1608)] = 61181, - [SMALL_STATE(1609)] = 61199, - [SMALL_STATE(1610)] = 61211, - [SMALL_STATE(1611)] = 61227, - [SMALL_STATE(1612)] = 61247, - [SMALL_STATE(1613)] = 61259, - [SMALL_STATE(1614)] = 61279, - [SMALL_STATE(1615)] = 61299, - [SMALL_STATE(1616)] = 61319, - [SMALL_STATE(1617)] = 61331, - [SMALL_STATE(1618)] = 61351, - [SMALL_STATE(1619)] = 61367, - [SMALL_STATE(1620)] = 61387, - [SMALL_STATE(1621)] = 61407, - [SMALL_STATE(1622)] = 61419, - [SMALL_STATE(1623)] = 61439, - [SMALL_STATE(1624)] = 61455, - [SMALL_STATE(1625)] = 61473, - [SMALL_STATE(1626)] = 61491, - [SMALL_STATE(1627)] = 61507, - [SMALL_STATE(1628)] = 61527, - [SMALL_STATE(1629)] = 61543, - [SMALL_STATE(1630)] = 61563, - [SMALL_STATE(1631)] = 61583, - [SMALL_STATE(1632)] = 61603, - [SMALL_STATE(1633)] = 61623, - [SMALL_STATE(1634)] = 61643, - [SMALL_STATE(1635)] = 61659, - [SMALL_STATE(1636)] = 61671, - [SMALL_STATE(1637)] = 61683, - [SMALL_STATE(1638)] = 61699, - [SMALL_STATE(1639)] = 61719, - [SMALL_STATE(1640)] = 61739, - [SMALL_STATE(1641)] = 61759, - [SMALL_STATE(1642)] = 61771, - [SMALL_STATE(1643)] = 61787, - [SMALL_STATE(1644)] = 61805, - [SMALL_STATE(1645)] = 61821, - [SMALL_STATE(1646)] = 61837, - [SMALL_STATE(1647)] = 61853, - [SMALL_STATE(1648)] = 61865, - [SMALL_STATE(1649)] = 61881, - [SMALL_STATE(1650)] = 61897, - [SMALL_STATE(1651)] = 61915, - [SMALL_STATE(1652)] = 61931, - [SMALL_STATE(1653)] = 61947, - [SMALL_STATE(1654)] = 61959, - [SMALL_STATE(1655)] = 61975, - [SMALL_STATE(1656)] = 61995, - [SMALL_STATE(1657)] = 62015, - [SMALL_STATE(1658)] = 62032, - [SMALL_STATE(1659)] = 62049, - [SMALL_STATE(1660)] = 62066, - [SMALL_STATE(1661)] = 62083, - [SMALL_STATE(1662)] = 62100, - [SMALL_STATE(1663)] = 62117, - [SMALL_STATE(1664)] = 62134, - [SMALL_STATE(1665)] = 62151, - [SMALL_STATE(1666)] = 62164, - [SMALL_STATE(1667)] = 62177, - [SMALL_STATE(1668)] = 62194, - [SMALL_STATE(1669)] = 62211, - [SMALL_STATE(1670)] = 62226, - [SMALL_STATE(1671)] = 62243, - [SMALL_STATE(1672)] = 62258, - [SMALL_STATE(1673)] = 62275, - [SMALL_STATE(1674)] = 62292, - [SMALL_STATE(1675)] = 62309, - [SMALL_STATE(1676)] = 62326, - [SMALL_STATE(1677)] = 62341, - [SMALL_STATE(1678)] = 62356, - [SMALL_STATE(1679)] = 62369, - [SMALL_STATE(1680)] = 62384, - [SMALL_STATE(1681)] = 62401, - [SMALL_STATE(1682)] = 62416, - [SMALL_STATE(1683)] = 62431, - [SMALL_STATE(1684)] = 62446, - [SMALL_STATE(1685)] = 62463, - [SMALL_STATE(1686)] = 62480, - [SMALL_STATE(1687)] = 62495, - [SMALL_STATE(1688)] = 62512, - [SMALL_STATE(1689)] = 62527, - [SMALL_STATE(1690)] = 62544, - [SMALL_STATE(1691)] = 62561, - [SMALL_STATE(1692)] = 62578, - [SMALL_STATE(1693)] = 62595, - [SMALL_STATE(1694)] = 62608, - [SMALL_STATE(1695)] = 62625, - [SMALL_STATE(1696)] = 62640, - [SMALL_STATE(1697)] = 62655, - [SMALL_STATE(1698)] = 62672, - [SMALL_STATE(1699)] = 62689, - [SMALL_STATE(1700)] = 62706, - [SMALL_STATE(1701)] = 62723, - [SMALL_STATE(1702)] = 62738, - [SMALL_STATE(1703)] = 62755, - [SMALL_STATE(1704)] = 62772, - [SMALL_STATE(1705)] = 62787, - [SMALL_STATE(1706)] = 62800, - [SMALL_STATE(1707)] = 62817, - [SMALL_STATE(1708)] = 62834, - [SMALL_STATE(1709)] = 62849, - [SMALL_STATE(1710)] = 62866, - [SMALL_STATE(1711)] = 62883, - [SMALL_STATE(1712)] = 62898, - [SMALL_STATE(1713)] = 62915, - [SMALL_STATE(1714)] = 62932, - [SMALL_STATE(1715)] = 62949, - [SMALL_STATE(1716)] = 62966, - [SMALL_STATE(1717)] = 62979, - [SMALL_STATE(1718)] = 62994, - [SMALL_STATE(1719)] = 63007, - [SMALL_STATE(1720)] = 63022, - [SMALL_STATE(1721)] = 63035, - [SMALL_STATE(1722)] = 63052, - [SMALL_STATE(1723)] = 63069, - [SMALL_STATE(1724)] = 63086, - [SMALL_STATE(1725)] = 63103, - [SMALL_STATE(1726)] = 63118, - [SMALL_STATE(1727)] = 63135, - [SMALL_STATE(1728)] = 63152, - [SMALL_STATE(1729)] = 63169, - [SMALL_STATE(1730)] = 63186, - [SMALL_STATE(1731)] = 63203, - [SMALL_STATE(1732)] = 63220, - [SMALL_STATE(1733)] = 63237, - [SMALL_STATE(1734)] = 63254, - [SMALL_STATE(1735)] = 63271, - [SMALL_STATE(1736)] = 63288, - [SMALL_STATE(1737)] = 63305, - [SMALL_STATE(1738)] = 63322, - [SMALL_STATE(1739)] = 63339, - [SMALL_STATE(1740)] = 63356, - [SMALL_STATE(1741)] = 63373, - [SMALL_STATE(1742)] = 63386, - [SMALL_STATE(1743)] = 63401, - [SMALL_STATE(1744)] = 63418, - [SMALL_STATE(1745)] = 63435, - [SMALL_STATE(1746)] = 63448, - [SMALL_STATE(1747)] = 63462, - [SMALL_STATE(1748)] = 63476, - [SMALL_STATE(1749)] = 63486, - [SMALL_STATE(1750)] = 63498, - [SMALL_STATE(1751)] = 63510, - [SMALL_STATE(1752)] = 63522, - [SMALL_STATE(1753)] = 63536, - [SMALL_STATE(1754)] = 63546, - [SMALL_STATE(1755)] = 63558, - [SMALL_STATE(1756)] = 63572, - [SMALL_STATE(1757)] = 63584, - [SMALL_STATE(1758)] = 63598, - [SMALL_STATE(1759)] = 63612, - [SMALL_STATE(1760)] = 63622, - [SMALL_STATE(1761)] = 63632, - [SMALL_STATE(1762)] = 63646, - [SMALL_STATE(1763)] = 63660, - [SMALL_STATE(1764)] = 63670, - [SMALL_STATE(1765)] = 63682, - [SMALL_STATE(1766)] = 63696, - [SMALL_STATE(1767)] = 63710, - [SMALL_STATE(1768)] = 63722, - [SMALL_STATE(1769)] = 63736, - [SMALL_STATE(1770)] = 63746, - [SMALL_STATE(1771)] = 63760, - [SMALL_STATE(1772)] = 63774, - [SMALL_STATE(1773)] = 63784, - [SMALL_STATE(1774)] = 63794, - [SMALL_STATE(1775)] = 63808, - [SMALL_STATE(1776)] = 63822, - [SMALL_STATE(1777)] = 63834, - [SMALL_STATE(1778)] = 63848, - [SMALL_STATE(1779)] = 63862, - [SMALL_STATE(1780)] = 63876, - [SMALL_STATE(1781)] = 63886, - [SMALL_STATE(1782)] = 63900, - [SMALL_STATE(1783)] = 63914, - [SMALL_STATE(1784)] = 63928, - [SMALL_STATE(1785)] = 63940, - [SMALL_STATE(1786)] = 63954, - [SMALL_STATE(1787)] = 63964, - [SMALL_STATE(1788)] = 63978, - [SMALL_STATE(1789)] = 63992, - [SMALL_STATE(1790)] = 64004, - [SMALL_STATE(1791)] = 64018, - [SMALL_STATE(1792)] = 64032, - [SMALL_STATE(1793)] = 64046, - [SMALL_STATE(1794)] = 64060, - [SMALL_STATE(1795)] = 64074, - [SMALL_STATE(1796)] = 64088, - [SMALL_STATE(1797)] = 64102, - [SMALL_STATE(1798)] = 64116, - [SMALL_STATE(1799)] = 64130, - [SMALL_STATE(1800)] = 64144, - [SMALL_STATE(1801)] = 64156, - [SMALL_STATE(1802)] = 64170, - [SMALL_STATE(1803)] = 64182, - [SMALL_STATE(1804)] = 64196, - [SMALL_STATE(1805)] = 64210, - [SMALL_STATE(1806)] = 64224, - [SMALL_STATE(1807)] = 64236, - [SMALL_STATE(1808)] = 64250, - [SMALL_STATE(1809)] = 64264, - [SMALL_STATE(1810)] = 64274, - [SMALL_STATE(1811)] = 64288, - [SMALL_STATE(1812)] = 64302, - [SMALL_STATE(1813)] = 64316, - [SMALL_STATE(1814)] = 64326, - [SMALL_STATE(1815)] = 64340, - [SMALL_STATE(1816)] = 64354, - [SMALL_STATE(1817)] = 64368, - [SMALL_STATE(1818)] = 64378, - [SMALL_STATE(1819)] = 64392, - [SMALL_STATE(1820)] = 64402, - [SMALL_STATE(1821)] = 64414, - [SMALL_STATE(1822)] = 64428, - [SMALL_STATE(1823)] = 64440, - [SMALL_STATE(1824)] = 64454, - [SMALL_STATE(1825)] = 64468, - [SMALL_STATE(1826)] = 64482, - [SMALL_STATE(1827)] = 64492, - [SMALL_STATE(1828)] = 64506, - [SMALL_STATE(1829)] = 64520, - [SMALL_STATE(1830)] = 64534, - [SMALL_STATE(1831)] = 64544, - [SMALL_STATE(1832)] = 64556, - [SMALL_STATE(1833)] = 64568, - [SMALL_STATE(1834)] = 64582, - [SMALL_STATE(1835)] = 64596, - [SMALL_STATE(1836)] = 64610, - [SMALL_STATE(1837)] = 64624, - [SMALL_STATE(1838)] = 64634, - [SMALL_STATE(1839)] = 64644, - [SMALL_STATE(1840)] = 64658, - [SMALL_STATE(1841)] = 64672, - [SMALL_STATE(1842)] = 64686, - [SMALL_STATE(1843)] = 64700, - [SMALL_STATE(1844)] = 64714, - [SMALL_STATE(1845)] = 64728, - [SMALL_STATE(1846)] = 64738, - [SMALL_STATE(1847)] = 64752, - [SMALL_STATE(1848)] = 64766, - [SMALL_STATE(1849)] = 64780, - [SMALL_STATE(1850)] = 64794, - [SMALL_STATE(1851)] = 64808, - [SMALL_STATE(1852)] = 64822, - [SMALL_STATE(1853)] = 64836, - [SMALL_STATE(1854)] = 64850, - [SMALL_STATE(1855)] = 64860, - [SMALL_STATE(1856)] = 64870, - [SMALL_STATE(1857)] = 64884, - [SMALL_STATE(1858)] = 64898, - [SMALL_STATE(1859)] = 64908, - [SMALL_STATE(1860)] = 64922, - [SMALL_STATE(1861)] = 64934, - [SMALL_STATE(1862)] = 64948, - [SMALL_STATE(1863)] = 64958, - [SMALL_STATE(1864)] = 64972, - [SMALL_STATE(1865)] = 64986, - [SMALL_STATE(1866)] = 65000, - [SMALL_STATE(1867)] = 65010, - [SMALL_STATE(1868)] = 65022, - [SMALL_STATE(1869)] = 65036, - [SMALL_STATE(1870)] = 65048, - [SMALL_STATE(1871)] = 65062, - [SMALL_STATE(1872)] = 65072, - [SMALL_STATE(1873)] = 65082, - [SMALL_STATE(1874)] = 65096, - [SMALL_STATE(1875)] = 65108, - [SMALL_STATE(1876)] = 65122, - [SMALL_STATE(1877)] = 65136, - [SMALL_STATE(1878)] = 65148, - [SMALL_STATE(1879)] = 65162, - [SMALL_STATE(1880)] = 65176, - [SMALL_STATE(1881)] = 65190, - [SMALL_STATE(1882)] = 65204, - [SMALL_STATE(1883)] = 65218, - [SMALL_STATE(1884)] = 65232, - [SMALL_STATE(1885)] = 65242, - [SMALL_STATE(1886)] = 65256, - [SMALL_STATE(1887)] = 65268, - [SMALL_STATE(1888)] = 65282, - [SMALL_STATE(1889)] = 65296, - [SMALL_STATE(1890)] = 65310, - [SMALL_STATE(1891)] = 65324, - [SMALL_STATE(1892)] = 65338, - [SMALL_STATE(1893)] = 65352, - [SMALL_STATE(1894)] = 65366, - [SMALL_STATE(1895)] = 65380, - [SMALL_STATE(1896)] = 65394, - [SMALL_STATE(1897)] = 65408, - [SMALL_STATE(1898)] = 65422, - [SMALL_STATE(1899)] = 65436, - [SMALL_STATE(1900)] = 65450, - [SMALL_STATE(1901)] = 65464, - [SMALL_STATE(1902)] = 65478, - [SMALL_STATE(1903)] = 65492, - [SMALL_STATE(1904)] = 65504, - [SMALL_STATE(1905)] = 65518, - [SMALL_STATE(1906)] = 65532, - [SMALL_STATE(1907)] = 65546, - [SMALL_STATE(1908)] = 65560, - [SMALL_STATE(1909)] = 65574, - [SMALL_STATE(1910)] = 65584, - [SMALL_STATE(1911)] = 65596, - [SMALL_STATE(1912)] = 65610, - [SMALL_STATE(1913)] = 65624, - [SMALL_STATE(1914)] = 65638, - [SMALL_STATE(1915)] = 65652, - [SMALL_STATE(1916)] = 65664, - [SMALL_STATE(1917)] = 65674, - [SMALL_STATE(1918)] = 65688, - [SMALL_STATE(1919)] = 65702, - [SMALL_STATE(1920)] = 65716, - [SMALL_STATE(1921)] = 65730, - [SMALL_STATE(1922)] = 65744, - [SMALL_STATE(1923)] = 65758, - [SMALL_STATE(1924)] = 65772, - [SMALL_STATE(1925)] = 65782, - [SMALL_STATE(1926)] = 65796, - [SMALL_STATE(1927)] = 65810, - [SMALL_STATE(1928)] = 65824, - [SMALL_STATE(1929)] = 65838, - [SMALL_STATE(1930)] = 65852, - [SMALL_STATE(1931)] = 65866, - [SMALL_STATE(1932)] = 65880, - [SMALL_STATE(1933)] = 65894, - [SMALL_STATE(1934)] = 65904, - [SMALL_STATE(1935)] = 65918, - [SMALL_STATE(1936)] = 65932, - [SMALL_STATE(1937)] = 65946, - [SMALL_STATE(1938)] = 65960, - [SMALL_STATE(1939)] = 65972, - [SMALL_STATE(1940)] = 65986, - [SMALL_STATE(1941)] = 66000, - [SMALL_STATE(1942)] = 66014, - [SMALL_STATE(1943)] = 66028, - [SMALL_STATE(1944)] = 66042, - [SMALL_STATE(1945)] = 66056, - [SMALL_STATE(1946)] = 66068, - [SMALL_STATE(1947)] = 66082, - [SMALL_STATE(1948)] = 66092, - [SMALL_STATE(1949)] = 66106, - [SMALL_STATE(1950)] = 66120, - [SMALL_STATE(1951)] = 66134, - [SMALL_STATE(1952)] = 66148, - [SMALL_STATE(1953)] = 66162, - [SMALL_STATE(1954)] = 66176, - [SMALL_STATE(1955)] = 66190, - [SMALL_STATE(1956)] = 66204, - [SMALL_STATE(1957)] = 66218, - [SMALL_STATE(1958)] = 66232, - [SMALL_STATE(1959)] = 66246, - [SMALL_STATE(1960)] = 66258, - [SMALL_STATE(1961)] = 66272, - [SMALL_STATE(1962)] = 66286, - [SMALL_STATE(1963)] = 66300, - [SMALL_STATE(1964)] = 66314, - [SMALL_STATE(1965)] = 66328, - [SMALL_STATE(1966)] = 66342, - [SMALL_STATE(1967)] = 66356, - [SMALL_STATE(1968)] = 66370, - [SMALL_STATE(1969)] = 66380, - [SMALL_STATE(1970)] = 66390, - [SMALL_STATE(1971)] = 66404, - [SMALL_STATE(1972)] = 66418, - [SMALL_STATE(1973)] = 66428, - [SMALL_STATE(1974)] = 66442, - [SMALL_STATE(1975)] = 66456, - [SMALL_STATE(1976)] = 66470, - [SMALL_STATE(1977)] = 66484, - [SMALL_STATE(1978)] = 66494, - [SMALL_STATE(1979)] = 66508, - [SMALL_STATE(1980)] = 66522, - [SMALL_STATE(1981)] = 66536, - [SMALL_STATE(1982)] = 66548, - [SMALL_STATE(1983)] = 66562, - [SMALL_STATE(1984)] = 66576, - [SMALL_STATE(1985)] = 66590, - [SMALL_STATE(1986)] = 66604, - [SMALL_STATE(1987)] = 66616, - [SMALL_STATE(1988)] = 66628, - [SMALL_STATE(1989)] = 66639, - [SMALL_STATE(1990)] = 66648, - [SMALL_STATE(1991)] = 66659, - [SMALL_STATE(1992)] = 66670, - [SMALL_STATE(1993)] = 66681, - [SMALL_STATE(1994)] = 66692, - [SMALL_STATE(1995)] = 66701, - [SMALL_STATE(1996)] = 66712, - [SMALL_STATE(1997)] = 66723, - [SMALL_STATE(1998)] = 66734, - [SMALL_STATE(1999)] = 66743, - [SMALL_STATE(2000)] = 66754, - [SMALL_STATE(2001)] = 66765, - [SMALL_STATE(2002)] = 66776, - [SMALL_STATE(2003)] = 66787, - [SMALL_STATE(2004)] = 66798, - [SMALL_STATE(2005)] = 66809, - [SMALL_STATE(2006)] = 66820, - [SMALL_STATE(2007)] = 66829, - [SMALL_STATE(2008)] = 66840, - [SMALL_STATE(2009)] = 66849, - [SMALL_STATE(2010)] = 66860, - [SMALL_STATE(2011)] = 66871, - [SMALL_STATE(2012)] = 66880, - [SMALL_STATE(2013)] = 66891, - [SMALL_STATE(2014)] = 66902, - [SMALL_STATE(2015)] = 66913, - [SMALL_STATE(2016)] = 66924, - [SMALL_STATE(2017)] = 66935, - [SMALL_STATE(2018)] = 66946, - [SMALL_STATE(2019)] = 66957, - [SMALL_STATE(2020)] = 66968, - [SMALL_STATE(2021)] = 66979, - [SMALL_STATE(2022)] = 66988, - [SMALL_STATE(2023)] = 66999, - [SMALL_STATE(2024)] = 67010, - [SMALL_STATE(2025)] = 67021, - [SMALL_STATE(2026)] = 67030, - [SMALL_STATE(2027)] = 67041, - [SMALL_STATE(2028)] = 67052, - [SMALL_STATE(2029)] = 67063, - [SMALL_STATE(2030)] = 67074, - [SMALL_STATE(2031)] = 67085, - [SMALL_STATE(2032)] = 67096, - [SMALL_STATE(2033)] = 67105, - [SMALL_STATE(2034)] = 67116, - [SMALL_STATE(2035)] = 67127, - [SMALL_STATE(2036)] = 67136, - [SMALL_STATE(2037)] = 67147, - [SMALL_STATE(2038)] = 67158, - [SMALL_STATE(2039)] = 67169, - [SMALL_STATE(2040)] = 67180, - [SMALL_STATE(2041)] = 67191, - [SMALL_STATE(2042)] = 67200, - [SMALL_STATE(2043)] = 67211, - [SMALL_STATE(2044)] = 67222, - [SMALL_STATE(2045)] = 67233, - [SMALL_STATE(2046)] = 67244, - [SMALL_STATE(2047)] = 67255, - [SMALL_STATE(2048)] = 67266, - [SMALL_STATE(2049)] = 67275, - [SMALL_STATE(2050)] = 67286, - [SMALL_STATE(2051)] = 67297, - [SMALL_STATE(2052)] = 67308, - [SMALL_STATE(2053)] = 67319, - [SMALL_STATE(2054)] = 67330, - [SMALL_STATE(2055)] = 67341, - [SMALL_STATE(2056)] = 67350, - [SMALL_STATE(2057)] = 67361, - [SMALL_STATE(2058)] = 67372, - [SMALL_STATE(2059)] = 67381, - [SMALL_STATE(2060)] = 67392, - [SMALL_STATE(2061)] = 67403, - [SMALL_STATE(2062)] = 67414, - [SMALL_STATE(2063)] = 67425, - [SMALL_STATE(2064)] = 67436, - [SMALL_STATE(2065)] = 67447, - [SMALL_STATE(2066)] = 67458, - [SMALL_STATE(2067)] = 67469, - [SMALL_STATE(2068)] = 67478, - [SMALL_STATE(2069)] = 67489, - [SMALL_STATE(2070)] = 67500, - [SMALL_STATE(2071)] = 67511, - [SMALL_STATE(2072)] = 67522, - [SMALL_STATE(2073)] = 67533, - [SMALL_STATE(2074)] = 67544, - [SMALL_STATE(2075)] = 67555, - [SMALL_STATE(2076)] = 67566, - [SMALL_STATE(2077)] = 67577, - [SMALL_STATE(2078)] = 67588, - [SMALL_STATE(2079)] = 67599, - [SMALL_STATE(2080)] = 67608, - [SMALL_STATE(2081)] = 67619, - [SMALL_STATE(2082)] = 67630, - [SMALL_STATE(2083)] = 67641, - [SMALL_STATE(2084)] = 67652, - [SMALL_STATE(2085)] = 67663, - [SMALL_STATE(2086)] = 67674, - [SMALL_STATE(2087)] = 67685, - [SMALL_STATE(2088)] = 67696, - [SMALL_STATE(2089)] = 67707, - [SMALL_STATE(2090)] = 67718, - [SMALL_STATE(2091)] = 67729, - [SMALL_STATE(2092)] = 67740, - [SMALL_STATE(2093)] = 67751, - [SMALL_STATE(2094)] = 67760, - [SMALL_STATE(2095)] = 67771, - [SMALL_STATE(2096)] = 67782, - [SMALL_STATE(2097)] = 67793, - [SMALL_STATE(2098)] = 67804, - [SMALL_STATE(2099)] = 67815, - [SMALL_STATE(2100)] = 67826, - [SMALL_STATE(2101)] = 67835, - [SMALL_STATE(2102)] = 67846, - [SMALL_STATE(2103)] = 67857, - [SMALL_STATE(2104)] = 67868, - [SMALL_STATE(2105)] = 67879, - [SMALL_STATE(2106)] = 67890, - [SMALL_STATE(2107)] = 67901, - [SMALL_STATE(2108)] = 67912, - [SMALL_STATE(2109)] = 67921, - [SMALL_STATE(2110)] = 67932, - [SMALL_STATE(2111)] = 67943, - [SMALL_STATE(2112)] = 67954, - [SMALL_STATE(2113)] = 67965, - [SMALL_STATE(2114)] = 67976, - [SMALL_STATE(2115)] = 67987, - [SMALL_STATE(2116)] = 67998, - [SMALL_STATE(2117)] = 68009, - [SMALL_STATE(2118)] = 68020, - [SMALL_STATE(2119)] = 68031, - [SMALL_STATE(2120)] = 68042, - [SMALL_STATE(2121)] = 68053, - [SMALL_STATE(2122)] = 68064, - [SMALL_STATE(2123)] = 68075, - [SMALL_STATE(2124)] = 68086, - [SMALL_STATE(2125)] = 68097, - [SMALL_STATE(2126)] = 68106, - [SMALL_STATE(2127)] = 68117, - [SMALL_STATE(2128)] = 68128, - [SMALL_STATE(2129)] = 68139, - [SMALL_STATE(2130)] = 68150, - [SMALL_STATE(2131)] = 68161, - [SMALL_STATE(2132)] = 68172, - [SMALL_STATE(2133)] = 68183, - [SMALL_STATE(2134)] = 68194, - [SMALL_STATE(2135)] = 68205, - [SMALL_STATE(2136)] = 68216, - [SMALL_STATE(2137)] = 68227, - [SMALL_STATE(2138)] = 68238, - [SMALL_STATE(2139)] = 68249, - [SMALL_STATE(2140)] = 68260, - [SMALL_STATE(2141)] = 68271, - [SMALL_STATE(2142)] = 68282, - [SMALL_STATE(2143)] = 68293, - [SMALL_STATE(2144)] = 68304, - [SMALL_STATE(2145)] = 68315, - [SMALL_STATE(2146)] = 68326, - [SMALL_STATE(2147)] = 68337, - [SMALL_STATE(2148)] = 68348, - [SMALL_STATE(2149)] = 68359, - [SMALL_STATE(2150)] = 68368, - [SMALL_STATE(2151)] = 68379, - [SMALL_STATE(2152)] = 68390, - [SMALL_STATE(2153)] = 68401, - [SMALL_STATE(2154)] = 68412, - [SMALL_STATE(2155)] = 68423, - [SMALL_STATE(2156)] = 68434, - [SMALL_STATE(2157)] = 68445, - [SMALL_STATE(2158)] = 68456, - [SMALL_STATE(2159)] = 68467, - [SMALL_STATE(2160)] = 68478, - [SMALL_STATE(2161)] = 68487, - [SMALL_STATE(2162)] = 68498, - [SMALL_STATE(2163)] = 68509, - [SMALL_STATE(2164)] = 68520, - [SMALL_STATE(2165)] = 68531, - [SMALL_STATE(2166)] = 68542, - [SMALL_STATE(2167)] = 68553, - [SMALL_STATE(2168)] = 68564, - [SMALL_STATE(2169)] = 68575, - [SMALL_STATE(2170)] = 68586, - [SMALL_STATE(2171)] = 68597, - [SMALL_STATE(2172)] = 68608, - [SMALL_STATE(2173)] = 68617, - [SMALL_STATE(2174)] = 68626, - [SMALL_STATE(2175)] = 68637, - [SMALL_STATE(2176)] = 68648, - [SMALL_STATE(2177)] = 68659, - [SMALL_STATE(2178)] = 68668, - [SMALL_STATE(2179)] = 68679, - [SMALL_STATE(2180)] = 68688, - [SMALL_STATE(2181)] = 68699, - [SMALL_STATE(2182)] = 68710, - [SMALL_STATE(2183)] = 68721, - [SMALL_STATE(2184)] = 68732, - [SMALL_STATE(2185)] = 68741, - [SMALL_STATE(2186)] = 68750, - [SMALL_STATE(2187)] = 68758, - [SMALL_STATE(2188)] = 68766, - [SMALL_STATE(2189)] = 68774, - [SMALL_STATE(2190)] = 68782, - [SMALL_STATE(2191)] = 68790, - [SMALL_STATE(2192)] = 68798, - [SMALL_STATE(2193)] = 68806, - [SMALL_STATE(2194)] = 68814, - [SMALL_STATE(2195)] = 68822, - [SMALL_STATE(2196)] = 68830, - [SMALL_STATE(2197)] = 68838, - [SMALL_STATE(2198)] = 68846, - [SMALL_STATE(2199)] = 68854, - [SMALL_STATE(2200)] = 68862, - [SMALL_STATE(2201)] = 68870, - [SMALL_STATE(2202)] = 68878, - [SMALL_STATE(2203)] = 68886, - [SMALL_STATE(2204)] = 68894, - [SMALL_STATE(2205)] = 68902, - [SMALL_STATE(2206)] = 68910, - [SMALL_STATE(2207)] = 68918, - [SMALL_STATE(2208)] = 68926, - [SMALL_STATE(2209)] = 68934, - [SMALL_STATE(2210)] = 68942, - [SMALL_STATE(2211)] = 68950, - [SMALL_STATE(2212)] = 68958, - [SMALL_STATE(2213)] = 68966, - [SMALL_STATE(2214)] = 68974, - [SMALL_STATE(2215)] = 68982, - [SMALL_STATE(2216)] = 68990, - [SMALL_STATE(2217)] = 68998, - [SMALL_STATE(2218)] = 69006, - [SMALL_STATE(2219)] = 69014, - [SMALL_STATE(2220)] = 69022, - [SMALL_STATE(2221)] = 69030, - [SMALL_STATE(2222)] = 69038, - [SMALL_STATE(2223)] = 69046, - [SMALL_STATE(2224)] = 69054, - [SMALL_STATE(2225)] = 69062, - [SMALL_STATE(2226)] = 69070, - [SMALL_STATE(2227)] = 69078, - [SMALL_STATE(2228)] = 69086, - [SMALL_STATE(2229)] = 69094, - [SMALL_STATE(2230)] = 69102, - [SMALL_STATE(2231)] = 69110, - [SMALL_STATE(2232)] = 69118, - [SMALL_STATE(2233)] = 69126, - [SMALL_STATE(2234)] = 69134, - [SMALL_STATE(2235)] = 69142, - [SMALL_STATE(2236)] = 69150, - [SMALL_STATE(2237)] = 69158, - [SMALL_STATE(2238)] = 69166, - [SMALL_STATE(2239)] = 69174, - [SMALL_STATE(2240)] = 69182, - [SMALL_STATE(2241)] = 69190, - [SMALL_STATE(2242)] = 69198, - [SMALL_STATE(2243)] = 69206, - [SMALL_STATE(2244)] = 69214, - [SMALL_STATE(2245)] = 69222, - [SMALL_STATE(2246)] = 69230, - [SMALL_STATE(2247)] = 69238, - [SMALL_STATE(2248)] = 69246, - [SMALL_STATE(2249)] = 69254, - [SMALL_STATE(2250)] = 69262, - [SMALL_STATE(2251)] = 69270, - [SMALL_STATE(2252)] = 69278, - [SMALL_STATE(2253)] = 69286, - [SMALL_STATE(2254)] = 69294, - [SMALL_STATE(2255)] = 69302, - [SMALL_STATE(2256)] = 69310, - [SMALL_STATE(2257)] = 69318, - [SMALL_STATE(2258)] = 69326, - [SMALL_STATE(2259)] = 69334, - [SMALL_STATE(2260)] = 69342, - [SMALL_STATE(2261)] = 69350, - [SMALL_STATE(2262)] = 69358, - [SMALL_STATE(2263)] = 69366, - [SMALL_STATE(2264)] = 69374, - [SMALL_STATE(2265)] = 69382, - [SMALL_STATE(2266)] = 69390, - [SMALL_STATE(2267)] = 69398, - [SMALL_STATE(2268)] = 69406, - [SMALL_STATE(2269)] = 69414, - [SMALL_STATE(2270)] = 69422, - [SMALL_STATE(2271)] = 69430, - [SMALL_STATE(2272)] = 69438, - [SMALL_STATE(2273)] = 69446, - [SMALL_STATE(2274)] = 69454, - [SMALL_STATE(2275)] = 69462, - [SMALL_STATE(2276)] = 69470, - [SMALL_STATE(2277)] = 69478, - [SMALL_STATE(2278)] = 69486, - [SMALL_STATE(2279)] = 69494, - [SMALL_STATE(2280)] = 69502, - [SMALL_STATE(2281)] = 69510, - [SMALL_STATE(2282)] = 69518, - [SMALL_STATE(2283)] = 69526, - [SMALL_STATE(2284)] = 69534, - [SMALL_STATE(2285)] = 69542, - [SMALL_STATE(2286)] = 69550, - [SMALL_STATE(2287)] = 69558, - [SMALL_STATE(2288)] = 69566, - [SMALL_STATE(2289)] = 69574, - [SMALL_STATE(2290)] = 69582, - [SMALL_STATE(2291)] = 69590, - [SMALL_STATE(2292)] = 69598, - [SMALL_STATE(2293)] = 69606, - [SMALL_STATE(2294)] = 69614, - [SMALL_STATE(2295)] = 69622, - [SMALL_STATE(2296)] = 69630, - [SMALL_STATE(2297)] = 69638, - [SMALL_STATE(2298)] = 69646, - [SMALL_STATE(2299)] = 69654, - [SMALL_STATE(2300)] = 69662, - [SMALL_STATE(2301)] = 69670, - [SMALL_STATE(2302)] = 69678, - [SMALL_STATE(2303)] = 69686, - [SMALL_STATE(2304)] = 69694, - [SMALL_STATE(2305)] = 69702, - [SMALL_STATE(2306)] = 69710, - [SMALL_STATE(2307)] = 69718, - [SMALL_STATE(2308)] = 69726, - [SMALL_STATE(2309)] = 69734, - [SMALL_STATE(2310)] = 69742, - [SMALL_STATE(2311)] = 69750, - [SMALL_STATE(2312)] = 69758, - [SMALL_STATE(2313)] = 69766, - [SMALL_STATE(2314)] = 69774, - [SMALL_STATE(2315)] = 69782, - [SMALL_STATE(2316)] = 69790, - [SMALL_STATE(2317)] = 69798, - [SMALL_STATE(2318)] = 69806, - [SMALL_STATE(2319)] = 69814, - [SMALL_STATE(2320)] = 69822, - [SMALL_STATE(2321)] = 69830, - [SMALL_STATE(2322)] = 69838, - [SMALL_STATE(2323)] = 69846, - [SMALL_STATE(2324)] = 69854, - [SMALL_STATE(2325)] = 69862, - [SMALL_STATE(2326)] = 69870, - [SMALL_STATE(2327)] = 69878, - [SMALL_STATE(2328)] = 69886, - [SMALL_STATE(2329)] = 69894, - [SMALL_STATE(2330)] = 69902, - [SMALL_STATE(2331)] = 69910, - [SMALL_STATE(2332)] = 69918, - [SMALL_STATE(2333)] = 69926, - [SMALL_STATE(2334)] = 69934, - [SMALL_STATE(2335)] = 69942, - [SMALL_STATE(2336)] = 69950, - [SMALL_STATE(2337)] = 69958, - [SMALL_STATE(2338)] = 69966, - [SMALL_STATE(2339)] = 69974, - [SMALL_STATE(2340)] = 69982, - [SMALL_STATE(2341)] = 69990, - [SMALL_STATE(2342)] = 69998, - [SMALL_STATE(2343)] = 70006, - [SMALL_STATE(2344)] = 70014, - [SMALL_STATE(2345)] = 70022, - [SMALL_STATE(2346)] = 70030, - [SMALL_STATE(2347)] = 70038, - [SMALL_STATE(2348)] = 70046, - [SMALL_STATE(2349)] = 70054, - [SMALL_STATE(2350)] = 70062, - [SMALL_STATE(2351)] = 70070, - [SMALL_STATE(2352)] = 70078, - [SMALL_STATE(2353)] = 70086, - [SMALL_STATE(2354)] = 70094, - [SMALL_STATE(2355)] = 70102, - [SMALL_STATE(2356)] = 70110, - [SMALL_STATE(2357)] = 70118, - [SMALL_STATE(2358)] = 70126, - [SMALL_STATE(2359)] = 70134, - [SMALL_STATE(2360)] = 70142, - [SMALL_STATE(2361)] = 70150, - [SMALL_STATE(2362)] = 70158, - [SMALL_STATE(2363)] = 70166, - [SMALL_STATE(2364)] = 70174, - [SMALL_STATE(2365)] = 70182, - [SMALL_STATE(2366)] = 70190, - [SMALL_STATE(2367)] = 70198, - [SMALL_STATE(2368)] = 70206, - [SMALL_STATE(2369)] = 70214, - [SMALL_STATE(2370)] = 70222, - [SMALL_STATE(2371)] = 70230, - [SMALL_STATE(2372)] = 70238, - [SMALL_STATE(2373)] = 70246, - [SMALL_STATE(2374)] = 70254, - [SMALL_STATE(2375)] = 70262, - [SMALL_STATE(2376)] = 70270, - [SMALL_STATE(2377)] = 70278, - [SMALL_STATE(2378)] = 70286, - [SMALL_STATE(2379)] = 70294, - [SMALL_STATE(2380)] = 70302, - [SMALL_STATE(2381)] = 70310, - [SMALL_STATE(2382)] = 70318, - [SMALL_STATE(2383)] = 70326, - [SMALL_STATE(2384)] = 70334, - [SMALL_STATE(2385)] = 70342, - [SMALL_STATE(2386)] = 70350, - [SMALL_STATE(2387)] = 70358, - [SMALL_STATE(2388)] = 70366, - [SMALL_STATE(2389)] = 70374, - [SMALL_STATE(2390)] = 70382, - [SMALL_STATE(2391)] = 70390, - [SMALL_STATE(2392)] = 70398, - [SMALL_STATE(2393)] = 70406, - [SMALL_STATE(2394)] = 70414, - [SMALL_STATE(2395)] = 70422, - [SMALL_STATE(2396)] = 70430, - [SMALL_STATE(2397)] = 70438, - [SMALL_STATE(2398)] = 70446, - [SMALL_STATE(2399)] = 70454, - [SMALL_STATE(2400)] = 70462, - [SMALL_STATE(2401)] = 70470, - [SMALL_STATE(2402)] = 70478, - [SMALL_STATE(2403)] = 70486, - [SMALL_STATE(2404)] = 70494, - [SMALL_STATE(2405)] = 70502, - [SMALL_STATE(2406)] = 70510, - [SMALL_STATE(2407)] = 70518, - [SMALL_STATE(2408)] = 70526, - [SMALL_STATE(2409)] = 70534, - [SMALL_STATE(2410)] = 70542, - [SMALL_STATE(2411)] = 70550, - [SMALL_STATE(2412)] = 70558, - [SMALL_STATE(2413)] = 70566, - [SMALL_STATE(2414)] = 70574, - [SMALL_STATE(2415)] = 70582, - [SMALL_STATE(2416)] = 70590, - [SMALL_STATE(2417)] = 70598, + [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, }; static TSParseActionEntry ts_parse_actions[] = { @@ -120284,2490 +121755,2552 @@ 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(1070), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [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(9), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [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(1424), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1070), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(376), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2417), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(33), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(27), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(148), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(959), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2415), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1438), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1424), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(724), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(733), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2410), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2008), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(578), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(76), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(577), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(575), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2010), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(168), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2397), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1262), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1791), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2341), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2340), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2339), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1096), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1407), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1226), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(80), - [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2075), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1362), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(572), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2325), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(82), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(518), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2076), - [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1052), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1742), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1002), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1010), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2319), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1278), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1010), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [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), + [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), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [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), [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [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), + [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(2239), - [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 136), - [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 136), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 16), - [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 16), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 180), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 180), - [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 87), - [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 87), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 160), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 160), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 126), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 126), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 95), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 95), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 221), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 221), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(708), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(33), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(13), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(27), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(148), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(959), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2415), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1811), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2124), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(724), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(955), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(546), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(87), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2165), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(123), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2182), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(90), - [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(572), - [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2325), - [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(82), - [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(518), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2076), - [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1052), - [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1742), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1002), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1010), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2319), - [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1010), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 1), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 1), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 29), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 29), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 32), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 32), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 25), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 25), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 56), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 56), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 204), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 204), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(216), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(291), - [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(292), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(293), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2191), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(520), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1682), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(517), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(501), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2026), - [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(922), - [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2353), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2378), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1482), - [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1491), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2227), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2058), - [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(554), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(567), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2229), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1262), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1768), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2230), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2231), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2232), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2393), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1456), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1229), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2057), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1381), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(572), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2252), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2237), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1274), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2237), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 147), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 147), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 107), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 107), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 100), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 100), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 154), - [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 154), - [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 110), - [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 110), - [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 109), - [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 109), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 90), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 90), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 48), - [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 48), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), - [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 111), - [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 111), - [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 90), - [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 90), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 13), - [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 13), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 112), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 112), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 113), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 113), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 13), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 13), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 79), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 79), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 89), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 89), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 155), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 155), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 63), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 63), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(274), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(484), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(483), - [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(463), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2335), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(520), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1682), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(517), - [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(274), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 121), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 121), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 122), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 122), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 114), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 114), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 156), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 156), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 157), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 157), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 116), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 116), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 72), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 72), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 114), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 114), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 116), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 116), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 114), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 114), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 116), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 116), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 158), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 158), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 125), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 125), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 72), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 72), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 64), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 64), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 107), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 107), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 72), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 72), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 72), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 72), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 159), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 159), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 106), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 106), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 67), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 67), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 161), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 161), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 163), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 163), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 164), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 164), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 121), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 121), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 47), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 47), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 165), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 165), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 84), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 84), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 50), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 50), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 49), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 49), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 130), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 130), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 153), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 153), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 149), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 149), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 131), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 131), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 158), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 158), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 72), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 72), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 116), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 116), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 158), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 158), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 166), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 166), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 158), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 158), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 132), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 132), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 22), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 22), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 229), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 229), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 167), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 167), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 225), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 225), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 228), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 228), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 93), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 93), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 227), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 227), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 219), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 219), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 24), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 24), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 49), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 49), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 92), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 92), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 26), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 26), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 226), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 226), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 225), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 225), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 224), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 224), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 213), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 213), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 138), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 138), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 170), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 170), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 140), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 140), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 13), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 13), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 222), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 222), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 79), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 79), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 141), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 141), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 13), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 13), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 219), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 219), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 218), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 218), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 201), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 201), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 217), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 217), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 13), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 13), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 13), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 13), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 216), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 216), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 209), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 209), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 215), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 215), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 194), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 194), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 214), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 214), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 213), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 213), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 145), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 145), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 212), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 212), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 211), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 211), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 209), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 209), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 208), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 208), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 206), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 206), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 176), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 176), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 28), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 28), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 68), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 68), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 48), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 48), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 203), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 203), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 90), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 90), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 170), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 170), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 202), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 202), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 201), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 201), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 200), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 200), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 199), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 199), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 198), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 198), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 197), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 197), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 48), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 48), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 196), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 196), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 116), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 116), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 47), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 47), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 195), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 195), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 194), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 194), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 193), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 193), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 146), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 146), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 47), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 47), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 69), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 69), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 163), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 163), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 89), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 89), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 48), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 48), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 171), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 171), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 192), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 192), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 190), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 190), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 189), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 189), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 188), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 188), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 70), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 70), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 152), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 152), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 83), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 83), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 48), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 48), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 47), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 47), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 149), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 149), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 48), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 48), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 173), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 173), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 173), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 173), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 185), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 185), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 90), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 90), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 184), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 184), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 182), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 182), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 181), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 181), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 71), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 71), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 178), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 178), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 131), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 131), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 177), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 177), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 37), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 37), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 85), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 85), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1333), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(528), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(530), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1299), - [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2162), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2289), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(565), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(572), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2257), - [2037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1370), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(558), - [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(556), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1372), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2179), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1309), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1725), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1284), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1831), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1831), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 172), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 172), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2289), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 18), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 18), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 18), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 18), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 34), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 39), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 62), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 62), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 35), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 36), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 35), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 23), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 23), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 21), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 21), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 66), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 66), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 43), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 43), + [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), + [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), + [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), + [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_function_type, 2, .production_id = 17), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 17), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 45), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 103), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 103), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 96), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 96), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 99), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 99), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 58), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 58), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 142), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 142), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 58), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 58), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 101), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 101), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 139), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 139), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 57), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 57), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 119), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 119), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 183), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 183), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 137), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 137), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 143), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 143), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 40), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 40), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 20), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 20), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 40), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 40), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 30), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 30), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 31), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 88), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 88), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 127), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 127), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 86), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 86), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 59), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 59), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 59), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 59), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2358), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 59), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 59), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 107), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 107), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 107), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 147), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 147), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 147), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 128), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 175), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 107), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 174), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 205), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 120), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 147), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 162), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 148), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 108), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 108), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 55), - [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 55), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), - [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 51), - [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 51), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), - [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 52), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 52), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), - [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 52), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 52), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), - [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 52), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 52), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 52), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 52), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 52), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 52), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), - [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 52), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 52), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(316), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(314), - [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(313), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(532), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1488), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1454), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 129), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 46), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 99), - [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 20), - [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 59), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 58), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 223), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 210), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 99), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 186), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 58), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1302), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(185), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 20), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 81), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1676), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(550), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1097), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 118), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 106), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 82), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 135), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1532), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 74), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 134), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 133), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 75), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 76), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(186), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 77), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 26), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1455), - [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1452), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 78), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(525), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 42), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 150), - [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 150), SHIFT_REPEAT(521), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(41), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2180), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 89), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 73), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 54), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 61), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 60), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 30), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 99), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 117), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 20), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 94), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1230), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 27), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 151), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 207), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1466), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(668), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 97), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(98), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1461), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 98), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1221), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(223), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 187), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 60), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 58), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 61), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 179), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 80), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5009] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [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), + [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), + [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), }; #ifdef __cplusplus